pom.xml 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237
  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.gqy</groupId>
  7. <artifactId>gqy</artifactId>
  8. <version>3.8.8</version>
  9. <description>旷视可以GQY系统</description>
  10. <properties>
  11. <gqy.version>3.8.8</gqy.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. <spring-framework.version>5.3.33</spring-framework.version>
  17. <spring-security.version>5.7.12</spring-security.version>
  18. <druid.version>1.2.23</druid.version>
  19. <bitwalker.version>1.21</bitwalker.version>
  20. <swagger.version>3.0.0</swagger.version>
  21. <kaptcha.version>2.3.3</kaptcha.version>
  22. <pagehelper.boot.version>1.4.7</pagehelper.boot.version>
  23. <fastjson.version>2.0.53</fastjson.version>
  24. <oshi.version>6.6.3</oshi.version>
  25. <commons.io.version>2.13.0</commons.io.version>
  26. <poi.version>4.1.2</poi.version>
  27. <velocity.version>2.3</velocity.version>
  28. <jwt.version>0.9.1</jwt.version>
  29. </properties>
  30. <!-- 依赖声明 -->
  31. <dependencyManagement>
  32. <dependencies>
  33. <!-- SpringFramework的依赖配置-->
  34. <dependency>
  35. <groupId>org.springframework</groupId>
  36. <artifactId>spring-framework-bom</artifactId>
  37. <version>${spring-framework.version}</version>
  38. <type>pom</type>
  39. <scope>import</scope>
  40. </dependency>
  41. <!-- SpringSecurity的依赖配置-->
  42. <dependency>
  43. <groupId>org.springframework.security</groupId>
  44. <artifactId>spring-security-bom</artifactId>
  45. <version>${spring-security.version}</version>
  46. <type>pom</type>
  47. <scope>import</scope>
  48. </dependency>
  49. <!-- SpringBoot的依赖配置-->
  50. <dependency>
  51. <groupId>org.springframework.boot</groupId>
  52. <artifactId>spring-boot-dependencies</artifactId>
  53. <version>2.5.15</version>
  54. <type>pom</type>
  55. <scope>import</scope>
  56. </dependency>
  57. <!-- 阿里数据库连接池 -->
  58. <dependency>
  59. <groupId>com.alibaba</groupId>
  60. <artifactId>druid-spring-boot-starter</artifactId>
  61. <version>${druid.version}</version>
  62. </dependency>
  63. <!-- 解析客户端操作系统、浏览器等 -->
  64. <dependency>
  65. <groupId>eu.bitwalker</groupId>
  66. <artifactId>UserAgentUtils</artifactId>
  67. <version>${bitwalker.version}</version>
  68. </dependency>
  69. <!-- pagehelper 分页插件 -->
  70. <dependency>
  71. <groupId>com.github.pagehelper</groupId>
  72. <artifactId>pagehelper-spring-boot-starter</artifactId>
  73. <version>${pagehelper.boot.version}</version>
  74. </dependency>
  75. <!-- 获取系统信息 -->
  76. <dependency>
  77. <groupId>com.github.oshi</groupId>
  78. <artifactId>oshi-core</artifactId>
  79. <version>${oshi.version}</version>
  80. </dependency>
  81. <!-- Swagger3依赖 -->
  82. <dependency>
  83. <groupId>io.springfox</groupId>
  84. <artifactId>springfox-boot-starter</artifactId>
  85. <version>${swagger.version}</version>
  86. <exclusions>
  87. <exclusion>
  88. <groupId>io.swagger</groupId>
  89. <artifactId>swagger-models</artifactId>
  90. </exclusion>
  91. </exclusions>
  92. </dependency>
  93. <!-- io常用工具类 -->
  94. <dependency>
  95. <groupId>commons-io</groupId>
  96. <artifactId>commons-io</artifactId>
  97. <version>${commons.io.version}</version>
  98. </dependency>
  99. <!-- excel工具 -->
  100. <dependency>
  101. <groupId>org.apache.poi</groupId>
  102. <artifactId>poi-ooxml</artifactId>
  103. <version>${poi.version}</version>
  104. </dependency>
  105. <!-- velocity代码生成使用模板 -->
  106. <dependency>
  107. <groupId>org.apache.velocity</groupId>
  108. <artifactId>velocity-engine-core</artifactId>
  109. <version>${velocity.version}</version>
  110. </dependency>
  111. <!-- 阿里JSON解析器 -->
  112. <dependency>
  113. <groupId>com.alibaba.fastjson2</groupId>
  114. <artifactId>fastjson2</artifactId>
  115. <version>${fastjson.version}</version>
  116. </dependency>
  117. <!-- Token生成与解析-->
  118. <dependency>
  119. <groupId>io.jsonwebtoken</groupId>
  120. <artifactId>jjwt</artifactId>
  121. <version>${jwt.version}</version>
  122. </dependency>
  123. <!-- 验证码 -->
  124. <dependency>
  125. <groupId>pro.fessional</groupId>
  126. <artifactId>kaptcha</artifactId>
  127. <version>${kaptcha.version}</version>
  128. </dependency>
  129. <!-- 定时任务-->
  130. <dependency>
  131. <groupId>com.gqy</groupId>
  132. <artifactId>gqy-quartz</artifactId>
  133. <version>${gqy.version}</version>
  134. </dependency>
  135. <!-- 代码生成-->
  136. <dependency>
  137. <groupId>com.gqy</groupId>
  138. <artifactId>gqy-generator</artifactId>
  139. <version>${gqy.version}</version>
  140. </dependency>
  141. <!-- 核心模块-->
  142. <dependency>
  143. <groupId>com.gqy</groupId>
  144. <artifactId>gqy-framework</artifactId>
  145. <version>${gqy.version}</version>
  146. </dependency>
  147. <!-- 系统模块-->
  148. <dependency>
  149. <groupId>com.gqy</groupId>
  150. <artifactId>gqy-system</artifactId>
  151. <version>${gqy.version}</version>
  152. </dependency>
  153. <!-- 通用工具-->
  154. <dependency>
  155. <groupId>com.gqy</groupId>
  156. <artifactId>gqy-common</artifactId>
  157. <version>${gqy.version}</version>
  158. </dependency>
  159. </dependencies>
  160. </dependencyManagement>
  161. <modules>
  162. <module>gqy-admin</module>
  163. <module>gqy-framework</module>
  164. <module>gqy-system</module>
  165. <module>gqy-quartz</module>
  166. <module>gqy-generator</module>
  167. <module>gqy-common</module>
  168. </modules>
  169. <packaging>pom</packaging>
  170. <build>
  171. <plugins>
  172. <plugin>
  173. <groupId>org.apache.maven.plugins</groupId>
  174. <artifactId>maven-compiler-plugin</artifactId>
  175. <version>3.1</version>
  176. <configuration>
  177. <source>${java.version}</source>
  178. <target>${java.version}</target>
  179. <encoding>${project.build.sourceEncoding}</encoding>
  180. </configuration>
  181. </plugin>
  182. </plugins>
  183. </build>
  184. <repositories>
  185. <repository>
  186. <id>public</id>
  187. <name>aliyun nexus</name>
  188. <url>https://maven.aliyun.com/repository/public</url>
  189. <releases>
  190. <enabled>true</enabled>
  191. </releases>
  192. </repository>
  193. </repositories>
  194. <pluginRepositories>
  195. <pluginRepository>
  196. <id>public</id>
  197. <name>aliyun nexus</name>
  198. <url>https://maven.aliyun.com/repository/public</url>
  199. <releases>
  200. <enabled>true</enabled>
  201. </releases>
  202. <snapshots>
  203. <enabled>false</enabled>
  204. </snapshots>
  205. </pluginRepository>
  206. </pluginRepositories>
  207. </project>