pom.xml 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.cdxw</groupId>
  7. <artifactId>dingdingeng-manage-parent</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <properties>
  10. <maven.compiler.source>8</maven.compiler.source>
  11. <maven.compiler.target>8</maven.compiler.target>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. </properties>
  14. <dependencies>
  15. <!-- MySQL驱动 -->
  16. <dependency>
  17. <groupId>mysql</groupId>
  18. <artifactId>mysql-connector-java</artifactId>
  19. <version>8.0.26</version>
  20. </dependency>
  21. <!-- junit测试 -->
  22. <dependency>
  23. <groupId>junit</groupId>
  24. <artifactId>junit</artifactId>
  25. <version>4.12</version>
  26. <scope>test</scope>
  27. </dependency>
  28. <!-- log4j日志 -->
  29. <dependency>
  30. <groupId>log4j</groupId>
  31. <artifactId>log4j</artifactId>
  32. <version>1.2.17</version>
  33. </dependency>
  34. <!-- 日志 -->
  35. <dependency>
  36. <groupId>ch.qos.logback</groupId>
  37. <artifactId>logback-classic</artifactId>
  38. <version>1.2.3</version>
  39. </dependency>
  40. <!--分页插件-->
  41. <dependency>
  42. <groupId>com.github.pagehelper</groupId>
  43. <artifactId>pagehelper</artifactId>
  44. <version>5.2.0</version>
  45. </dependency>
  46. <!-- 处理json对象的jackson依赖 -->
  47. <dependency>
  48. <groupId>com.fasterxml.jackson.core</groupId>
  49. <artifactId>jackson-databind</artifactId>
  50. <version>2.14.1</version>
  51. </dependency>
  52. <!-- Mybatis-Plus -->
  53. <dependency>
  54. <groupId>com.baomidou</groupId>
  55. <artifactId>mybatis-plus-boot-starter</artifactId>
  56. <version>3.4.1</version>
  57. </dependency>
  58. <!-- 实现文件上传的依赖 -->
  59. <dependency>
  60. <groupId>commons-fileupload</groupId>
  61. <artifactId>commons-fileupload</artifactId>
  62. <version>1.4</version>
  63. </dependency>
  64. <!--lombok插件,可以简化实体类的编写,但是先要安装插件,settings→Plugins,搜索lombok,然后安装即可。-->
  65. <dependency>
  66. <groupId>org.projectlombok</groupId>
  67. <artifactId>lombok</artifactId>
  68. <version>1.18.16</version>
  69. </dependency>
  70. <!-- Spring Boot的起步依赖,配置了此依赖,即使不进行任何配置,也可以使用SpringMVC进行Web开发 -->
  71. <dependency>
  72. <groupId>org.springframework.boot</groupId>
  73. <artifactId>spring-boot-starter-web</artifactId>
  74. <version>2.3.6.RELEASE</version>
  75. </dependency>
  76. <!-- SpringBoot测试类 -->
  77. <dependency>
  78. <groupId>org.springframework.boot</groupId>
  79. <artifactId>spring-boot-starter-test</artifactId>
  80. <version>2.3.6.RELEASE</version>
  81. <scope>test</scope>
  82. </dependency>
  83. <!-- SpringBoot启动类 -->
  84. <dependency>
  85. <groupId>org.springframework.boot</groupId>
  86. <artifactId>spring-boot-starter</artifactId>
  87. <version>2.3.6.RELEASE</version>
  88. </dependency>
  89. <!--代码生成器依赖-->
  90. <dependency>
  91. <groupId>com.baomidou</groupId>
  92. <artifactId>mybatis-plus-generator</artifactId>
  93. <version>3.4.1</version>
  94. </dependency>
  95. <!--模板引擎依赖-->
  96. <dependency>
  97. <groupId>org.apache.velocity</groupId>
  98. <artifactId>velocity-engine-core</artifactId>
  99. <version>2.0</version>
  100. </dependency>
  101. <dependency>
  102. <groupId>com.github.xiaoymin</groupId>
  103. <artifactId>knife4j-spring-boot-starter</artifactId>
  104. <version>2.0.8</version>
  105. </dependency>
  106. </dependencies>
  107. </project>