pom.xml 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  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.hssx.parent</groupId>
  7. <artifactId>formulahousekeeper</artifactId>
  8. <packaging>pom</packaging>
  9. <version>1.0.0-SNAPSHOT</version>
  10. <parent>
  11. <groupId>org.springframework.boot</groupId>
  12. <artifactId>spring-boot-starter-parent</artifactId>
  13. <version>2.1.11.RELEASE</version>
  14. <relativePath/>
  15. </parent>
  16. <modules>
  17. <module>management-platform</module>
  18. </modules>
  19. <properties>
  20. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  21. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  22. <java.version>1.8</java.version>
  23. <poi.version>3.17</poi.version>
  24. <freemarker.version>2.3.23</freemarker.version>
  25. <commons.fileupload.version>1.3.3</commons.fileupload.version>
  26. <mysql.version>8.0.18</mysql.version>
  27. <pageHelper.starter.version>1.2.12</pageHelper.starter.version>
  28. <mybatis.plus.boot.starter.version>3.1.2</mybatis.plus.boot.starter.version>
  29. <mybatis.plus.generator.version>3.1.2</mybatis.plus.generator.version>
  30. <velocity.engine.core.version>2.0</velocity.engine.core.version>
  31. <fastjson.version>1.2.7</fastjson.version>
  32. <commons.lang3.version>3.8.1</commons.lang3.version>
  33. <poi.ooxml.version>3.17</poi.ooxml.version>
  34. <commons.net.version>3.6</commons.net.version>
  35. <lombok.version>1.18.8</lombok.version>
  36. <fastjson.version>1.2.7</fastjson.version>
  37. <baidu.api.sdk.version>4.2.0</baidu.api.sdk.version>
  38. </properties>
  39. <!--统一管理依赖-->
  40. <dependencyManagement>
  41. <dependencies>
  42. <!-- mysql驱动 -->
  43. <dependency>
  44. <groupId>mysql</groupId>
  45. <artifactId>mysql-connector-java</artifactId>
  46. <version>${mysql.version}</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.springframework.boot</groupId>
  50. <artifactId>spring-boot-devtools</artifactId>
  51. <scope>runtime</scope>
  52. <optional>true</optional>
  53. </dependency>
  54. <!-- pagehelper整合mybatis-plus-->
  55. <!--Pagehelper 依赖 5.1.10 版本,需要去掉 mybatis 依赖,否则会和 mybatis plus 冲突-->
  56. <dependency>
  57. <groupId>com.github.pagehelper</groupId>
  58. <artifactId>pagehelper-spring-boot-starter</artifactId>
  59. <version>${pageHelper.starter.version}</version>
  60. <exclusions>
  61. <exclusion>
  62. <groupId>org.mybatis</groupId>
  63. <artifactId>mybatis</artifactId>
  64. </exclusion>
  65. <exclusion>
  66. <groupId>org.mybatis</groupId>
  67. <artifactId>mybatis-spring</artifactId>
  68. </exclusion>
  69. </exclusions>
  70. </dependency>
  71. <!-- mybatis-plus依赖 -->
  72. <dependency>
  73. <groupId>com.baomidou</groupId>
  74. <artifactId>mybatis-plus-boot-starter</artifactId>
  75. <version>${mybatis.plus.boot.starter.version}</version>
  76. </dependency>
  77. <!-- mybatis-plus代码生成器依赖 -->
  78. <dependency>
  79. <groupId>com.baomidou</groupId>
  80. <artifactId>mybatis-plus-generator</artifactId>
  81. <version>${mybatis.plus.generator.version}</version>
  82. </dependency>
  83. <!-- velocity模板引擎 -->
  84. <dependency>
  85. <groupId>org.apache.velocity</groupId>
  86. <artifactId>velocity-engine-core</artifactId>
  87. <version>${velocity.engine.core.version}</version>
  88. </dependency>
  89. <!-- freemarker 模板引擎-->
  90. <dependency>
  91. <groupId>org.freemarker</groupId>
  92. <artifactId>freemarker</artifactId>
  93. <version>${freemarker.version}</version>
  94. </dependency>
  95. <!-- 文件上传 -->
  96. <dependency>
  97. <groupId>commons-fileupload</groupId>
  98. <artifactId>commons-fileupload</artifactId>
  99. <version>${commons.fileupload.version}</version>
  100. </dependency>
  101. <!-- fastjson -->
  102. <dependency>
  103. <groupId>com.alibaba</groupId>
  104. <artifactId>fastjson</artifactId>
  105. <version>${fastjson.version}</version>
  106. </dependency>
  107. <!-- https://mvnrepository.com/artifact/commons-net/commons-net -->
  108. <dependency>
  109. <groupId>commons-net</groupId>
  110. <artifactId>commons-net</artifactId>
  111. <version>${commons.net.version}</version>
  112. </dependency>
  113. <!--读取excel文件-->
  114. <dependency>
  115. <groupId>org.apache.poi</groupId>
  116. <artifactId>poi</artifactId>
  117. <version>${poi.version}</version>
  118. </dependency>
  119. <dependency>
  120. <groupId>org.apache.poi</groupId>
  121. <artifactId>poi-ooxml</artifactId>
  122. <version>${poi.ooxml.version}</version>
  123. </dependency>
  124. <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
  125. <dependency>
  126. <groupId>org.apache.commons</groupId>
  127. <artifactId>commons-lang3</artifactId>
  128. <version>${commons.lang3.version}</version>
  129. </dependency>
  130. <dependency>
  131. <groupId>org.projectlombok</groupId>
  132. <artifactId>lombok</artifactId>
  133. <version>${lombok.version}</version>
  134. </dependency>
  135. <!-- fastjson -->
  136. <dependency>
  137. <groupId>com.alibaba</groupId>
  138. <artifactId>fastjson</artifactId>
  139. <version>${fastjson.version}</version>
  140. </dependency>
  141. <dependency>
  142. <groupId>com.baidu.aip</groupId>
  143. <artifactId>java-sdk</artifactId>
  144. <version>${baidu.api.sdk.version}</version>
  145. </dependency>
  146. </dependencies>
  147. </dependencyManagement>
  148. <build>
  149. <plugins>
  150. <plugin>
  151. <groupId>org.springframework.boot</groupId>
  152. <artifactId>spring-boot-maven-plugin</artifactId>
  153. </plugin>
  154. </plugins>
  155. </build>
  156. </project>