pom.xml 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281
  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. <parent>
  6. <artifactId>onemap-modules</artifactId>
  7. <groupId>com.onemap</groupId>
  8. <version>3.6.1</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>onemap-modules-spotoverlap</artifactId>
  12. <properties>
  13. <org.geotools.version>24.0</org.geotools.version>
  14. <org.postgresql.version>42.3.6</org.postgresql.version>
  15. </properties>
  16. <dependencies>
  17. <!-- SpringCloud Alibaba Nacos -->
  18. <dependency>
  19. <groupId>com.alibaba.cloud</groupId>
  20. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  21. </dependency>
  22. <!-- SpringCloud Alibaba Nacos Config -->
  23. <dependency>
  24. <groupId>com.alibaba.cloud</groupId>
  25. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  26. </dependency>
  27. <!-- SpringCloud Alibaba Sentinel -->
  28. <dependency>
  29. <groupId>com.alibaba.cloud</groupId>
  30. <artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
  31. </dependency>
  32. <!-- SpringBoot Actuator -->
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-starter-actuator</artifactId>
  36. </dependency>
  37. <!-- Swagger UI -->
  38. <dependency>
  39. <groupId>io.springfox</groupId>
  40. <artifactId>springfox-swagger-ui</artifactId>
  41. <version>${swagger.fox.version}</version>
  42. </dependency>
  43. <!-- Mysql Connector -->
  44. <dependency>
  45. <groupId>mysql</groupId>
  46. <artifactId>mysql-connector-java</artifactId>
  47. </dependency>
  48. <!-- RuoYi Common DataSource -->
  49. <dependency>
  50. <groupId>com.onemap</groupId>
  51. <artifactId>onemap-common-datasource</artifactId>
  52. </dependency>
  53. <!-- RuoYi Common DataScope -->
  54. <dependency>
  55. <groupId>com.onemap</groupId>
  56. <artifactId>onemap-common-datascope</artifactId>
  57. </dependency>
  58. <!-- RuoYi Common Log -->
  59. <dependency>
  60. <groupId>com.onemap</groupId>
  61. <artifactId>onemap-common-log</artifactId>
  62. </dependency>
  63. <!-- RuoYi Common Swagger -->
  64. <dependency>
  65. <groupId>com.onemap</groupId>
  66. <artifactId>onemap-common-swagger</artifactId>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.apache.ant</groupId>
  70. <artifactId>ant</artifactId>
  71. <version>1.10.5</version>
  72. </dependency>
  73. <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpcore -->
  74. <dependency>
  75. <groupId>org.apache.httpcomponents</groupId>
  76. <artifactId>httpcore</artifactId>
  77. <version>4.4.10</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.apache.httpcomponents</groupId>
  81. <artifactId>httpmime</artifactId>
  82. <version>4.5.6</version>
  83. </dependency>
  84. <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient -->
  85. <dependency>
  86. <groupId>org.apache.httpcomponents</groupId>
  87. <artifactId>httpclient</artifactId>
  88. <version>4.5.6</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>com.google.guava</groupId>
  92. <artifactId>guava</artifactId>
  93. <version>31.1-jre</version>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.springframework</groupId>
  97. <artifactId>spring-mock</artifactId>
  98. <version>2.0.8</version>
  99. </dependency>
  100. <dependency>
  101. <groupId>cn.hutool</groupId>
  102. <artifactId>hutool-all</artifactId>
  103. <version>5.7.13</version>
  104. </dependency>
  105. <!-- 解压rar -->
  106. <dependency>
  107. <groupId>com.github.junrar</groupId>
  108. <artifactId>junrar</artifactId>
  109. <version>0.7</version>
  110. </dependency>
  111. <!--zip4j依赖,解压zip压缩-->
  112. <dependency>
  113. <groupId>net.lingala.zip4j</groupId>
  114. <artifactId>zip4j</artifactId>
  115. <version>1.3.2</version>
  116. </dependency>
  117. <dependency>
  118. <groupId>org.springframework.boot</groupId>
  119. <artifactId>spring-boot-starter-websocket</artifactId>
  120. </dependency>
  121. <dependency>
  122. <groupId>org.geotools</groupId>
  123. <artifactId>gt-main</artifactId>
  124. <version>${org.geotools.version}</version>
  125. </dependency>
  126. <dependency>
  127. <groupId>org.geotools</groupId>
  128. <artifactId>gt-cql</artifactId>
  129. <version>${org.geotools.version}</version>
  130. </dependency>
  131. <dependency>
  132. <groupId>org.geotools.jdbc</groupId>
  133. <artifactId>gt-jdbc-postgis</artifactId>
  134. <version>${org.geotools.version}</version>
  135. </dependency>
  136. <dependency>
  137. <groupId>org.geotools</groupId>
  138. <artifactId>gt-coverage</artifactId>
  139. <version>${org.geotools.version}</version>
  140. </dependency>
  141. <dependency>
  142. <groupId>org.geotools</groupId>
  143. <artifactId>gt-render</artifactId>
  144. <version>${org.geotools.version}</version>
  145. </dependency>
  146. <dependency>
  147. <groupId>org.geotools</groupId>
  148. <artifactId>gt-opengis</artifactId>
  149. <version>${org.geotools.version}</version>
  150. </dependency>
  151. <dependency>
  152. <groupId>org.geotools</groupId>
  153. <artifactId>gt-referencing</artifactId>
  154. <version>${org.geotools.version}</version>
  155. </dependency>
  156. <dependency>
  157. <groupId>org.geotools</groupId>
  158. <artifactId>gt-geojson</artifactId>
  159. <version>${org.geotools.version}</version>
  160. </dependency>
  161. <dependency>
  162. <groupId>org.geotools</groupId>
  163. <artifactId>gt-geotiff</artifactId>
  164. <version>${org.geotools.version}</version>
  165. </dependency>
  166. <dependency>
  167. <groupId>org.geotools</groupId>
  168. <artifactId>gt-swing</artifactId>
  169. <version>${org.geotools.version}</version>
  170. </dependency>
  171. <dependency>
  172. <groupId>org.geotools</groupId>
  173. <artifactId>gt-shapefile</artifactId>
  174. <version>${org.geotools.version}</version>
  175. </dependency>
  176. <dependency>
  177. <groupId>org.geotools</groupId>
  178. <artifactId>gt-tile-client</artifactId>
  179. <version>${org.geotools.version}</version>
  180. </dependency>
  181. <dependency>
  182. <groupId>org.geotools</groupId>
  183. <artifactId>gt-epsg-hsql</artifactId>
  184. <version>${org.geotools.version}</version>
  185. </dependency>
  186. <dependency>
  187. <groupId>org.locationtech.jts</groupId>
  188. <artifactId>jts-core</artifactId>
  189. <version>1.19.0</version>
  190. </dependency>
  191. <dependency>
  192. <groupId>javax.media</groupId>
  193. <artifactId>jai-core</artifactId>
  194. <version>1.1.3</version> <!-- 或者最新版本 -->
  195. </dependency>
  196. <dependency>
  197. <groupId>org.apache.httpcomponents</groupId>
  198. <artifactId>httpclient</artifactId>
  199. <version>4.5.13</version> <!-- 版本可以根据需要调整 -->
  200. </dependency>
  201. <dependency>
  202. <groupId>org.apache.httpcomponents</groupId>
  203. <artifactId>httpcore</artifactId>
  204. <version>4.4.13</version> <!-- 版本可以根据需要调整 -->
  205. </dependency>
  206. <dependency>
  207. <groupId>org.codehaus.jackson</groupId>
  208. <artifactId>jackson-core-asl</artifactId>
  209. <version>1.9.13</version>
  210. </dependency>
  211. <dependency>
  212. <groupId>com.google.code.gson</groupId>
  213. <artifactId>gson</artifactId>
  214. <version>2.8.9</version>
  215. </dependency>
  216. <dependency>
  217. <groupId>org.xerial</groupId>
  218. <artifactId>sqlite-jdbc</artifactId>
  219. <version>3.47.1.0</version>
  220. </dependency>
  221. </dependencies>
  222. <repositories>
  223. <repository>
  224. <id>osgeo</id>
  225. <name>OSGeo Release Repository</name>
  226. <url>https://repo.osgeo.org/repository/release/</url>
  227. <snapshots>
  228. <enabled>false</enabled>
  229. </snapshots>
  230. <releases>
  231. <enabled>true</enabled>
  232. </releases>
  233. </repository>
  234. <repository>
  235. <id>osgeo-snapshot</id>
  236. <name>OSGeo Snapshot Repository</name>
  237. <url>https://repo.osgeo.org/repository/snapshot/</url>
  238. <snapshots>
  239. <enabled>true</enabled>
  240. </snapshots>
  241. <releases>
  242. <enabled>false</enabled>
  243. </releases>
  244. </repository>
  245. </repositories>
  246. <build>
  247. <finalName>${project.artifactId}</finalName>
  248. <plugins>
  249. <plugin>
  250. <groupId>org.springframework.boot</groupId>
  251. <artifactId>spring-boot-maven-plugin</artifactId>
  252. <version>2.6.2</version>
  253. <executions>
  254. <execution>
  255. <goals>
  256. <goal>repackage</goal>
  257. </goals>
  258. </execution>
  259. </executions>
  260. </plugin>
  261. </plugins>
  262. </build>
  263. </project>