pom.xml 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395
  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管理系统</name>
  9. <description>平台管理系统</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. <shiro.version>1.6.0</shiro.version>
  17. <thymeleaf.extras.shiro.version>2.0.0</thymeleaf.extras.shiro.version>
  18. <druid.version>1.2.1</druid.version>
  19. <bitwalker.version>1.19</bitwalker.version>
  20. <kaptcha.version>2.3.2</kaptcha.version>
  21. <swagger.version>2.9.2</swagger.version>
  22. <pagehelper.boot.version>1.3.0</pagehelper.boot.version>
  23. <fastjson.version>1.2.74</fastjson.version>
  24. <oshi.version>5.2.5</oshi.version>
  25. <jna.version>5.5.0</jna.version>
  26. <commons.io.version>2.5</commons.io.version>
  27. <commons.fileupload.version>1.3.3</commons.fileupload.version>
  28. <poi.version>3.17</poi.version>
  29. <velocity.version>1.7</velocity.version>
  30. <skipTests>true</skipTests>
  31. </properties>
  32. <!-- 依赖声明 -->
  33. <dependencyManagement>
  34. <dependencies>
  35. <!-- SpringBoot的依赖配置-->
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-dependencies</artifactId>
  39. <version>2.1.17.RELEASE</version>
  40. <type>pom</type>
  41. <scope>import</scope>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.springframework.boot</groupId>
  45. <artifactId>spring-boot-starter-test</artifactId>
  46. <version>2.5.1</version>
  47. <scope>test</scope>
  48. </dependency>
  49. <!--阿里数据库连接池 -->
  50. <dependency>
  51. <groupId>com.alibaba</groupId>
  52. <artifactId>druid-spring-boot-starter</artifactId>
  53. <version>${druid.version}</version>
  54. </dependency>
  55. <!--验证码 -->
  56. <dependency>
  57. <groupId>com.github.penggle</groupId>
  58. <artifactId>kaptcha</artifactId>
  59. <version>${kaptcha.version}</version>
  60. </dependency>
  61. <!--Shiro核心框架 -->
  62. <dependency>
  63. <groupId>org.apache.shiro</groupId>
  64. <artifactId>shiro-core</artifactId>
  65. <version>${shiro.version}</version>
  66. </dependency>
  67. <!-- Shiro使用Spring框架 -->
  68. <dependency>
  69. <groupId>org.apache.shiro</groupId>
  70. <artifactId>shiro-spring</artifactId>
  71. <version>${shiro.version}</version>
  72. </dependency>
  73. <!-- Shiro使用EhCache缓存框架 -->
  74. <dependency>
  75. <groupId>org.apache.shiro</groupId>
  76. <artifactId>shiro-ehcache</artifactId>
  77. <version>${shiro.version}</version>
  78. </dependency>
  79. <!-- thymeleaf模板引擎和shiro框架的整合 -->
  80. <dependency>
  81. <groupId>com.github.theborakompanioni</groupId>
  82. <artifactId>thymeleaf-extras-shiro</artifactId>
  83. <version>${thymeleaf.extras.shiro.version}</version>
  84. </dependency>
  85. <!-- 解析客户端操作系统、浏览器等 -->
  86. <dependency>
  87. <groupId>eu.bitwalker</groupId>
  88. <artifactId>UserAgentUtils</artifactId>
  89. <version>${bitwalker.version}</version>
  90. </dependency>
  91. <!-- pagehelper 分页插件 -->
  92. <dependency>
  93. <groupId>com.github.pagehelper</groupId>
  94. <artifactId>pagehelper-spring-boot-starter</artifactId>
  95. <version>${pagehelper.boot.version}</version>
  96. </dependency>
  97. <!-- 获取系统信息 -->
  98. <dependency>
  99. <groupId>com.github.oshi</groupId>
  100. <artifactId>oshi-core</artifactId>
  101. <version>${oshi.version}</version>
  102. </dependency>
  103. <dependency>
  104. <groupId>net.java.dev.jna</groupId>
  105. <artifactId>jna</artifactId>
  106. <version>${jna.version}</version>
  107. </dependency>
  108. <dependency>
  109. <groupId>net.java.dev.jna</groupId>
  110. <artifactId>jna-platform</artifactId>
  111. <version>${jna.version}</version>
  112. </dependency>
  113. <!-- swagger2-->
  114. <dependency>
  115. <groupId>io.springfox</groupId>
  116. <artifactId>springfox-swagger2</artifactId>
  117. <version>${swagger.version}</version>
  118. <exclusions>
  119. <exclusion>
  120. <groupId>io.swagger</groupId>
  121. <artifactId>swagger-annotations</artifactId>
  122. </exclusion>
  123. <exclusion>
  124. <groupId>io.swagger</groupId>
  125. <artifactId>swagger-models</artifactId>
  126. </exclusion>
  127. </exclusions>
  128. </dependency>
  129. <!-- swagger2-UI-->
  130. <dependency>
  131. <groupId>io.springfox</groupId>
  132. <artifactId>springfox-swagger-ui</artifactId>
  133. <version>${swagger.version}</version>
  134. </dependency>
  135. <!--io常用工具类 -->
  136. <dependency>
  137. <groupId>commons-io</groupId>
  138. <artifactId>commons-io</artifactId>
  139. <version>${commons.io.version}</version>
  140. </dependency>
  141. <!--文件上传工具类 -->
  142. <dependency>
  143. <groupId>commons-fileupload</groupId>
  144. <artifactId>commons-fileupload</artifactId>
  145. <version>${commons.fileupload.version}</version>
  146. </dependency>
  147. <!-- excel工具 -->
  148. <dependency>
  149. <groupId>org.apache.poi</groupId>
  150. <artifactId>poi-ooxml</artifactId>
  151. <version>${poi.version}</version>
  152. </dependency>
  153. <!--velocity代码生成使用模板 -->
  154. <dependency>
  155. <groupId>org.apache.velocity</groupId>
  156. <artifactId>velocity</artifactId>
  157. <version>${velocity.version}</version>
  158. </dependency>
  159. <!-- 阿里JSON解析器 -->
  160. <dependency>
  161. <groupId>com.alibaba</groupId>
  162. <artifactId>fastjson</artifactId>
  163. <version>${fastjson.version}</version>
  164. </dependency>
  165. <!-- 定时任务-->
  166. <dependency>
  167. <groupId>com.tzy</groupId>
  168. <artifactId>tzy-quartz</artifactId>
  169. <version>${tzy.version}</version>
  170. </dependency>
  171. <!-- 代码生成-->
  172. <dependency>
  173. <groupId>com.tzy</groupId>
  174. <artifactId>tzy-generator</artifactId>
  175. <version>${tzy.version}</version>
  176. </dependency>
  177. <!-- knife4j 接口管理 -->
  178. <dependency>
  179. <groupId>com.github.xiaoymin</groupId>
  180. <artifactId>knife4j-spring-boot-starter</artifactId>
  181. <version>2.0.9</version>
  182. </dependency>
  183. <!-- 核心模块-->
  184. <dependency>
  185. <groupId>com.tzy</groupId>
  186. <artifactId>tzy-framework</artifactId>
  187. <version>${tzy.version}</version>
  188. </dependency>
  189. <!-- 系统模块-->
  190. <dependency>
  191. <groupId>com.tzy</groupId>
  192. <artifactId>tzy-system</artifactId>
  193. <version>${tzy.version}</version>
  194. </dependency>
  195. <!-- 通用工具-->
  196. <dependency>
  197. <groupId>com.tzy</groupId>
  198. <artifactId>tzy-common</artifactId>
  199. <version>${tzy.version}</version>
  200. </dependency>
  201. <!-- 基础模块-->
  202. <dependency>
  203. <groupId>com.tzy</groupId>
  204. <artifactId>tzy-base</artifactId>
  205. <version>${tzy.version}</version>
  206. </dependency>
  207. <dependency>
  208. <groupId>com.tzy</groupId>
  209. <artifactId>tzy-order</artifactId>
  210. <version>${tzy.version}</version>
  211. </dependency>
  212. <!-- 明星卡模块 -->
  213. <dependency>
  214. <groupId>com.tzy</groupId>
  215. <artifactId>tzy-sportcard</artifactId>
  216. <version>${tzy.version}</version>
  217. </dependency>
  218. <!-- 商品模块 -->
  219. <dependency>
  220. <groupId>com.tzy</groupId>
  221. <artifactId>poyee-goods</artifactId>
  222. <version>${tzy.version}</version>
  223. </dependency>
  224. <!-- 优惠券模块 -->
  225. <dependency>
  226. <groupId>com.tzy</groupId>
  227. <artifactId>poyee-coupon</artifactId>
  228. <version>${tzy.version}</version>
  229. </dependency>
  230. <!--直播模块-->
  231. <dependency>
  232. <groupId>com.tzy</groupId>
  233. <artifactId>poyee-living</artifactId>
  234. <version>${tzy.version}</version>
  235. </dependency>
  236. <!--商家管理模块-->
  237. <dependency>
  238. <groupId>com.tzy</groupId>
  239. <artifactId>poyee-merchant</artifactId>
  240. <version>${tzy.version}</version>
  241. </dependency>
  242. <dependency>
  243. <groupId>com.tzy</groupId>
  244. <artifactId>poyee-activity</artifactId>
  245. <version>${tzy.version}</version>
  246. </dependency>
  247. <!--支付管理模块-->
  248. <dependency>
  249. <groupId>com.tzy</groupId>
  250. <artifactId>poyee-pay</artifactId>
  251. <version>${tzy.version}</version>
  252. </dependency>
  253. <!--dashboard-->
  254. <dependency>
  255. <groupId>com.tzy</groupId>
  256. <artifactId>poyee-dashboard</artifactId>
  257. <version>${tzy.version}</version>
  258. </dependency>
  259. <!--finance-->
  260. <dependency>
  261. <groupId>com.tzy</groupId>
  262. <artifactId>poyee-finance</artifactId>
  263. <version>${tzy.version}</version>
  264. </dependency>
  265. <!--app-->
  266. <dependency>
  267. <groupId>com.tzy</groupId>
  268. <artifactId>poyee-app</artifactId>
  269. <version>${tzy.version}</version>
  270. </dependency>
  271. <!--ierp-->
  272. <dependency>
  273. <groupId>com.tzy</groupId>
  274. <artifactId>poyee-ierp</artifactId>
  275. <version>${tzy.version}</version>
  276. </dependency>
  277. <!--application-->
  278. <dependency>
  279. <groupId>com.tzy</groupId>
  280. <artifactId>poyee-application</artifactId>
  281. <version>${tzy.version}</version>
  282. </dependency>
  283. <!--weixin api-->
  284. <dependency>
  285. <groupId>com.tzy</groupId>
  286. <artifactId>weixin-api</artifactId>
  287. <version>${tzy.version}</version>
  288. </dependency>
  289. </dependencies>
  290. </dependencyManagement>
  291. <modules>
  292. <module>tzy-admin</module>
  293. <module>tzy-framework</module>
  294. <module>tzy-system</module>
  295. <module>tzy-quartz</module>
  296. <module>tzy-generator</module>
  297. <module>tzy-common</module>
  298. <module>tzy-base</module>
  299. <module>tzy-order</module>
  300. <module>tzy-sportcard</module>
  301. <module>weixin-api</module>
  302. <module>poyee-goods</module>
  303. <module>poyee-coupon</module>
  304. <module>poyee-living</module>
  305. <module>poyee-merchant</module>
  306. <module>poyee-activity</module>
  307. <module>poyee-pay</module>
  308. <module>poyee-dashboard</module>
  309. <module>poyee-finance</module>
  310. <module>poyee-app</module>
  311. <module>poyee-ierp</module>
  312. <module>poyee-application</module>
  313. </modules>
  314. <packaging>pom</packaging>
  315. <build>
  316. <plugins>
  317. <plugin>
  318. <groupId>org.apache.maven.plugins</groupId>
  319. <artifactId>maven-compiler-plugin</artifactId>
  320. <version>3.1</version>
  321. <configuration>
  322. <source>${java.version}</source>
  323. <target>${java.version}</target>
  324. <encoding>${project.build.sourceEncoding}</encoding>
  325. </configuration>
  326. </plugin>
  327. </plugins>
  328. </build>
  329. <repositories>
  330. <repository>
  331. <id>public</id>
  332. <name>aliyun nexus</name>
  333. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  334. <releases>
  335. <enabled>true</enabled>
  336. </releases>
  337. </repository>
  338. <repository>
  339. <id>zto-maven</id>
  340. <url>https://dl.bintray.com/chocotan/maven</url>
  341. </repository>
  342. </repositories>
  343. <pluginRepositories>
  344. <pluginRepository>
  345. <id>public</id>
  346. <name>aliyun nexus</name>
  347. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  348. <releases>
  349. <enabled>true</enabled>
  350. </releases>
  351. <snapshots>
  352. <enabled>false</enabled>
  353. </snapshots>
  354. </pluginRepository>
  355. </pluginRepositories>
  356. </project>