pom.xml 12 KB

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