pom.xml 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337
  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.qs.mp</groupId>
  7. <artifactId>mp</artifactId>
  8. <version>1.0.0</version>
  9. <name>mp</name>
  10. <url>http://www.quanshu123.com</url>
  11. <description>盲票</description>
  12. <properties>
  13. <mp.version>1.0.0</mp.version>
  14. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  15. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  16. <java.version>1.8</java.version>
  17. <maven-jar-plugin.version>3.1.1</maven-jar-plugin.version>
  18. <druid.version>1.2.6</druid.version>
  19. <bitwalker.version>1.21</bitwalker.version>
  20. <swagger.version>3.0.0</swagger.version>
  21. <orika.version>1.5.4</orika.version>
  22. <kaptcha.version>2.3.2</kaptcha.version>
  23. <mybatis-spring-boot.version>2.1.4</mybatis-spring-boot.version>
  24. <pagehelper.boot.version>1.3.1</pagehelper.boot.version>
  25. <fastjson.version>1.2.76</fastjson.version>
  26. <oshi.version>5.8.0</oshi.version>
  27. <jna.version>5.8.0</jna.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>1.7</velocity.version>
  33. <jwt.version>0.9.1</jwt.version>
  34. <hutool.version>5.3.1</hutool.version>
  35. <mybatisplus.version>3.4.3.2</mybatisplus.version>
  36. </properties>
  37. <!-- 依赖声明 -->
  38. <dependencyManagement>
  39. <dependencies>
  40. <!-- SpringBoot的依赖配置-->
  41. <dependency>
  42. <groupId>org.springframework.boot</groupId>
  43. <artifactId>spring-boot-dependencies</artifactId>
  44. <version>2.5.4</version>
  45. <type>pom</type>
  46. <scope>import</scope>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.mybatis.spring.boot</groupId>
  50. <artifactId>mybatis-spring-boot-starter</artifactId>
  51. <version>2.1.2</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>com.baomidou</groupId>
  55. <artifactId>mybatis-plus-boot-starter</artifactId>
  56. <version>${mybatisplus.version}</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>com.baomidou</groupId>
  60. <artifactId>mybatis-plus</artifactId>
  61. <version>${mybatisplus.version}</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>com.baomidou</groupId>
  65. <artifactId>mybatis-plus-generator</artifactId>
  66. <version>3.4.1</version>
  67. </dependency>
  68. <!-- 阿里数据库连接池 -->
  69. <dependency>
  70. <groupId>com.alibaba</groupId>
  71. <artifactId>druid-spring-boot-starter</artifactId>
  72. <version>${druid.version}</version>
  73. </dependency>
  74. <!-- 解析客户端操作系统、浏览器等 -->
  75. <dependency>
  76. <groupId>eu.bitwalker</groupId>
  77. <artifactId>UserAgentUtils</artifactId>
  78. <version>${bitwalker.version}</version>
  79. </dependency>
  80. <!-- SpringBoot集成mybatis框架 -->
  81. <dependency>
  82. <groupId>org.mybatis.spring.boot</groupId>
  83. <artifactId>mybatis-spring-boot-starter</artifactId>
  84. <version>${mybatis-spring-boot.version}</version>
  85. </dependency>
  86. <!-- pagehelper 分页插件 -->
  87. <dependency>
  88. <groupId>com.github.pagehelper</groupId>
  89. <artifactId>pagehelper-spring-boot-starter</artifactId>
  90. <version>${pagehelper.boot.version}</version>
  91. <exclusions>
  92. <exclusion>
  93. <groupId>org.mybatis</groupId>
  94. <artifactId>mybatis</artifactId>
  95. </exclusion>
  96. <exclusion>
  97. <groupId>org.mybatis</groupId>
  98. <artifactId>mybatis-spring</artifactId>
  99. </exclusion>
  100. <exclusion>
  101. <groupId>org.mybatis.spring.boot</groupId>
  102. <artifactId>mybatis-spring-boot-starter</artifactId>
  103. </exclusion>
  104. </exclusions>
  105. </dependency>
  106. <!-- 获取系统信息 -->
  107. <dependency>
  108. <groupId>com.github.oshi</groupId>
  109. <artifactId>oshi-core</artifactId>
  110. <version>${oshi.version}</version>
  111. </dependency>
  112. <dependency>
  113. <groupId>net.java.dev.jna</groupId>
  114. <artifactId>jna</artifactId>
  115. <version>${jna.version}</version>
  116. </dependency>
  117. <dependency>
  118. <groupId>net.java.dev.jna</groupId>
  119. <artifactId>jna-platform</artifactId>
  120. <version>${jna.version}</version>
  121. </dependency>
  122. <dependency>
  123. <groupId>ma.glasnost.orika</groupId>
  124. <artifactId>orika-core</artifactId>
  125. <version>${orika.version}</version>
  126. </dependency>
  127. <!-- Swagger3依赖 -->
  128. <dependency>
  129. <groupId>io.springfox</groupId>
  130. <artifactId>springfox-boot-starter</artifactId>
  131. <version>${swagger.version}</version>
  132. <exclusions>
  133. <exclusion>
  134. <groupId>io.swagger</groupId>
  135. <artifactId>swagger-models</artifactId>
  136. </exclusion>
  137. </exclusions>
  138. </dependency>
  139. <!-- io常用工具类 -->
  140. <dependency>
  141. <groupId>commons-io</groupId>
  142. <artifactId>commons-io</artifactId>
  143. <version>${commons.io.version}</version>
  144. </dependency>
  145. <!-- 文件上传工具类 -->
  146. <dependency>
  147. <groupId>commons-fileupload</groupId>
  148. <artifactId>commons-fileupload</artifactId>
  149. <version>${commons.fileupload.version}</version>
  150. </dependency>
  151. <!-- excel工具 -->
  152. <dependency>
  153. <groupId>org.apache.poi</groupId>
  154. <artifactId>poi-ooxml</artifactId>
  155. <version>${poi.version}</version>
  156. </dependency>
  157. <!-- velocity代码生成使用模板 -->
  158. <dependency>
  159. <groupId>org.apache.velocity</groupId>
  160. <artifactId>velocity</artifactId>
  161. <version>${velocity.version}</version>
  162. <exclusions>
  163. <exclusion>
  164. <groupId>commons-collections</groupId>
  165. <artifactId>commons-collections</artifactId>
  166. </exclusion>
  167. </exclusions>
  168. </dependency>
  169. <!-- collections工具类 -->
  170. <dependency>
  171. <groupId>commons-collections</groupId>
  172. <artifactId>commons-collections</artifactId>
  173. <version>${commons.collections.version}</version>
  174. </dependency>
  175. <!-- 阿里JSON解析器 -->
  176. <dependency>
  177. <groupId>com.alibaba</groupId>
  178. <artifactId>fastjson</artifactId>
  179. <version>${fastjson.version}</version>
  180. </dependency>
  181. <dependency>
  182. <groupId>com.qcloud</groupId>
  183. <artifactId>cos_api</artifactId>
  184. <version>5.6.54</version>
  185. </dependency>
  186. <!-- 短信发送 -->
  187. <dependency>
  188. <groupId>cn.jpush.api</groupId>
  189. <artifactId>jiguang-common</artifactId>
  190. <version>1.0.8</version>
  191. </dependency>
  192. <dependency>
  193. <groupId>cn.jpush.api</groupId>
  194. <artifactId>jsms-client</artifactId>
  195. <version>1.2.9</version>
  196. </dependency>
  197. <!--图片压缩工具 -->
  198. <dependency>
  199. <groupId>net.coobird</groupId>
  200. <artifactId>thumbnailator</artifactId>
  201. <version>0.4.8</version>
  202. </dependency>
  203. <!-- Token生成与解析-->
  204. <dependency>
  205. <groupId>io.jsonwebtoken</groupId>
  206. <artifactId>jjwt</artifactId>
  207. <version>${jwt.version}</version>
  208. </dependency>
  209. <!-- 验证码 -->
  210. <dependency>
  211. <groupId>com.github.penggle</groupId>
  212. <artifactId>kaptcha</artifactId>
  213. <version>${kaptcha.version}</version>
  214. </dependency>
  215. <!-- 定时任务-->
  216. <dependency>
  217. <groupId>com.qs.mp</groupId>
  218. <artifactId>mp-quartz</artifactId>
  219. <version>${mp.version}</version>
  220. </dependency>
  221. <!-- 代码生成-->
  222. <dependency>
  223. <groupId>com.qs.mp</groupId>
  224. <artifactId>mp-generator</artifactId>
  225. <version>${mp.version}</version>
  226. </dependency>
  227. <!-- 核心模块-->
  228. <dependency>
  229. <groupId>com.qs.mp</groupId>
  230. <artifactId>mp-framework</artifactId>
  231. <version>${mp.version}</version>
  232. </dependency>
  233. <!-- 系统模块-->
  234. <dependency>
  235. <groupId>com.qs.mp</groupId>
  236. <artifactId>mp-service</artifactId>
  237. <version>${mp.version}</version>
  238. </dependency>
  239. <!-- 通用工具-->
  240. <dependency>
  241. <groupId>com.qs.mp</groupId>
  242. <artifactId>mp-common</artifactId>
  243. <version>${mp.version}</version>
  244. </dependency>
  245. </dependencies>
  246. </dependencyManagement>
  247. <modules>
  248. <module>mp-admin</module>
  249. <module>mp-framework</module>
  250. <module>mp-service</module>
  251. <module>mp-quartz</module>
  252. <module>mp-generator</module>
  253. <module>mp-common</module>
  254. </modules>
  255. <packaging>pom</packaging>
  256. <dependencies>
  257. </dependencies>
  258. <build>
  259. <plugins>
  260. <plugin>
  261. <groupId>org.apache.maven.plugins</groupId>
  262. <artifactId>maven-compiler-plugin</artifactId>
  263. <version>3.1</version>
  264. <configuration>
  265. <source>${java.version}</source>
  266. <target>${java.version}</target>
  267. <encoding>${project.build.sourceEncoding}</encoding>
  268. </configuration>
  269. </plugin>
  270. </plugins>
  271. </build>
  272. <repositories>
  273. <repository>
  274. <id>public</id>
  275. <name>aliyun nexus</name>
  276. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  277. <releases>
  278. <enabled>true</enabled>
  279. </releases>
  280. </repository>
  281. </repositories>
  282. <pluginRepositories>
  283. <pluginRepository>
  284. <id>public</id>
  285. <name>aliyun nexus</name>
  286. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  287. <releases>
  288. <enabled>true</enabled>
  289. </releases>
  290. <snapshots>
  291. <enabled>false</enabled>
  292. </snapshots>
  293. </pluginRepository>
  294. </pluginRepositories>
  295. </project>