pom.xml 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  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. <tess4j-version>4.4.1</tess4j-version>
  39. <kotlin.version>1.6.21</kotlin.version>
  40. </properties>
  41. <repositories>
  42. <repository>
  43. <id>alimaven</id>
  44. <name>aliyun maven</name>
  45. <url>http://maven.aliyun.com/nexus/content/groups/public</url>
  46. </repository>
  47. <repository>
  48. <id>alimaven2</id>
  49. <name>aliyun maven 2</name>
  50. <url>http://maven.aliyun.com/nexus/content/repositories/central</url>
  51. </repository>
  52. </repositories>
  53. <!--统一管理依赖-->
  54. <dependencyManagement>
  55. <dependencies>
  56. <!-- mysql驱动 -->
  57. <dependency>
  58. <groupId>mysql</groupId>
  59. <artifactId>mysql-connector-java</artifactId>
  60. <version>${mysql.version}</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.springframework.boot</groupId>
  64. <artifactId>spring-boot-devtools</artifactId>
  65. <scope>runtime</scope>
  66. <optional>true</optional>
  67. </dependency>
  68. <!-- pagehelper整合mybatis-plus-->
  69. <!--Pagehelper 依赖 5.1.10 版本,需要去掉 mybatis 依赖,否则会和 mybatis plus 冲突-->
  70. <dependency>
  71. <groupId>com.github.pagehelper</groupId>
  72. <artifactId>pagehelper-spring-boot-starter</artifactId>
  73. <version>${pageHelper.starter.version}</version>
  74. <exclusions>
  75. <exclusion>
  76. <groupId>org.mybatis</groupId>
  77. <artifactId>mybatis</artifactId>
  78. </exclusion>
  79. <exclusion>
  80. <groupId>org.mybatis</groupId>
  81. <artifactId>mybatis-spring</artifactId>
  82. </exclusion>
  83. </exclusions>
  84. </dependency>
  85. <!-- mybatis-plus依赖 -->
  86. <dependency>
  87. <groupId>com.baomidou</groupId>
  88. <artifactId>mybatis-plus-boot-starter</artifactId>
  89. <version>${mybatis.plus.boot.starter.version}</version>
  90. </dependency>
  91. <!-- mybatis-plus代码生成器依赖 -->
  92. <dependency>
  93. <groupId>com.baomidou</groupId>
  94. <artifactId>mybatis-plus-generator</artifactId>
  95. <version>${mybatis.plus.generator.version}</version>
  96. </dependency>
  97. <!-- velocity模板引擎 -->
  98. <dependency>
  99. <groupId>org.apache.velocity</groupId>
  100. <artifactId>velocity-engine-core</artifactId>
  101. <version>${velocity.engine.core.version}</version>
  102. </dependency>
  103. <!-- freemarker 模板引擎-->
  104. <dependency>
  105. <groupId>org.freemarker</groupId>
  106. <artifactId>freemarker</artifactId>
  107. <version>${freemarker.version}</version>
  108. </dependency>
  109. <!-- 文件上传 -->
  110. <dependency>
  111. <groupId>commons-fileupload</groupId>
  112. <artifactId>commons-fileupload</artifactId>
  113. <version>${commons.fileupload.version}</version>
  114. </dependency>
  115. <!-- fastjson -->
  116. <dependency>
  117. <groupId>com.alibaba</groupId>
  118. <artifactId>fastjson</artifactId>
  119. <version>${fastjson.version}</version>
  120. </dependency>
  121. <!-- https://mvnrepository.com/artifact/commons-net/commons-net -->
  122. <dependency>
  123. <groupId>commons-net</groupId>
  124. <artifactId>commons-net</artifactId>
  125. <version>${commons.net.version}</version>
  126. </dependency>
  127. <!--读取excel文件-->
  128. <dependency>
  129. <groupId>org.apache.poi</groupId>
  130. <artifactId>poi</artifactId>
  131. <version>${poi.version}</version>
  132. </dependency>
  133. <dependency>
  134. <groupId>org.apache.poi</groupId>
  135. <artifactId>poi-ooxml</artifactId>
  136. <version>${poi.ooxml.version}</version>
  137. </dependency>
  138. <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
  139. <dependency>
  140. <groupId>org.apache.commons</groupId>
  141. <artifactId>commons-lang3</artifactId>
  142. <version>${commons.lang3.version}</version>
  143. </dependency>
  144. <dependency>
  145. <groupId>org.projectlombok</groupId>
  146. <artifactId>lombok</artifactId>
  147. <version>${lombok.version}</version>
  148. </dependency>
  149. <!-- fastjson -->
  150. <dependency>
  151. <groupId>com.alibaba</groupId>
  152. <artifactId>fastjson</artifactId>
  153. <version>${fastjson.version}</version>
  154. </dependency>
  155. <dependency>
  156. <groupId>com.baidu.aip</groupId>
  157. <artifactId>java-sdk</artifactId>
  158. <version>${baidu.api.sdk.version}</version>
  159. <exclusions>
  160. <exclusion>
  161. <groupId>org.slf4j</groupId>
  162. <artifactId>slf4j-simple</artifactId>
  163. </exclusion>
  164. </exclusions>
  165. </dependency>
  166. <dependency>
  167. <groupId>net.sourceforge.tess4j</groupId>
  168. <artifactId>tess4j</artifactId>
  169. <version>${tess4j-version}</version>
  170. </dependency>
  171. </dependencies>
  172. </dependencyManagement>
  173. <build>
  174. <plugins>
  175. <plugin>
  176. <groupId>org.springframework.boot</groupId>
  177. <artifactId>spring-boot-maven-plugin</artifactId>
  178. </plugin>
  179. </plugins>
  180. </build>
  181. </project>