pom.xml 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328
  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.project</groupId>
  7. <artifactId>project-service</artifactId>
  8. <version>3.8.3</version>
  9. <name>project-service</name>
  10. <description>MybatisPlus纯净版</description>
  11. <properties>
  12. <change.version>3.8.3</change.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. <druid.version>1.2.11</druid.version>
  18. <bitwalker.version>1.21</bitwalker.version>
  19. <swagger.version>3.0.0</swagger.version>
  20. <kaptcha.version>2.3.2</kaptcha.version>
  21. <lombok.version>1.18.20</lombok.version>
  22. <hutool.version>5.7.2</hutool.version>
  23. <mybatis-plus-spring-boot.version>3.5.3</mybatis-plus-spring-boot.version>
  24. <mybatis-plus-join-spring-boot.version>1.4.11</mybatis-plus-join-spring-boot.version>
  25. <pagehelper.boot.version>1.4.3</pagehelper.boot.version>
  26. <fastjson.version>2.0.28</fastjson.version>
  27. <oshi.version>6.2.2</oshi.version>
  28. <commons.io.version>2.11.0</commons.io.version>
  29. <commons.fileupload.version>1.4</commons.fileupload.version>
  30. <commons.collections.version>3.2.2</commons.collections.version>
  31. <poi.version>4.1.2</poi.version>
  32. <velocity.version>2.3</velocity.version>
  33. <jwt.version>0.9.1</jwt.version>
  34. <xxl-job.version>2.4.0</xxl-job.version>
  35. </properties>
  36. <!-- 依赖声明 -->
  37. <dependencyManagement>
  38. <dependencies>
  39. <!-- SpringBoot的依赖配置-->
  40. <dependency>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-dependencies</artifactId>
  43. <version>2.5.14</version>
  44. <type>pom</type>
  45. <scope>import</scope>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.springframework.boot</groupId>
  49. <artifactId>spring-boot-starter-mail</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.belerweb</groupId>
  53. <artifactId>pinyin4j</artifactId>
  54. <version>2.5.1</version>
  55. </dependency>
  56. <!-- 阿里数据库连接池 -->
  57. <dependency>
  58. <groupId>com.alibaba</groupId>
  59. <artifactId>druid-spring-boot-starter</artifactId>
  60. <version>${druid.version}</version>
  61. </dependency>
  62. <!-- 解析客户端操作系统、浏览器等 -->
  63. <dependency>
  64. <groupId>eu.bitwalker</groupId>
  65. <artifactId>UserAgentUtils</artifactId>
  66. <version>${bitwalker.version}</version>
  67. </dependency>
  68. <!-- pagehelper 分页插件 -->
  69. <dependency>
  70. <groupId>com.github.pagehelper</groupId>
  71. <artifactId>pagehelper-spring-boot-starter</artifactId>
  72. <version>${pagehelper.boot.version}</version>
  73. </dependency>
  74. <!-- mybatis-plus 增强CRUD -->
  75. <dependency>
  76. <groupId>com.baomidou</groupId>
  77. <artifactId>mybatis-plus-boot-starter</artifactId>
  78. <version>${mybatis-plus-spring-boot.version}</version>
  79. </dependency>
  80. <!-- mybatis-plus-join 增强连表curd -->
  81. <dependency>
  82. <groupId>com.github.yulichang</groupId>
  83. <artifactId>mybatis-plus-join-boot-starter</artifactId>
  84. <version>${mybatis-plus-join-spring-boot.version}</version>
  85. </dependency>
  86. <!-- 获取系统信息 -->
  87. <dependency>
  88. <groupId>com.github.oshi</groupId>
  89. <artifactId>oshi-core</artifactId>
  90. <version>${oshi.version}</version>
  91. </dependency>
  92. <!-- Swagger3依赖 -->
  93. <!--<dependency>
  94. <groupId>io.springfox</groupId>
  95. <artifactId>springfox-boot-starter</artifactId>
  96. <version>${swagger.version}</version>
  97. <exclusions>
  98. <exclusion>
  99. <groupId>io.swagger</groupId>
  100. <artifactId>swagger-models</artifactId>
  101. </exclusion>
  102. </exclusions>
  103. </dependency>-->
  104. <!-- io常用工具类 -->
  105. <dependency>
  106. <groupId>commons-io</groupId>
  107. <artifactId>commons-io</artifactId>
  108. <version>${commons.io.version}</version>
  109. </dependency>
  110. <!-- 文件上传工具类 -->
  111. <dependency>
  112. <groupId>commons-fileupload</groupId>
  113. <artifactId>commons-fileupload</artifactId>
  114. <version>${commons.fileupload.version}</version>
  115. </dependency>
  116. <!-- excel工具 -->
  117. <dependency>
  118. <groupId>org.apache.poi</groupId>
  119. <artifactId>poi-ooxml</artifactId>
  120. <version>${poi.version}</version>
  121. </dependency>
  122. <!-- velocity代码生成使用模板 -->
  123. <dependency>
  124. <groupId>org.apache.velocity</groupId>
  125. <artifactId>velocity-engine-core</artifactId>
  126. <version>${velocity.version}</version>
  127. </dependency>
  128. <!-- collections工具类 -->
  129. <dependency>
  130. <groupId>commons-collections</groupId>
  131. <artifactId>commons-collections</artifactId>
  132. <version>${commons.collections.version}</version>
  133. </dependency>
  134. <!-- 阿里JSON解析器 -->
  135. <dependency>
  136. <groupId>com.alibaba.fastjson2</groupId>
  137. <artifactId>fastjson2</artifactId>
  138. <version>${fastjson.version}</version>
  139. </dependency>
  140. <!-- Token生成与解析-->
  141. <dependency>
  142. <groupId>io.jsonwebtoken</groupId>
  143. <artifactId>jjwt</artifactId>
  144. <version>${jwt.version}</version>
  145. </dependency>
  146. <!-- 验证码 -->
  147. <dependency>
  148. <groupId>com.github.penggle</groupId>
  149. <artifactId>kaptcha</artifactId>
  150. <version>${kaptcha.version}</version>
  151. </dependency>
  152. <!-- lombok 工具 -->
  153. <dependency>
  154. <groupId>org.projectlombok</groupId>
  155. <artifactId>lombok</artifactId>
  156. <version>${lombok.version}</version>
  157. </dependency>
  158. <!-- hutool 工具 -->
  159. <dependency>
  160. <groupId>cn.hutool</groupId>
  161. <artifactId>hutool-all</artifactId>
  162. <version>${hutool.version}</version>
  163. </dependency>
  164. <!-- 定时任务-->
  165. <dependency>
  166. <groupId>com.project</groupId>
  167. <artifactId>project-quartz</artifactId>
  168. <version>${change.version}</version>
  169. </dependency>
  170. <!-- 代码生成-->
  171. <dependency>
  172. <groupId>com.project</groupId>
  173. <artifactId>project-generator</artifactId>
  174. <version>${change.version}</version>
  175. </dependency>
  176. <!-- 核心模块-->
  177. <dependency>
  178. <groupId>com.project</groupId>
  179. <artifactId>project-framework</artifactId>
  180. <version>${change.version}</version>
  181. </dependency>
  182. <!--<dependency>
  183. <groupId>com.xuxueli</groupId>
  184. <artifactId>xxl-job-core</artifactId>
  185. <version>${xxl-job.version}</version>
  186. </dependency>-->
  187. <!-- 系统模块-->
  188. <dependency>
  189. <groupId>com.project</groupId>
  190. <artifactId>project-system</artifactId>
  191. <version>${change.version}</version>
  192. </dependency>
  193. <!-- 自定义功能模块 -->
  194. <dependency>
  195. <groupId>com.project</groupId>
  196. <artifactId>project-zcustom</artifactId>
  197. <version>${change.version}</version>
  198. </dependency>
  199. <!-- 通用工具-->
  200. <dependency>
  201. <groupId>com.project</groupId>
  202. <artifactId>project-common</artifactId>
  203. <version>${change.version}</version>
  204. </dependency>
  205. <!-- 扩展功能 -->
  206. <dependency>
  207. <groupId>com.project</groupId>
  208. <artifactId>project-extend</artifactId>
  209. <version>${change.version}</version>
  210. </dependency>
  211. <!--<dependency>
  212. <groupId>com.google.zxing</groupId>
  213. <artifactId>core</artifactId>
  214. <version>${qr.code.version}</version>
  215. </dependency>
  216. <dependency>
  217. <groupId>com.google.zxing</groupId>
  218. <artifactId>javase</artifactId>
  219. <version>${qr.code.version}</version>
  220. </dependency>-->
  221. <dependency>
  222. <groupId>org.bouncycastle</groupId>
  223. <artifactId>bcprov-jdk15on</artifactId>
  224. <version>1.69</version>
  225. </dependency>
  226. <dependency>
  227. <groupId>org.apache.httpcomponents</groupId>
  228. <artifactId>fluent-hc</artifactId>
  229. <version>4.5.8</version>
  230. </dependency>
  231. </dependencies>
  232. </dependencyManagement>
  233. <modules>
  234. <module>project-admin</module>
  235. <module>project-framework</module>
  236. <module>project-system</module>
  237. <module>project-quartz</module>
  238. <module>project-generator</module>
  239. <module>project-common</module>
  240. <module>project-extend</module>
  241. <module>project-zcustom</module>
  242. <module>project-xxl-job</module>
  243. </modules>
  244. <packaging>pom</packaging>
  245. <dependencies>
  246. </dependencies>
  247. <build>
  248. <plugins>
  249. <plugin>
  250. <groupId>org.apache.maven.plugins</groupId>
  251. <artifactId>maven-compiler-plugin</artifactId>
  252. <version>3.1</version>
  253. <configuration>
  254. <source>${java.version}</source>
  255. <target>${java.version}</target>
  256. <encoding>${project.build.sourceEncoding}</encoding>
  257. </configuration>
  258. </plugin>
  259. <plugin>
  260. <groupId>org.springframework.boot</groupId>
  261. <artifactId>spring-boot-maven-plugin</artifactId>
  262. <configuration>
  263. <includeSystemScope>true</includeSystemScope>
  264. </configuration>
  265. </plugin>
  266. </plugins>
  267. </build>
  268. <repositories>
  269. <repository>
  270. <id>public</id>
  271. <name>aliyun nexus</name>
  272. <url>https://maven.aliyun.com/repository/public</url>
  273. <releases>
  274. <enabled>true</enabled>
  275. </releases>
  276. </repository>
  277. <repository>
  278. <id>jitpack.io</id>
  279. <url>https://jitpack.io</url>
  280. </repository>
  281. </repositories>
  282. <pluginRepositories>
  283. <pluginRepository>
  284. <id>public</id>
  285. <name>aliyun nexus</name>
  286. <url>https://maven.aliyun.com/repository/public</url>
  287. <releases>
  288. <enabled>true</enabled>
  289. </releases>
  290. <snapshots>
  291. <enabled>false</enabled>
  292. </snapshots>
  293. </pluginRepository>
  294. </pluginRepositories>
  295. </project>