pom.xml 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261
  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.goldenwater</groupId>
  7. <artifactId>goldenwater</artifactId>
  8. <version>3.9.2</version>
  9. <name>goldenwater</name>
  10. <url>http://www.goldenwater.vip</url>
  11. <description>北京金水管理系统</description>
  12. <properties>
  13. <goldenwater.version>3.9.2</goldenwater.version>
  14. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  15. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  16. <java.version>17</java.version>
  17. <spring-boot.version>4.0.3</spring-boot.version>
  18. <mybatis-spring-boot.version>4.0.1</mybatis-spring-boot.version>
  19. <druid.version>1.2.28</druid.version>
  20. <yauaa.version>8.1.0</yauaa.version>
  21. <kaptcha.version>2.3.3</kaptcha.version>
  22. <pagehelper.boot.version>2.1.1</pagehelper.boot.version>
  23. <fastjson.version>2.0.61</fastjson.version>
  24. <oshi.version>6.10.0</oshi.version>
  25. <commons.io.version>2.21.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. <jaxb-api.version>2.3.1</jaxb-api.version>
  30. <springdoc.version>3.0.2</springdoc.version>
  31. <dameng.version>8.1.3.140</dameng.version>
  32. <lombok.version>1.18.36</lombok.version>
  33. </properties>
  34. <!-- 依赖声明 -->
  35. <dependencyManagement>
  36. <dependencies>
  37. <!-- SpringBoot的依赖配置-->
  38. <dependency>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-dependencies</artifactId>
  41. <version>${spring-boot.version}</version>
  42. <type>pom</type>
  43. <scope>import</scope>
  44. </dependency>
  45. <!-- 阿里数据库连接池 -->
  46. <dependency>
  47. <groupId>com.alibaba</groupId>
  48. <artifactId>druid-spring-boot-4-starter</artifactId>
  49. <version>${druid.version}</version>
  50. </dependency>
  51. <!-- 解析客户端操作系统、浏览器等 -->
  52. <dependency>
  53. <groupId>nl.basjes.parse.useragent</groupId>
  54. <artifactId>yauaa</artifactId>
  55. <version>${yauaa.version}</version>
  56. </dependency>
  57. <!-- pagehelper 分页插件 -->
  58. <dependency>
  59. <groupId>com.github.pagehelper</groupId>
  60. <artifactId>pagehelper-spring-boot-starter</artifactId>
  61. <version>${pagehelper.boot.version}</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.mybatis.spring.boot</groupId>
  65. <artifactId>mybatis-spring-boot-starter</artifactId>
  66. <version>${mybatis-spring-boot.version}</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>javax.xml.bind</groupId>
  70. <artifactId>jaxb-api</artifactId>
  71. <version>${jaxb-api.version}</version>
  72. </dependency>
  73. <!-- 获取系统信息 -->
  74. <dependency>
  75. <groupId>com.github.oshi</groupId>
  76. <artifactId>oshi-core</artifactId>
  77. <version>${oshi.version}</version>
  78. </dependency>
  79. <!-- spring-doc -->
  80. <dependency>
  81. <groupId>org.springdoc</groupId>
  82. <artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
  83. <version>${springdoc.version}</version>
  84. </dependency>
  85. <!-- io常用工具类 -->
  86. <dependency>
  87. <groupId>commons-io</groupId>
  88. <artifactId>commons-io</artifactId>
  89. <version>${commons.io.version}</version>
  90. </dependency>
  91. <!-- 达梦数据库驱动 -->
  92. <dependency>
  93. <groupId>com.dameng</groupId>
  94. <artifactId>DmJdbcDriver18</artifactId>
  95. <version>${dameng.version}</version>
  96. </dependency>
  97. <!-- excel工具 -->
  98. <dependency>
  99. <groupId>org.apache.poi</groupId>
  100. <artifactId>poi-ooxml</artifactId>
  101. <version>${poi.version}</version>
  102. </dependency>
  103. <!-- velocity代码生成使用模板 -->
  104. <dependency>
  105. <groupId>org.apache.velocity</groupId>
  106. <artifactId>velocity-engine-core</artifactId>
  107. <version>${velocity.version}</version>
  108. </dependency>
  109. <!-- 阿里JSON解析器 -->
  110. <dependency>
  111. <groupId>com.alibaba.fastjson2</groupId>
  112. <artifactId>fastjson2</artifactId>
  113. <version>${fastjson.version}</version>
  114. </dependency>
  115. <!-- Token生成与解析-->
  116. <dependency>
  117. <groupId>io.jsonwebtoken</groupId>
  118. <artifactId>jjwt</artifactId>
  119. <version>${jwt.version}</version>
  120. </dependency>
  121. <!-- 验证码 -->
  122. <dependency>
  123. <groupId>pro.fessional</groupId>
  124. <artifactId>kaptcha</artifactId>
  125. <version>${kaptcha.version}</version>
  126. </dependency>
  127. <!-- Lombok -->
  128. <dependency>
  129. <groupId>org.projectlombok</groupId>
  130. <artifactId>lombok</artifactId>
  131. <version>${lombok.version}</version>
  132. <scope>provided</scope>
  133. </dependency>
  134. <!-- 定时任务-->
  135. <dependency>
  136. <groupId>com.goldenwater</groupId>
  137. <artifactId>gw-quartz</artifactId>
  138. <version>${goldenwater.version}</version>
  139. </dependency>
  140. <!-- 核心模块-->
  141. <dependency>
  142. <groupId>com.goldenwater</groupId>
  143. <artifactId>gw-framework</artifactId>
  144. <version>${goldenwater.version}</version>
  145. </dependency>
  146. <!-- 系统模块-->
  147. <dependency>
  148. <groupId>com.goldenwater</groupId>
  149. <artifactId>gw-system</artifactId>
  150. <version>${goldenwater.version}</version>
  151. </dependency>
  152. <!-- 通用工具-->
  153. <dependency>
  154. <groupId>com.goldenwater</groupId>
  155. <artifactId>gw-common</artifactId>
  156. <version>${goldenwater.version}</version>
  157. </dependency>
  158. <!-- 达梦数据库驱动 -->
  159. <dependency>
  160. <groupId>com.dameng</groupId>
  161. <artifactId>DmJdbcDriver18</artifactId>
  162. <version>${dameng.version}</version>
  163. </dependency>
  164. <!-- 业务模块-->
  165. <dependency>
  166. <groupId>com.goldenwater</groupId>
  167. <artifactId>gw-slgc</artifactId>
  168. <version>${goldenwater.version}</version>
  169. </dependency>
  170. </dependencies>
  171. </dependencyManagement>
  172. <modules>
  173. <module>gw-admin</module>
  174. <module>gw-framework</module>
  175. <module>gw-system</module>
  176. <module>gw-quartz</module>
  177. <module>gw-common</module>
  178. <module>gw-slgc</module>
  179. </modules>
  180. <packaging>pom</packaging>
  181. <build>
  182. <plugins>
  183. <plugin>
  184. <groupId>org.apache.maven.plugins</groupId>
  185. <artifactId>maven-compiler-plugin</artifactId>
  186. <version>3.13.0</version>
  187. <configuration>
  188. <parameters>true</parameters>
  189. <source>${java.version}</source>
  190. <target>${java.version}</target>
  191. <encoding>${project.build.sourceEncoding}</encoding>
  192. </configuration>
  193. </plugin>
  194. <plugin>
  195. <groupId>org.springframework.boot</groupId>
  196. <artifactId>spring-boot-maven-plugin</artifactId>
  197. <version>${spring-boot.version}</version>
  198. </plugin>
  199. </plugins>
  200. </build>
  201. <repositories>
  202. <repository>
  203. <id>public</id>
  204. <name>aliyun nexus</name>
  205. <url>https://maven.aliyun.com/repository/public</url>
  206. <releases>
  207. <enabled>true</enabled>
  208. </releases>
  209. </repository>
  210. <repository>
  211. <id>dameng</id>
  212. <name>Dameng Maven Repository</name>
  213. <url>https://mvnrepository.com/artifact/com.dameng</url>
  214. <releases>
  215. <enabled>true</enabled>
  216. </releases>
  217. </repository>
  218. </repositories>
  219. <pluginRepositories>
  220. <pluginRepository>
  221. <id>public</id>
  222. <name>aliyun nexus</name>
  223. <url>https://maven.aliyun.com/repository/public</url>
  224. <releases>
  225. <enabled>true</enabled>
  226. </releases>
  227. <snapshots>
  228. <enabled>false</enabled>
  229. </snapshots>
  230. </pluginRepository>
  231. </pluginRepositories>
  232. </project>