pom.xml 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259
  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.jjt</groupId>
  7. <artifactId>jjt</artifactId>
  8. <version>3.8.7</version>
  9. <name>jjt</name>
  10. <description>聚聚通管理系统</description>
  11. <properties>
  12. <jjt.version>3.8.7</jjt.version>
  13. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  14. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  15. <java.version>1.8</java.version>
  16. <maven-jar-plugin.version>3.1.1</maven-jar-plugin.version>
  17. <spring-framework.version>5.3.33</spring-framework.version>
  18. <druid.version>1.2.20</druid.version>
  19. <bitwalker.version>1.21</bitwalker.version>
  20. <swagger.version>3.0.0</swagger.version>
  21. <kaptcha.version>2.3.3</kaptcha.version>
  22. <pagehelper.boot.version>1.4.7</pagehelper.boot.version>
  23. <fastjson.version>2.0.43</fastjson.version>
  24. <oshi.version>6.5.0</oshi.version>
  25. <commons.io.version>2.13.0</commons.io.version>
  26. <poi.version>4.1.2</poi.version>
  27. <velocity.version>2.3</velocity.version>
  28. <jwt.version>0.9.1</jwt.version>
  29. </properties>
  30. <!-- 依赖声明 -->
  31. <dependencyManagement>
  32. <dependencies>
  33. <!-- 化为云 -->
  34. <dependency>
  35. <groupId>com.huaweicloud</groupId>
  36. <artifactId>spring-cloud-huawei-dependencies</artifactId>
  37. <version>1.9.4-Hoxton</version>
  38. <type>pom</type>
  39. <scope>import</scope>
  40. </dependency>
  41. <!-- spring cloud -->
  42. <dependency>
  43. <groupId>org.springframework.cloud</groupId>
  44. <artifactId>spring-cloud-dependencies</artifactId>
  45. <version>2020.0.3</version>
  46. <type>pom</type>
  47. <scope>import</scope>
  48. </dependency>
  49. <!-- alibaba cloud -->
  50. <dependency>
  51. <groupId>com.alibaba.cloud</groupId>
  52. <artifactId>spring-cloud-alibaba-dependencies</artifactId>
  53. <version>2020.0.RC1</version>
  54. <type>pom</type>
  55. <scope>import</scope>
  56. </dependency>
  57. <!-- SpringFramework的依赖配置 -->
  58. <dependency>
  59. <groupId>org.springframework</groupId>
  60. <artifactId>spring-framework-bom</artifactId>
  61. <version>${spring-framework.version}</version>
  62. <type>pom</type>
  63. <scope>import</scope>
  64. </dependency>
  65. <!-- SpringBoot的依赖配置 -->
  66. <dependency>
  67. <groupId>org.springframework.boot</groupId>
  68. <artifactId>spring-boot-dependencies</artifactId>
  69. <version>2.5.15</version>
  70. <type>pom</type>
  71. <scope>import</scope>
  72. </dependency>
  73. <!-- 阿里数据库连接池 -->
  74. <dependency>
  75. <groupId>com.alibaba</groupId>
  76. <artifactId>druid-spring-boot-starter</artifactId>
  77. <version>${druid.version}</version>
  78. </dependency>
  79. <!-- 解析客户端操作系统、浏览器等 -->
  80. <dependency>
  81. <groupId>eu.bitwalker</groupId>
  82. <artifactId>UserAgentUtils</artifactId>
  83. <version>${bitwalker.version}</version>
  84. </dependency>
  85. <!-- pagehelper 分页插件 -->
  86. <dependency>
  87. <groupId>com.github.pagehelper</groupId>
  88. <artifactId>pagehelper-spring-boot-starter</artifactId>
  89. <version>${pagehelper.boot.version}</version>
  90. </dependency>
  91. <!-- 获取系统信息 -->
  92. <dependency>
  93. <groupId>com.github.oshi</groupId>
  94. <artifactId>oshi-core</artifactId>
  95. <version>${oshi.version}</version>
  96. </dependency>
  97. <!-- Swagger3依赖 -->
  98. <dependency>
  99. <groupId>io.springfox</groupId>
  100. <artifactId>springfox-boot-starter</artifactId>
  101. <version>${swagger.version}</version>
  102. <exclusions>
  103. <exclusion>
  104. <groupId>io.swagger</groupId>
  105. <artifactId>swagger-models</artifactId>
  106. </exclusion>
  107. </exclusions>
  108. </dependency>
  109. <!-- io常用工具类 -->
  110. <dependency>
  111. <groupId>commons-io</groupId>
  112. <artifactId>commons-io</artifactId>
  113. <version>${commons.io.version}</version>
  114. </dependency>
  115. <!-- excel工具 -->
  116. <dependency>
  117. <groupId>org.apache.poi</groupId>
  118. <artifactId>poi-ooxml</artifactId>
  119. <version>${poi.version}</version>
  120. </dependency>
  121. <!-- velocity代码生成使用模板 -->
  122. <dependency>
  123. <groupId>org.apache.velocity</groupId>
  124. <artifactId>velocity-engine-core</artifactId>
  125. <version>${velocity.version}</version>
  126. </dependency>
  127. <!-- 阿里JSON解析器 -->
  128. <dependency>
  129. <groupId>com.alibaba.fastjson2</groupId>
  130. <artifactId>fastjson2</artifactId>
  131. <version>${fastjson.version}</version>
  132. </dependency>
  133. <!-- Token生成与解析 -->
  134. <dependency>
  135. <groupId>io.jsonwebtoken</groupId>
  136. <artifactId>jjwt</artifactId>
  137. <version>${jwt.version}</version>
  138. </dependency>
  139. <!-- 验证码 -->
  140. <dependency>
  141. <groupId>pro.fessional</groupId>
  142. <artifactId>kaptcha</artifactId>
  143. <version>${kaptcha.version}</version>
  144. </dependency>
  145. <!-- 定时任务 -->
  146. <dependency>
  147. <groupId>com.jjt</groupId>
  148. <artifactId>jjt-quartz</artifactId>
  149. <version>${jjt.version}</version>
  150. </dependency>
  151. <!-- 代码生成 -->
  152. <dependency>
  153. <groupId>com.jjt</groupId>
  154. <artifactId>jjt-generator</artifactId>
  155. <version>${jjt.version}</version>
  156. </dependency>
  157. <!-- 核心模块 -->
  158. <dependency>
  159. <groupId>com.jjt</groupId>
  160. <artifactId>jjt-framework</artifactId>
  161. <version>${jjt.version}</version>
  162. </dependency>
  163. <!-- 系统模块 -->
  164. <dependency>
  165. <groupId>com.jjt</groupId>
  166. <artifactId>jjt-system</artifactId>
  167. <version>${jjt.version}</version>
  168. </dependency>
  169. <!-- 通用工具 -->
  170. <dependency>
  171. <groupId>com.jjt</groupId>
  172. <artifactId>jjt-common</artifactId>
  173. <version>${jjt.version}</version>
  174. </dependency>
  175. <!-- 业务模块 -->
  176. <dependency>
  177. <groupId>com.jjt</groupId>
  178. <artifactId>jjt-biz</artifactId>
  179. <version>${jjt.version}</version>
  180. </dependency>
  181. </dependencies>
  182. </dependencyManagement>
  183. <modules>
  184. <module>jjt-admin</module>
  185. <module>jjt-framework</module>
  186. <module>jjt-system</module>
  187. <module>jjt-quartz</module>
  188. <module>jjt-generator</module>
  189. <module>jjt-common</module>
  190. <module>jjt-biz</module>
  191. <module>jjt-cloud-demo</module>
  192. </modules>
  193. <packaging>pom</packaging>
  194. <build>
  195. <plugins>
  196. <plugin>
  197. <groupId>org.apache.maven.plugins</groupId>
  198. <artifactId>maven-compiler-plugin</artifactId>
  199. <version>3.1</version>
  200. <configuration>
  201. <source>${java.version}</source>
  202. <target>${java.version}</target>
  203. <encoding>${project.build.sourceEncoding}</encoding>
  204. </configuration>
  205. </plugin>
  206. </plugins>
  207. </build>
  208. <repositories>
  209. <repository>
  210. <id>public</id>
  211. <name>aliyun nexus</name>
  212. <url>https://maven.aliyun.com/repository/public</url>
  213. <releases>
  214. <enabled>true</enabled>
  215. </releases>
  216. </repository>
  217. </repositories>
  218. <pluginRepositories>
  219. <pluginRepository>
  220. <id>public</id>
  221. <name>aliyun nexus</name>
  222. <url>https://maven.aliyun.com/repository/public</url>
  223. <releases>
  224. <enabled>true</enabled>
  225. </releases>
  226. <snapshots>
  227. <enabled>false</enabled>
  228. </snapshots>
  229. </pluginRepository>
  230. </pluginRepositories>
  231. </project>