pom.xml 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220
  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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.tzy</groupId>
  6. <artifactId>tzy</artifactId>
  7. <version>4.5.0</version>
  8. <name>poyee-app</name>
  9. <description>app</description>
  10. <properties>
  11. <tzy.version>4.5.0</tzy.version>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  14. <java.version>1.8</java.version>
  15. <maven-jar-plugin.version>3.1.1</maven-jar-plugin.version>
  16. <druid.version>1.2.19</druid.version>
  17. <bitwalker.version>1.19</bitwalker.version>
  18. <kaptcha.version>2.3.2</kaptcha.version>
  19. <swagger.version>2.9.2</swagger.version>
  20. <pagehelper.boot.version>1.3.0</pagehelper.boot.version>
  21. <fastjson.version>2.0.10</fastjson.version>
  22. <oshi.version>5.2.5</oshi.version>
  23. <jna.version>5.5.0</jna.version>
  24. <commons.io.version>2.5</commons.io.version>
  25. <commons.fileupload.version>1.3.3</commons.fileupload.version>
  26. <poi.version>3.17</poi.version>
  27. <velocity.version>1.7</velocity.version>
  28. <skipTests>true</skipTests>
  29. </properties>
  30. <!-- 依赖声明 -->
  31. <dependencyManagement>
  32. <dependencies>
  33. <!-- SpringBoot的依赖配置-->
  34. <dependency>
  35. <groupId>org.springframework.boot</groupId>
  36. <artifactId>spring-boot-dependencies</artifactId>
  37. <version>2.2.5.RELEASE</version>
  38. <type>pom</type>
  39. <scope>import</scope>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.springframework.boot</groupId>
  43. <artifactId>spring-boot-starter-test</artifactId>
  44. <version>2.1.17.RELEASE</version>
  45. <scope>test</scope>
  46. </dependency>
  47. <!--阿里数据库连接池 -->
  48. <dependency>
  49. <groupId>com.alibaba</groupId>
  50. <artifactId>druid-spring-boot-starter</artifactId>
  51. <version>${druid.version}</version>
  52. </dependency>
  53. <!--验证码 -->
  54. <dependency>
  55. <groupId>com.github.penggle</groupId>
  56. <artifactId>kaptcha</artifactId>
  57. <version>${kaptcha.version}</version>
  58. </dependency>
  59. <!-- 解析客户端操作系统、浏览器等 -->
  60. <dependency>
  61. <groupId>eu.bitwalker</groupId>
  62. <artifactId>UserAgentUtils</artifactId>
  63. <version>${bitwalker.version}</version>
  64. </dependency>
  65. <!-- pagehelper 分页插件 -->
  66. <dependency>
  67. <groupId>com.github.pagehelper</groupId>
  68. <artifactId>pagehelper-spring-boot-starter</artifactId>
  69. <version>${pagehelper.boot.version}</version>
  70. </dependency>
  71. <!-- 获取系统信息 -->
  72. <dependency>
  73. <groupId>com.github.oshi</groupId>
  74. <artifactId>oshi-core</artifactId>
  75. <version>${oshi.version}</version>
  76. </dependency>
  77. <!-- swagger2-->
  78. <dependency>
  79. <groupId>io.springfox</groupId>
  80. <artifactId>springfox-swagger2</artifactId>
  81. <version>${swagger.version}</version>
  82. <exclusions>
  83. <exclusion>
  84. <groupId>io.swagger</groupId>
  85. <artifactId>swagger-annotations</artifactId>
  86. </exclusion>
  87. <exclusion>
  88. <groupId>io.swagger</groupId>
  89. <artifactId>swagger-models</artifactId>
  90. </exclusion>
  91. </exclusions>
  92. </dependency>
  93. <!-- swagger2-UI-->
  94. <dependency>
  95. <groupId>io.springfox</groupId>
  96. <artifactId>springfox-swagger-ui</artifactId>
  97. <version>${swagger.version}</version>
  98. </dependency>
  99. <!--io常用工具类 -->
  100. <dependency>
  101. <groupId>commons-io</groupId>
  102. <artifactId>commons-io</artifactId>
  103. <version>${commons.io.version}</version>
  104. </dependency>
  105. <!--文件上传工具类 -->
  106. <dependency>
  107. <groupId>commons-fileupload</groupId>
  108. <artifactId>commons-fileupload</artifactId>
  109. <version>${commons.fileupload.version}</version>
  110. </dependency>
  111. <!-- excel工具 -->
  112. <dependency>
  113. <groupId>org.apache.poi</groupId>
  114. <artifactId>poi-ooxml</artifactId>
  115. <version>${poi.version}</version>
  116. </dependency>
  117. <!-- 阿里JSON解析器 -->
  118. <dependency>
  119. <groupId>com.alibaba</groupId>
  120. <artifactId>fastjson</artifactId>
  121. <version>${fastjson.version}</version>
  122. </dependency>
  123. <!-- 核心模块-->
  124. <dependency>
  125. <groupId>com.tzy</groupId>
  126. <artifactId>tzy-framework</artifactId>
  127. <version>${tzy.version}</version>
  128. </dependency>
  129. <!-- 系统模块-->
  130. <dependency>
  131. <groupId>com.tzy</groupId>
  132. <artifactId>tzy-system</artifactId>
  133. <version>${tzy.version}</version>
  134. </dependency>
  135. <!-- 通用工具-->
  136. <dependency>
  137. <groupId>com.tzy</groupId>
  138. <artifactId>tzy-common</artifactId>
  139. <version>${tzy.version}</version>
  140. </dependency>
  141. <dependency>
  142. <groupId>com.tzy</groupId>
  143. <artifactId>tzy-sportcard</artifactId>
  144. <version>${tzy.version}</version>
  145. </dependency>
  146. <dependency>
  147. <groupId>com.tzy</groupId>
  148. <artifactId>weixin-api</artifactId>
  149. <version>${tzy.version}</version>
  150. </dependency>
  151. </dependencies>
  152. </dependencyManagement>
  153. <modules>
  154. <module>poyi-pojo</module>
  155. <module>tzy-common</module>
  156. <module>poyi-app-common</module>
  157. <module>tzy-system</module>
  158. <module>tzy-framework</module>
  159. <module>weixin-api</module>
  160. <module>tzy-sportcard</module>
  161. <module>poyi-service</module>
  162. <module>poyi-app</module>
  163. </modules>
  164. <packaging>pom</packaging>
  165. <dependencies>
  166. </dependencies>
  167. <build>
  168. <plugins>
  169. <plugin>
  170. <groupId>org.apache.maven.plugins</groupId>
  171. <artifactId>maven-compiler-plugin</artifactId>
  172. <version>3.1</version>
  173. <configuration>
  174. <source>${java.version}</source>
  175. <target>${java.version}</target>
  176. <encoding>${project.build.sourceEncoding}</encoding>
  177. </configuration>
  178. </plugin>
  179. </plugins>
  180. </build>
  181. <repositories>
  182. <repository>
  183. <id>public</id>
  184. <name>aliyun nexus</name>
  185. <url>https://maven.aliyun.com/repository/public</url>
  186. <releases>
  187. <enabled>true</enabled>
  188. </releases>
  189. </repository>
  190. <repository>
  191. <id>zto-maven</id>
  192. <url>https://dl.bintray.com/chocotan/maven</url>
  193. </repository>
  194. </repositories>
  195. <pluginRepositories>
  196. <pluginRepository>
  197. <id>public</id>
  198. <name>aliyun nexus</name>
  199. <url>https://maven.aliyun.com/repository/public</url>
  200. <releases>
  201. <enabled>true</enabled>
  202. </releases>
  203. <snapshots>
  204. <enabled>false</enabled>
  205. </snapshots>
  206. </pluginRepository>
  207. </pluginRepositories>
  208. </project>