pom.xml 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309
  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.aidex</groupId>
  7. <artifactId>aidex</artifactId>
  8. <version>3.4.0</version>
  9. <name>aidex</name>
  10. <url>http://www.ruoyi.vip</url>
  11. <description>AiDex Sharp 快速开发平台</description>
  12. <properties>
  13. <aidex.version>3.4.0</aidex.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.14</druid.version>
  19. <bitwalker.version>1.21</bitwalker.version>
  20. <swagger.version>3.0.0</swagger.version>
  21. <kaptcha.version>2.3.2</kaptcha.version>
  22. <mybatis-spring-boot.version>2.2.2</mybatis-spring-boot.version>
  23. <pagehelper.boot.version>1.4.5</pagehelper.boot.version>
  24. <fastjson.version>2.0.16</fastjson.version>
  25. <oshi.version>6.3.0</oshi.version>
  26. <commons.io.version>2.11.0</commons.io.version>
  27. <commons.fileupload.version>1.4</commons.fileupload.version>
  28. <commons.collections.version>3.2.2</commons.collections.version>
  29. <poi.version>4.1.2</poi.version>
  30. <velocity.version>2.3</velocity.version>
  31. <jwt.version>0.9.1</jwt.version>
  32. <!-- add 2021-01-28 -->
  33. <lombok.version>1.18.16</lombok.version>
  34. <org.mapstruct.version>1.4.1.Final</org.mapstruct.version>
  35. <pinyin4j.version>2.5.0</pinyin4j.version>
  36. <xstream-version>1.3.1</xstream-version>
  37. <com.squareup.retrofit2.version>2.4.0</com.squareup.retrofit2.version>
  38. </properties>
  39. <!-- 依赖声明 -->
  40. <dependencyManagement>
  41. <dependencies>
  42. <!-- SpringBoot的依赖配置-->
  43. <dependency>
  44. <groupId>org.springframework.boot</groupId>
  45. <artifactId>spring-boot-dependencies</artifactId>
  46. <version>2.5.14</version>
  47. <type>pom</type>
  48. <scope>import</scope>
  49. </dependency>
  50. <!--阿里数据库连接池 -->
  51. <dependency>
  52. <groupId>com.alibaba</groupId>
  53. <artifactId>druid-spring-boot-starter</artifactId>
  54. <version>${druid.version}</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>commons-codec</groupId>
  58. <artifactId>commons-codec</artifactId>
  59. <version>1.15</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.apache.commons</groupId>
  63. <artifactId>commons-lang3</artifactId>
  64. <version>3.12.0</version>
  65. </dependency>
  66. <!-- 解析客户端操作系统、浏览器等 -->
  67. <dependency>
  68. <groupId>eu.bitwalker</groupId>
  69. <artifactId>UserAgentUtils</artifactId>
  70. <version>${bitwalker.version}</version>
  71. </dependency>
  72. <!-- SpringBoot集成mybatis框架 -->
  73. <dependency>
  74. <groupId>org.mybatis.spring.boot</groupId>
  75. <artifactId>mybatis-spring-boot-starter</artifactId>
  76. <version>${mybatis-spring-boot.version}</version>
  77. </dependency>
  78. <!-- pagehelper 分页插件 -->
  79. <dependency>
  80. <groupId>com.github.pagehelper</groupId>
  81. <artifactId>pagehelper-spring-boot-starter</artifactId>
  82. <version>${pagehelper.boot.version}</version>
  83. </dependency>
  84. <!-- 获取系统信息 -->
  85. <dependency>
  86. <groupId>com.github.oshi</groupId>
  87. <artifactId>oshi-core</artifactId>
  88. <version>${oshi.version}</version>
  89. </dependency>
  90. <!-- 引入lombok 2020-01-28 -->
  91. <dependency>
  92. <groupId>org.projectlombok</groupId>
  93. <artifactId>lombok</artifactId>
  94. <version>${lombok.version}</version>
  95. </dependency>
  96. <!-- 引入mapstruct 2020-01-28 -->
  97. <dependency>
  98. <groupId>org.mapstruct</groupId>
  99. <artifactId>mapstruct</artifactId>
  100. <version>${org.mapstruct.version}</version>
  101. </dependency>
  102. <!-- 引入pinyin4j 2020-01-28 -->
  103. <dependency>
  104. <groupId>com.belerweb</groupId>
  105. <artifactId>pinyin4j</artifactId>
  106. <version>${pinyin4j.version}</version>
  107. </dependency>
  108. <!-- 引入xstream 2021-05-25 -->
  109. <dependency>
  110. <groupId>com.thoughtworks.xstream</groupId>
  111. <artifactId>xstream</artifactId>
  112. <version>${xstream-version}</version>
  113. </dependency>
  114. <dependency>
  115. <groupId>org.mapstruct</groupId>
  116. <artifactId>mapstruct-processor</artifactId>
  117. <version>${org.mapstruct.version}</version>
  118. <scope>compile</scope>
  119. </dependency>
  120. <!-- Swagger3依赖 -->
  121. <dependency>
  122. <groupId>io.springfox</groupId>
  123. <artifactId>springfox-boot-starter</artifactId>
  124. <version>${swagger.version}</version>
  125. <exclusions>
  126. <exclusion>
  127. <groupId>io.swagger</groupId>
  128. <artifactId>swagger-models</artifactId>
  129. </exclusion>
  130. </exclusions>
  131. </dependency>
  132. <!--io常用工具类 -->
  133. <dependency>
  134. <groupId>commons-io</groupId>
  135. <artifactId>commons-io</artifactId>
  136. <version>${commons.io.version}</version>
  137. </dependency>
  138. <!--文件上传工具类 -->
  139. <dependency>
  140. <groupId>commons-fileupload</groupId>
  141. <artifactId>commons-fileupload</artifactId>
  142. <version>${commons.fileupload.version}</version>
  143. </dependency>
  144. <!-- excel工具 -->
  145. <dependency>
  146. <groupId>org.apache.poi</groupId>
  147. <artifactId>poi-ooxml</artifactId>
  148. <version>${poi.version}</version>
  149. </dependency>
  150. <!-- velocity代码生成使用模板 -->
  151. <dependency>
  152. <groupId>org.apache.velocity</groupId>
  153. <artifactId>velocity-engine-core</artifactId>
  154. <version>${velocity.version}</version>
  155. </dependency>
  156. <!-- 阿里JSON解析器 -->
  157. <dependency>
  158. <groupId>com.alibaba.fastjson2</groupId>
  159. <artifactId>fastjson2</artifactId>
  160. <version>${fastjson.version}</version>
  161. </dependency>
  162. <!-- collections工具类 -->
  163. <dependency>
  164. <groupId>commons-collections</groupId>
  165. <artifactId>commons-collections</artifactId>
  166. <version>${commons.collections.version}</version>
  167. </dependency>
  168. <!--Token生成与解析-->
  169. <dependency>
  170. <groupId>io.jsonwebtoken</groupId>
  171. <artifactId>jjwt</artifactId>
  172. <version>${jwt.version}</version>
  173. </dependency>
  174. <!--验证码 -->
  175. <dependency>
  176. <groupId>com.github.penggle</groupId>
  177. <artifactId>kaptcha</artifactId>
  178. <version>${kaptcha.version}</version>
  179. </dependency>
  180. <!-- 定时任务-->
  181. <dependency>
  182. <groupId>com.aidex</groupId>
  183. <artifactId>aidex-quartz</artifactId>
  184. <version>${aidex.version}</version>
  185. </dependency>
  186. <!-- 代码生成-->
  187. <dependency>
  188. <groupId>com.aidex</groupId>
  189. <artifactId>aidex-generator</artifactId>
  190. <version>${aidex.version}</version>
  191. </dependency>
  192. <!-- 核心模块-->
  193. <dependency>
  194. <groupId>com.aidex</groupId>
  195. <artifactId>aidex-framework</artifactId>
  196. <version>${aidex.version}</version>
  197. </dependency>
  198. <!-- 系统模块-->
  199. <dependency>
  200. <groupId>com.aidex</groupId>
  201. <artifactId>aidex-system</artifactId>
  202. <version>${aidex.version}</version>
  203. </dependency>
  204. <!-- 通用工具-->
  205. <dependency>
  206. <groupId>com.aidex</groupId>
  207. <artifactId>aidex-common</artifactId>
  208. <version>${aidex.version}</version>
  209. </dependency>
  210. <!--阿里短信服务 -->
  211. <dependency>
  212. <groupId>com.aliyun</groupId>
  213. <artifactId>aliyun-java-sdk-core</artifactId>
  214. <version>4.5.16</version>
  215. </dependency>
  216. </dependencies>
  217. </dependencyManagement>
  218. <modules>
  219. <module>aidex-admin</module>
  220. <module>aidex-framework</module>
  221. <module>aidex-system</module>
  222. <module>aidex-quartz</module>
  223. <module>aidex-generator</module>
  224. <module>aidex-common</module>
  225. <module>aidex-controller</module>
  226. </modules>
  227. <packaging>pom</packaging>
  228. <dependencies>
  229. </dependencies>
  230. <build>
  231. <plugins>
  232. <plugin>
  233. <groupId>org.apache.maven.plugins</groupId>
  234. <artifactId>maven-compiler-plugin</artifactId>
  235. <version>3.1</version>
  236. <configuration>
  237. <source>${java.version}</source>
  238. <target>${java.version}</target>
  239. <encoding>${project.build.sourceEncoding}</encoding>
  240. </configuration>
  241. </plugin>
  242. </plugins>
  243. <resources>
  244. <resource>
  245. <directory>src/main/java</directory>
  246. <includes>
  247. <include>**/*.xml</include>
  248. <include>**/*.vm</include>
  249. </includes>
  250. <filtering>true</filtering>
  251. </resource>
  252. <resource>
  253. <directory>src/main/resources</directory>
  254. <filtering>true</filtering>
  255. </resource>
  256. </resources>
  257. </build>
  258. <pluginRepositories>
  259. <pluginRepository>
  260. <id>public</id>
  261. <name>aliyun nexus</name>
  262. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  263. <releases>
  264. <enabled>true</enabled>
  265. </releases>
  266. <snapshots>
  267. <enabled>false</enabled>
  268. </snapshots>
  269. </pluginRepository>
  270. </pluginRepositories>
  271. </project>