pom.xml 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276
  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.zksy</groupId>
  7. <artifactId>zksy</artifactId>
  8. <version>1.0.0</version>
  9. <name>zksy</name>
  10. <url></url>
  11. <description>中科盛阳信息技术有限公司</description>
  12. <properties>
  13. <zksy.version>1.0.0</zksy.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.8</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. <mybatis-plus-boot-starter.version>3.5.1</mybatis-plus-boot-starter.version>
  24. <pagehelper.boot.version>1.4.1</pagehelper.boot.version>
  25. <fastjson.version>1.2.79</fastjson.version>
  26. <oshi.version>6.1.2</oshi.version>
  27. <jna.version>5.10.0</jna.version>
  28. <lombok.version>1.18.22</lombok.version>
  29. <commons.io.version>2.11.0</commons.io.version>
  30. <commons.fileupload.version>1.4</commons.fileupload.version>
  31. <commons.collections.version>3.2.2</commons.collections.version>
  32. <poi.version>5.2.3</poi.version>
  33. <velocity.version>2.3</velocity.version>
  34. <jwt.version>0.9.1</jwt.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.10</version>
  44. <type>pom</type>
  45. <scope>import</scope>
  46. </dependency>
  47. <!-- 阿里数据库连接池 -->
  48. <dependency>
  49. <groupId>com.alibaba</groupId>
  50. <artifactId>druid-spring-boot-starter</artifactId>
  51. <version>${druid.version}</version>
  52. </dependency>
  53. <!-- 解析客户端操作系统、浏览器等 -->
  54. <dependency>
  55. <groupId>eu.bitwalker</groupId>
  56. <artifactId>UserAgentUtils</artifactId>
  57. <version>${bitwalker.version}</version>
  58. </dependency>
  59. <!-- SpringBoot集成mybatis框架 -->
  60. <!-- <dependency>
  61. <groupId>org.mybatis.spring.boot</groupId>
  62. <artifactId>mybatis-spring-boot-starter</artifactId>
  63. <version>${mybatis-spring-boot.version}</version>
  64. </dependency> -->
  65. <!-- mybatis-plus 增强CRUD -->
  66. <dependency>
  67. <groupId>com.baomidou</groupId>
  68. <artifactId>mybatis-plus-boot-starter</artifactId>
  69. <version>${mybatis-plus-boot-starter.version}</version>
  70. </dependency>
  71. <!-- pagehelper 分页插件 -->
  72. <dependency>
  73. <groupId>com.github.pagehelper</groupId>
  74. <artifactId>pagehelper-spring-boot-starter</artifactId>
  75. <version>${pagehelper.boot.version}</version>
  76. </dependency>
  77. <!-- 获取系统信息 -->
  78. <dependency>
  79. <groupId>com.github.oshi</groupId>
  80. <artifactId>oshi-core</artifactId>
  81. <version>${oshi.version}</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>net.java.dev.jna</groupId>
  85. <artifactId>jna</artifactId>
  86. <version>${jna.version}</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>net.java.dev.jna</groupId>
  90. <artifactId>jna-platform</artifactId>
  91. <version>${jna.version}</version>
  92. </dependency>
  93. <!-- Swagger3依赖 -->
  94. <dependency>
  95. <groupId>io.springfox</groupId>
  96. <artifactId>springfox-boot-starter</artifactId>
  97. <version>${swagger.version}</version>
  98. <exclusions>
  99. <exclusion>
  100. <groupId>io.swagger</groupId>
  101. <artifactId>swagger-models</artifactId>
  102. </exclusion>
  103. </exclusions>
  104. </dependency>
  105. <!-- io常用工具类 -->
  106. <dependency>
  107. <groupId>commons-io</groupId>
  108. <artifactId>commons-io</artifactId>
  109. <version>${commons.io.version}</version>
  110. </dependency>
  111. <!-- 文件上传工具类 -->
  112. <dependency>
  113. <groupId>commons-fileupload</groupId>
  114. <artifactId>commons-fileupload</artifactId>
  115. <version>${commons.fileupload.version}</version>
  116. </dependency>
  117. <!-- excel工具 -->
  118. <dependency>
  119. <groupId>org.apache.poi</groupId>
  120. <artifactId>poi-ooxml</artifactId>
  121. <version>${poi.version}</version>
  122. </dependency>
  123. <!-- velocity代码生成使用模板 -->
  124. <dependency>
  125. <groupId>org.apache.velocity</groupId>
  126. <artifactId>velocity-engine-core</artifactId>
  127. <version>${velocity.version}</version>
  128. </dependency>
  129. <!-- collections工具类 -->
  130. <dependency>
  131. <groupId>commons-collections</groupId>
  132. <artifactId>commons-collections</artifactId>
  133. <version>${commons.collections.version}</version>
  134. </dependency>
  135. <!-- 阿里JSON解析器 -->
  136. <dependency>
  137. <groupId>com.alibaba</groupId>
  138. <artifactId>fastjson</artifactId>
  139. <version>${fastjson.version}</version>
  140. </dependency>
  141. <!-- Token生成与解析-->
  142. <dependency>
  143. <groupId>io.jsonwebtoken</groupId>
  144. <artifactId>jjwt</artifactId>
  145. <version>${jwt.version}</version>
  146. </dependency>
  147. <!-- 验证码 -->
  148. <dependency>
  149. <groupId>com.github.penggle</groupId>
  150. <artifactId>kaptcha</artifactId>
  151. <version>${kaptcha.version}</version>
  152. </dependency>
  153. <!-- 定时任务-->
  154. <dependency>
  155. <groupId>com.zksy</groupId>
  156. <artifactId>zksy-quartz</artifactId>
  157. <version>${zksy.version}</version>
  158. </dependency>
  159. <!-- 代码生成-->
  160. <dependency>
  161. <groupId>com.zksy</groupId>
  162. <artifactId>zksy-generator</artifactId>
  163. <version>${zksy.version}</version>
  164. </dependency>
  165. <!-- 核心模块-->
  166. <dependency>
  167. <groupId>com.zksy</groupId>
  168. <artifactId>zksy-framework</artifactId>
  169. <version>${zksy.version}</version>
  170. </dependency>
  171. <!-- 系统模块-->
  172. <dependency>
  173. <groupId>com.zksy</groupId>
  174. <artifactId>zksy-system</artifactId>
  175. <version>${zksy.version}</version>
  176. </dependency>
  177. <!-- 通用工具-->
  178. <dependency>
  179. <groupId>com.zksy</groupId>
  180. <artifactId>zksy-common</artifactId>
  181. <version>${zksy.version}</version>
  182. </dependency>
  183. <!-- lombok-->
  184. <dependency>
  185. <groupId>org.projectlombok</groupId>
  186. <artifactId>lombok</artifactId>
  187. <version>${lombok.version}</version>
  188. </dependency>
  189. </dependencies>
  190. </dependencyManagement>
  191. <modules>
  192. <module>zksy-admin</module>
  193. <module>zksy-framework</module>
  194. <module>zksy-system</module>
  195. <module>zksy-quartz</module>
  196. <module>zksy-generator</module>
  197. <module>zksy-common</module>
  198. </modules>
  199. <packaging>pom</packaging>
  200. <dependencies>
  201. </dependencies>
  202. <build>
  203. <plugins>
  204. <plugin>
  205. <groupId>org.apache.maven.plugins</groupId>
  206. <artifactId>maven-compiler-plugin</artifactId>
  207. <version>3.1</version>
  208. <configuration>
  209. <source>${java.version}</source>
  210. <target>${java.version}</target>
  211. <encoding>${project.build.sourceEncoding}</encoding>
  212. </configuration>
  213. </plugin>
  214. </plugins>
  215. </build>
  216. <!-- <repositories>
  217. <repository>
  218. <id>public</id>
  219. <name>aliyun nexus</name>
  220. <url>https://maven.aliyun.com/repository/public</url>
  221. <releases>
  222. <enabled>true</enabled>
  223. </releases>
  224. </repository>
  225. </repositories>
  226. <pluginRepositories>
  227. <pluginRepository>
  228. <id>public</id>
  229. <name>aliyun nexus</name>
  230. <url>https://maven.aliyun.com/repository/public</url>
  231. <releases>
  232. <enabled>true</enabled>
  233. </releases>
  234. <snapshots>
  235. <enabled>false</enabled>
  236. </snapshots>
  237. </pluginRepository>
  238. </pluginRepositories> -->
  239. </project>