pom.xml 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>com.admin</groupId>
  5. <artifactId>admin</artifactId>
  6. <version>3.8.1</version>
  7. <name>admin</name>
  8. <url>http://www.admin.vip</url>
  9. <description>若依管理系统</description>
  10. <properties>
  11. <admin.version>3.8.1</admin.version>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  14. <java.version>1.8</java.version>
  15. <maven-jar-plugin.version>3.1.1</maven-jar-plugin.version>
  16. <druid.version>1.2.8</druid.version>
  17. <bitwalker.version>1.21</bitwalker.version>
  18. <swagger.version>3.0.0</swagger.version>
  19. <kaptcha.version>2.3.2</kaptcha.version>
  20. <mybatis-spring-boot.version>2.2.0</mybatis-spring-boot.version>
  21. <pagehelper.boot.version>1.4.0</pagehelper.boot.version>
  22. <fastjson.version>1.2.79</fastjson.version>
  23. <oshi.version>5.8.6</oshi.version>
  24. <jna.version>5.10.0</jna.version>
  25. <commons.io.version>2.11.0</commons.io.version>
  26. <commons.fileupload.version>1.4</commons.fileupload.version>
  27. <commons.collections.version>3.2.2</commons.collections.version>
  28. <poi.version>4.1.2</poi.version>
  29. <velocity.version>2.3</velocity.version>
  30. <jwt.version>0.9.1</jwt.version>
  31. </properties>
  32. <!-- 依赖声明 -->
  33. <dependencyManagement>
  34. <dependencies>
  35. <!-- SpringBoot的依赖配置-->
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-dependencies</artifactId>
  39. <version>2.5.9</version>
  40. <type>pom</type>
  41. <scope>import</scope>
  42. </dependency>
  43. <!-- 阿里数据库连接池 -->
  44. <dependency>
  45. <groupId>com.alibaba</groupId>
  46. <artifactId>druid-spring-boot-starter</artifactId>
  47. <version>${druid.version}</version>
  48. </dependency>
  49. <!-- 解析客户端操作系统、浏览器等 -->
  50. <dependency>
  51. <groupId>eu.bitwalker</groupId>
  52. <artifactId>UserAgentUtils</artifactId>
  53. <version>${bitwalker.version}</version>
  54. </dependency>
  55. <!-- SpringBoot集成mybatis框架 -->
  56. <dependency>
  57. <groupId>org.mybatis.spring.boot</groupId>
  58. <artifactId>mybatis-spring-boot-starter</artifactId>
  59. <version>${mybatis-spring-boot.version}</version>
  60. </dependency>
  61. <!-- pagehelper 分页插件 -->
  62. <dependency>
  63. <groupId>com.github.pagehelper</groupId>
  64. <artifactId>pagehelper-spring-boot-starter</artifactId>
  65. <version>${pagehelper.boot.version}</version>
  66. </dependency>
  67. <!-- 获取系统信息 -->
  68. <dependency>
  69. <groupId>com.github.oshi</groupId>
  70. <artifactId>oshi-core</artifactId>
  71. <version>${oshi.version}</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>net.java.dev.jna</groupId>
  75. <artifactId>jna</artifactId>
  76. <version>${jna.version}</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>net.java.dev.jna</groupId>
  80. <artifactId>jna-platform</artifactId>
  81. <version>${jna.version}</version>
  82. </dependency>
  83. <!-- Swagger3依赖 -->
  84. <dependency>
  85. <groupId>io.springfox</groupId>
  86. <artifactId>springfox-boot-starter</artifactId>
  87. <version>${swagger.version}</version>
  88. <exclusions>
  89. <exclusion>
  90. <groupId>io.swagger</groupId>
  91. <artifactId>swagger-models</artifactId>
  92. </exclusion>
  93. </exclusions>
  94. </dependency>
  95. <!-- io常用工具类 -->
  96. <dependency>
  97. <groupId>commons-io</groupId>
  98. <artifactId>commons-io</artifactId>
  99. <version>${commons.io.version}</version>
  100. </dependency>
  101. <!-- 文件上传工具类 -->
  102. <dependency>
  103. <groupId>commons-fileupload</groupId>
  104. <artifactId>commons-fileupload</artifactId>
  105. <version>${commons.fileupload.version}</version>
  106. </dependency>
  107. <!-- excel工具 -->
  108. <dependency>
  109. <groupId>org.apache.poi</groupId>
  110. <artifactId>poi-ooxml</artifactId>
  111. <version>${poi.version}</version>
  112. </dependency>
  113. <!-- velocity代码生成使用模板 -->
  114. <dependency>
  115. <groupId>org.apache.velocity</groupId>
  116. <artifactId>velocity-engine-core</artifactId>
  117. <version>${velocity.version}</version>
  118. </dependency>
  119. <!-- collections工具类 -->
  120. <dependency>
  121. <groupId>commons-collections</groupId>
  122. <artifactId>commons-collections</artifactId>
  123. <version>${commons.collections.version}</version>
  124. </dependency>
  125. <!-- 阿里JSON解析器 -->
  126. <dependency>
  127. <groupId>com.alibaba</groupId>
  128. <artifactId>fastjson</artifactId>
  129. <version>${fastjson.version}</version>
  130. </dependency>
  131. <!-- Token生成与解析-->
  132. <dependency>
  133. <groupId>io.jsonwebtoken</groupId>
  134. <artifactId>jjwt</artifactId>
  135. <version>${jwt.version}</version>
  136. </dependency>
  137. <!-- 验证码 -->
  138. <dependency>
  139. <groupId>com.github.penggle</groupId>
  140. <artifactId>kaptcha</artifactId>
  141. <version>${kaptcha.version}</version>
  142. </dependency>
  143. <!-- 定时任务-->
  144. <dependency>
  145. <groupId>com.admin</groupId>
  146. <artifactId>admin-quartz</artifactId>
  147. <version>${admin.version}</version>
  148. </dependency>
  149. <!-- 代码生成-->
  150. <dependency>
  151. <groupId>com.admin</groupId>
  152. <artifactId>admin-generator</artifactId>
  153. <version>${admin.version}</version>
  154. </dependency>
  155. <!-- 核心模块-->
  156. <dependency>
  157. <groupId>com.admin</groupId>
  158. <artifactId>admin-framework</artifactId>
  159. <version>${admin.version}</version>
  160. </dependency>
  161. <!-- 系统模块-->
  162. <dependency>
  163. <groupId>com.admin</groupId>
  164. <artifactId>admin-system</artifactId>
  165. <version>${admin.version}</version>
  166. </dependency>
  167. <!-- 系统模块-->
  168. <dependency>
  169. <groupId>com.admin</groupId>
  170. <artifactId>admin-major</artifactId>
  171. <version>${admin.version}</version>
  172. </dependency>
  173. <!-- 通用工具-->
  174. <dependency>
  175. <groupId>com.admin</groupId>
  176. <artifactId>admin-common</artifactId>
  177. <version>${admin.version}</version>
  178. </dependency>
  179. </dependencies>
  180. </dependencyManagement>
  181. <modules>
  182. <module>admin-server</module>
  183. <module>admin-framework</module>
  184. <module>admin-system</module>
  185. <module>admin-quartz</module>
  186. <module>admin-generator</module>
  187. <module>admin-common</module>
  188. <module>admin-major</module>
  189. <module>shunt-api</module>
  190. </modules>
  191. <packaging>pom</packaging>
  192. <dependencies>
  193. </dependencies>
  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>