pom.xml 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.dayou</groupId>
  6. <artifactId>productivity-platform</artifactId>
  7. <packaging>pom</packaging>
  8. <version>1.0-PRODUCTIVITY-PLATFORM</version>
  9. <modules>
  10. <module>biz-base</module>
  11. <module>common</module>
  12. <module>dao</module>
  13. <module>domain</module>
  14. <module>service</module>
  15. <module>gen</module>
  16. </modules>
  17. <properties>
  18. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  19. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  20. <java.version>1.8</java.version>
  21. <spring-boot.version>2.3.1.RELEASE</spring-boot.version>
  22. <druid.version>1.2.23</druid.version>
  23. <mysql-connector.version>8.0.16</mysql-connector.version>
  24. <mybatis-plus.version>3.3.2</mybatis-plus.version>
  25. <lombok.version>1.18.34</lombok.version>
  26. <hutool.version>5.8.32</hutool.version>
  27. <fastjson2.version>2.0.53</fastjson2.version>
  28. <pagehelper.version>2.1.0</pagehelper.version>
  29. <commons-fileupload.version>1.5</commons-fileupload.version>
  30. <sa-token.version>1.39.0</sa-token.version>
  31. <easyexcel.vsersion>4.0.3</easyexcel.vsersion>
  32. <poi.vsersion>5.2.3</poi.vsersion>
  33. <poi-ooxml.version>5.2.3</poi-ooxml.version>
  34. <commons-io.version>2.15.0</commons-io.version>
  35. <aspose-words.version>20.12</aspose-words.version>
  36. <jsoup.version>1.11.3</jsoup.version>
  37. <freemarker.version>2.3.29</freemarker.version>
  38. <aspose-cells.version>21.11</aspose-cells.version>
  39. <commons-lang3.version>3.7</commons-lang3.version>
  40. </properties>
  41. <dependencyManagement>
  42. <dependencies>
  43. <dependency>
  44. <groupId>org.springframework.boot</groupId>
  45. <artifactId>spring-boot-dependencies</artifactId>
  46. <version>${spring-boot.version}</version>
  47. <type>pom</type>
  48. <scope>import</scope>
  49. </dependency>
  50. <!-- https://mvnrepository.com/artifact/com.alibaba/druid-spring-boot-starter -->
  51. <dependency>
  52. <groupId>com.alibaba</groupId>
  53. <artifactId>druid-spring-boot-starter</artifactId>
  54. <version>${druid.version}</version>
  55. </dependency>
  56. <!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java -->
  57. <dependency>
  58. <groupId>mysql</groupId>
  59. <artifactId>mysql-connector-java</artifactId>
  60. <version>${mysql-connector.version}</version>
  61. </dependency>
  62. <!-- https://mvnrepository.com/artifact/com.baomidou/mybatis-plus-boot-starter -->
  63. <dependency>
  64. <groupId>com.baomidou</groupId>
  65. <artifactId>mybatis-plus-boot-starter</artifactId>
  66. <version>${mybatis-plus.version}</version>
  67. </dependency>
  68. <!-- https://mvnrepository.com/artifact/cn.hutool/hutool-all -->
  69. <dependency>
  70. <groupId>cn.hutool</groupId>
  71. <artifactId>hutool-all</artifactId>
  72. <version>${hutool.version}</version>
  73. </dependency>
  74. <!-- https://mvnrepository.com/artifact/org.projectlombok/lombok -->
  75. <dependency>
  76. <groupId>org.projectlombok</groupId>
  77. <artifactId>lombok</artifactId>
  78. <version>${lombok.version}</version>
  79. <scope>provided</scope>
  80. </dependency>
  81. <!-- https://mvnrepository.com/artifact/com.alibaba.fastjson2/fastjson2 -->
  82. <dependency>
  83. <groupId>com.alibaba.fastjson2</groupId>
  84. <artifactId>fastjson2</artifactId>
  85. <version>${fastjson2.version}</version>
  86. </dependency>
  87. <!-- https://mvnrepository.com/artifact/com.github.pagehelper/pagehelper-spring-boot-starter -->
  88. <dependency>
  89. <groupId>com.github.pagehelper</groupId>
  90. <artifactId>pagehelper-spring-boot-starter</artifactId>
  91. <version>${pagehelper.version}</version>
  92. </dependency>
  93. <!-- https://mvnrepository.com/artifact/commons-fileupload/commons-fileupload -->
  94. <dependency>
  95. <groupId>commons-fileupload</groupId>
  96. <artifactId>commons-fileupload</artifactId>
  97. <version>${commons-fileupload.version}</version>
  98. </dependency>
  99. <!-- Sa-Token 权限认证,在线文档:https://sa-token.cc -->
  100. <dependency>
  101. <groupId>cn.dev33</groupId>
  102. <artifactId>sa-token-spring-boot-starter</artifactId>
  103. <version>${sa-token.version}</version>
  104. </dependency>
  105. <dependency>
  106. <groupId>com.alibaba</groupId>
  107. <artifactId>easyexcel</artifactId>
  108. <version>${easyexcel.vsersion}</version>
  109. </dependency>
  110. <dependency>
  111. <groupId>org.apache.poi</groupId>
  112. <artifactId>poi</artifactId>
  113. <version>${poi.vsersion}</version>
  114. </dependency>
  115. <dependency>
  116. <groupId>org.apache.poi</groupId>
  117. <artifactId>poi-ooxml</artifactId>
  118. <version>${poi-ooxml.version}</version>
  119. </dependency>
  120. <dependency>
  121. <groupId>commons-io</groupId>
  122. <artifactId>commons-io</artifactId>
  123. <version>${commons-io.version}</version>
  124. </dependency>
  125. <!-- 文档处理,在线文档:https://reference.aspose.com/tutorials/words/zh/java/ -->
  126. <dependency>
  127. <groupId>com.aspose</groupId>
  128. <artifactId>aspose-words</artifactId>
  129. <version>${aspose-words.version}</version>
  130. </dependency>
  131. <dependency>
  132. <groupId>com.aspose</groupId>
  133. <artifactId>aspose-cells</artifactId>
  134. <version>${aspose-cells.version}</version>
  135. </dependency>
  136. <dependency>
  137. <!-- jsoup HTML parser library @ https://jsoup.org/ -->
  138. <groupId>org.jsoup</groupId>
  139. <artifactId>jsoup</artifactId>
  140. <version>${jsoup.version}</version>
  141. </dependency>
  142. <dependency>
  143. <groupId>org.freemarker</groupId>
  144. <artifactId>freemarker</artifactId>
  145. <version>${freemarker.version}</version>
  146. </dependency>
  147. <dependency>
  148. <groupId>org.apache.commons</groupId>
  149. <artifactId>commons-lang3</artifactId>
  150. <version>${commons-lang3.version}</version>
  151. </dependency>
  152. </dependencies>
  153. </dependencyManagement>
  154. <build>
  155. <plugins>
  156. <plugin>
  157. <groupId>org.apache.maven.plugins</groupId>
  158. <artifactId>maven-compiler-plugin</artifactId>
  159. <version>3.8.1</version>
  160. <configuration>
  161. <source>${java.version}</source>
  162. <target>${java.version}</target>
  163. <encoding>UTF-8</encoding>
  164. </configuration>
  165. </plugin>
  166. <plugin>
  167. <groupId>org.springframework.boot</groupId>
  168. <artifactId>spring-boot-maven-plugin</artifactId>
  169. <version>${spring-boot.version}</version>
  170. <configuration>
  171. <mainClass>com.dayou.BaseApplication</mainClass>
  172. </configuration>
  173. <executions>
  174. <execution>
  175. <id>repackage</id>
  176. <goals>
  177. <goal>repackage</goal>
  178. </goals>
  179. </execution>
  180. </executions>
  181. </plugin>
  182. </plugins>
  183. </build>
  184. </project>