pom.xml 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447
  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.siwei</groupId>
  7. <artifactId>siwei</artifactId>
  8. <version>3.6.5</version>
  9. <name>siwei</name>
  10. <description>四维微服务系统</description>
  11. <properties>
  12. <siwei.version>3.6.5</siwei.version>
  13. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  14. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  15. <java.version>1.8</java.version>
  16. <spring-boot.version>2.7.18</spring-boot.version>
  17. <spring-cloud.version>2021.0.9</spring-cloud.version>
  18. <spring-cloud-alibaba.version>2021.0.6.1</spring-cloud-alibaba.version>
  19. <spring-boot-admin.version>2.7.16</spring-boot-admin.version>
  20. <tobato.version>1.27.2</tobato.version>
  21. <kaptcha.version>2.3.3</kaptcha.version>
  22. <pagehelper.boot.version>2.0.0</pagehelper.boot.version>
  23. <druid.version>1.2.23</druid.version>
  24. <dynamic-ds.version>4.3.1</dynamic-ds.version>
  25. <commons.io.version>2.13.0</commons.io.version>
  26. <velocity.version>2.3</velocity.version>
  27. <fastjson.version>2.0.53</fastjson.version>
  28. <jjwt.version>0.9.1</jjwt.version>
  29. <minio.version>8.2.2</minio.version>
  30. <poi.version>4.1.2</poi.version>
  31. <springdoc.version>1.6.9</springdoc.version>
  32. <transmittable-thread-local.version>2.14.4</transmittable-thread-local.version>
  33. <!-- override dependency version -->
  34. <tomcat.version>9.0.96</tomcat.version>
  35. <logback.version>1.2.13</logback.version>
  36. <spring-framework.version>5.3.39</spring-framework.version>
  37. <org.postgresql.version>42.3.6</org.postgresql.version>
  38. <org.geotools.version>26.0</org.geotools.version>
  39. <org.locationtech.jts.version>1.19.0</org.locationtech.jts.version>
  40. <net.lingala.zip4j.version>2.11.5</net.lingala.zip4j.version>
  41. </properties>
  42. <!-- 依赖声明 -->
  43. <dependencyManagement>
  44. <dependencies>
  45. <!-- 覆盖SpringFramework的依赖配置-->
  46. <dependency>
  47. <groupId>org.springframework</groupId>
  48. <artifactId>spring-framework-bom</artifactId>
  49. <version>${spring-framework.version}</version>
  50. <type>pom</type>
  51. <scope>import</scope>
  52. </dependency>
  53. <!-- SpringCloud 微服务 -->
  54. <dependency>
  55. <groupId>org.springframework.cloud</groupId>
  56. <artifactId>spring-cloud-dependencies</artifactId>
  57. <version>${spring-cloud.version}</version>
  58. <type>pom</type>
  59. <scope>import</scope>
  60. </dependency>
  61. <!-- SpringCloud Alibaba 微服务 -->
  62. <dependency>
  63. <groupId>com.alibaba.cloud</groupId>
  64. <artifactId>spring-cloud-alibaba-dependencies</artifactId>
  65. <version>${spring-cloud-alibaba.version}</version>
  66. <type>pom</type>
  67. <scope>import</scope>
  68. </dependency>
  69. <!-- SpringBoot 依赖配置 -->
  70. <dependency>
  71. <groupId>org.springframework.boot</groupId>
  72. <artifactId>spring-boot-dependencies</artifactId>
  73. <version>${spring-boot.version}</version>
  74. <type>pom</type>
  75. <scope>import</scope>
  76. </dependency>
  77. <!-- 覆盖logback的依赖配置-->
  78. <dependency>
  79. <groupId>ch.qos.logback</groupId>
  80. <artifactId>logback-core</artifactId>
  81. <version>${logback.version}</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>ch.qos.logback</groupId>
  85. <artifactId>logback-classic</artifactId>
  86. <version>${logback.version}</version>
  87. </dependency>
  88. <!-- 覆盖tomcat的依赖配置-->
  89. <dependency>
  90. <groupId>org.apache.tomcat.embed</groupId>
  91. <artifactId>tomcat-embed-core</artifactId>
  92. <version>${tomcat.version}</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.apache.tomcat.embed</groupId>
  96. <artifactId>tomcat-embed-el</artifactId>
  97. <version>${tomcat.version}</version>
  98. </dependency>
  99. <dependency>
  100. <groupId>org.apache.tomcat.embed</groupId>
  101. <artifactId>tomcat-embed-websocket</artifactId>
  102. <version>${tomcat.version}</version>
  103. </dependency>
  104. <!-- FastDFS 分布式文件系统 -->
  105. <dependency>
  106. <groupId>com.github.tobato</groupId>
  107. <artifactId>fastdfs-client</artifactId>
  108. <version>${tobato.version}</version>
  109. </dependency>
  110. <!-- Springdoc webmvc 依赖配置 -->
  111. <dependency>
  112. <groupId>org.springdoc</groupId>
  113. <artifactId>springdoc-openapi-ui</artifactId>
  114. <version>${springdoc.version}</version>
  115. </dependency>
  116. <!-- 验证码 -->
  117. <dependency>
  118. <groupId>pro.fessional</groupId>
  119. <artifactId>kaptcha</artifactId>
  120. <version>${kaptcha.version}</version>
  121. </dependency>
  122. <!-- pagehelper 分页插件 -->
  123. <dependency>
  124. <groupId>com.github.pagehelper</groupId>
  125. <artifactId>pagehelper-spring-boot-starter</artifactId>
  126. <version>${pagehelper.boot.version}</version>
  127. </dependency>
  128. <!-- io常用工具类 -->
  129. <dependency>
  130. <groupId>commons-io</groupId>
  131. <artifactId>commons-io</artifactId>
  132. <version>${commons.io.version}</version>
  133. </dependency>
  134. <!-- excel工具 -->
  135. <dependency>
  136. <groupId>org.apache.poi</groupId>
  137. <artifactId>poi-ooxml</artifactId>
  138. <version>${poi.version}</version>
  139. </dependency>
  140. <!-- 代码生成使用模板 -->
  141. <dependency>
  142. <groupId>org.apache.velocity</groupId>
  143. <artifactId>velocity-engine-core</artifactId>
  144. <version>${velocity.version}</version>
  145. </dependency>
  146. <!-- JSON 解析器和生成器 -->
  147. <dependency>
  148. <groupId>com.alibaba.fastjson2</groupId>
  149. <artifactId>fastjson2</artifactId>
  150. <version>${fastjson.version}</version>
  151. </dependency>
  152. <!-- JWT -->
  153. <dependency>
  154. <groupId>io.jsonwebtoken</groupId>
  155. <artifactId>jjwt</artifactId>
  156. <version>${jjwt.version}</version>
  157. </dependency>
  158. <!-- 线程传递值 -->
  159. <dependency>
  160. <groupId>com.alibaba</groupId>
  161. <artifactId>transmittable-thread-local</artifactId>
  162. <version>${transmittable-thread-local.version}</version>
  163. </dependency>
  164. <!-- 核心模块 -->
  165. <dependency>
  166. <groupId>com.siwei</groupId>
  167. <artifactId>siwei-common-core</artifactId>
  168. <version>${siwei.version}</version>
  169. </dependency>
  170. <!-- 接口模块 -->
  171. <dependency>
  172. <groupId>com.siwei</groupId>
  173. <artifactId>siwei-common-swagger</artifactId>
  174. <version>${siwei.version}</version>
  175. </dependency>
  176. <!-- 安全模块 -->
  177. <dependency>
  178. <groupId>com.siwei</groupId>
  179. <artifactId>siwei-common-security</artifactId>
  180. <version>${siwei.version}</version>
  181. </dependency>
  182. <!-- 数据脱敏 -->
  183. <dependency>
  184. <groupId>com.siwei</groupId>
  185. <artifactId>siwei-common-sensitive</artifactId>
  186. <version>${siwei.version}</version>
  187. </dependency>
  188. <!-- 权限范围 -->
  189. <dependency>
  190. <groupId>com.siwei</groupId>
  191. <artifactId>siwei-common-datascope</artifactId>
  192. <version>${siwei.version}</version>
  193. </dependency>
  194. <!-- 多数据源 -->
  195. <dependency>
  196. <groupId>com.siwei</groupId>
  197. <artifactId>siwei-common-datasource</artifactId>
  198. <version>${siwei.version}</version>
  199. </dependency>
  200. <!-- 分布式事务 -->
  201. <dependency>
  202. <groupId>com.siwei</groupId>
  203. <artifactId>siwei-common-seata</artifactId>
  204. <version>${siwei.version}</version>
  205. </dependency>
  206. <!-- 日志记录 -->
  207. <dependency>
  208. <groupId>com.siwei</groupId>
  209. <artifactId>siwei-common-log</artifactId>
  210. <version>${siwei.version}</version>
  211. </dependency>
  212. <!-- 缓存服务 -->
  213. <dependency>
  214. <groupId>com.siwei</groupId>
  215. <artifactId>siwei-common-redis</artifactId>
  216. <version>${siwei.version}</version>
  217. </dependency>
  218. <!-- 系统接口 -->
  219. <dependency>
  220. <groupId>com.siwei</groupId>
  221. <artifactId>siwei-api-system</artifactId>
  222. <version>${siwei.version}</version>
  223. </dependency>
  224. <!-- 空间处理接口 -->
  225. <dependency>
  226. <groupId>com.siwei</groupId>
  227. <artifactId>siwei-api-spatial</artifactId>
  228. <version>${siwei.version}</version>
  229. </dependency>
  230. <dependency>
  231. <groupId>org.postgresql</groupId>
  232. <artifactId>postgresql</artifactId>
  233. <version>${org.postgresql.version}</version>
  234. </dependency>
  235. <!--geotools-->
  236. <dependency>
  237. <groupId>org.geotools</groupId>
  238. <artifactId>gt-main</artifactId>
  239. <version>${org.geotools.version}</version>
  240. </dependency>
  241. <dependency>
  242. <groupId>org.geotools</groupId>
  243. <artifactId>gt-cql</artifactId>
  244. <version>${org.geotools.version}</version>
  245. </dependency>
  246. <dependency>
  247. <groupId>org.geotools.jdbc</groupId>
  248. <artifactId>gt-jdbc-postgis</artifactId>
  249. <version>${org.geotools.version}</version>
  250. </dependency>
  251. <dependency>
  252. <groupId>org.geotools</groupId>
  253. <artifactId>gt-coverage</artifactId>
  254. <version>${org.geotools.version}</version>
  255. </dependency>
  256. <dependency>
  257. <groupId>org.geotools</groupId>
  258. <artifactId>gt-render</artifactId>
  259. <version>${org.geotools.version}</version>
  260. </dependency>
  261. <dependency>
  262. <groupId>org.geotools</groupId>
  263. <artifactId>gt-opengis</artifactId>
  264. <version>${org.geotools.version}</version>
  265. </dependency>
  266. <dependency>
  267. <groupId>org.geotools</groupId>
  268. <artifactId>gt-referencing</artifactId>
  269. <version>${org.geotools.version}</version>
  270. </dependency>
  271. <dependency>
  272. <groupId>org.geotools</groupId>
  273. <artifactId>gt-geojson</artifactId>
  274. <version>${org.geotools.version}</version>
  275. </dependency>
  276. <dependency>
  277. <groupId>org.geotools</groupId>
  278. <artifactId>gt-geotiff</artifactId>
  279. <version>${org.geotools.version}</version>
  280. </dependency>
  281. <dependency>
  282. <groupId>org.geotools</groupId>
  283. <artifactId>gt-swing</artifactId>
  284. <version>${org.geotools.version}</version>
  285. </dependency>
  286. <dependency>
  287. <groupId>org.geotools</groupId>
  288. <artifactId>gt-shapefile</artifactId>
  289. <version>${org.geotools.version}</version>
  290. </dependency>
  291. <dependency>
  292. <groupId>org.geotools</groupId>
  293. <artifactId>gt-tile-client</artifactId>
  294. <version>${org.geotools.version}</version>
  295. </dependency>
  296. <dependency>
  297. <groupId>org.geotools</groupId>
  298. <artifactId>gt-epsg-hsql</artifactId>
  299. <version>${org.geotools.version}</version>
  300. </dependency>
  301. <dependency>
  302. <groupId>org.locationtech.jts</groupId>
  303. <artifactId>jts-core</artifactId>
  304. <version>${org.locationtech.jts.version}</version>
  305. </dependency>
  306. <dependency>
  307. <groupId>net.lingala.zip4j</groupId>
  308. <artifactId>zip4j</artifactId>
  309. <version>${net.lingala.zip4j.version}</version>
  310. </dependency>
  311. </dependencies>
  312. </dependencyManagement>
  313. <modules>
  314. <module>siwei-auth</module>
  315. <module>siwei-gateway</module>
  316. <module>siwei-visual</module>
  317. <module>siwei-modules</module>
  318. <module>siwei-api</module>
  319. <module>siwei-common</module>
  320. </modules>
  321. <packaging>pom</packaging>
  322. <dependencies>
  323. <!-- bootstrap 启动器 -->
  324. <dependency>
  325. <groupId>org.springframework.cloud</groupId>
  326. <artifactId>spring-cloud-starter-bootstrap</artifactId>
  327. </dependency>
  328. </dependencies>
  329. <build>
  330. <plugins>
  331. <plugin>
  332. <groupId>org.apache.maven.plugins</groupId>
  333. <artifactId>maven-compiler-plugin</artifactId>
  334. <configuration>
  335. <source>${java.version}</source>
  336. <target>${java.version}</target>
  337. <encoding>${project.build.sourceEncoding}</encoding>
  338. </configuration>
  339. </plugin>
  340. </plugins>
  341. <pluginManagement>
  342. <plugins>
  343. <plugin>
  344. <groupId>org.springframework.boot</groupId>
  345. <artifactId>spring-boot-maven-plugin</artifactId>
  346. <version>${spring-boot.version}</version>
  347. <executions>
  348. <execution>
  349. <goals>
  350. <goal>repackage</goal>
  351. </goals>
  352. </execution>
  353. </executions>
  354. </plugin>
  355. </plugins>
  356. </pluginManagement>
  357. </build>
  358. <repositories>
  359. <repository>
  360. <id>public</id>
  361. <name>aliyun nexus</name>
  362. <url>https://maven.aliyun.com/repository/public</url>
  363. <releases>
  364. <enabled>true</enabled>
  365. </releases>
  366. </repository>
  367. <repository>
  368. <id>osgeo</id>
  369. <name>OSGeo Release Repository</name>
  370. <url>https://repo.osgeo.org/repository/release/</url>
  371. <snapshots>
  372. <enabled>false</enabled>
  373. </snapshots>
  374. <releases>
  375. <enabled>true</enabled>
  376. </releases>
  377. </repository>
  378. <repository>
  379. <id>osgeo-snapshot</id>
  380. <name>OSGeo Snapshot Repository</name>
  381. <url>https://repo.osgeo.org/repository/snapshot/</url>
  382. <snapshots>
  383. <enabled>true</enabled>
  384. </snapshots>
  385. <releases>
  386. <enabled>false</enabled>
  387. </releases>
  388. </repository>
  389. </repositories>
  390. <pluginRepositories>
  391. <pluginRepository>
  392. <id>public</id>
  393. <name>aliyun nexus</name>
  394. <url>https://maven.aliyun.com/repository/public</url>
  395. <releases>
  396. <enabled>true</enabled>
  397. </releases>
  398. <snapshots>
  399. <enabled>false</enabled>
  400. </snapshots>
  401. </pluginRepository>
  402. </pluginRepositories>
  403. </project>