pom.xml 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252
  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-apply</artifactId>
  12. <properties>
  13. <org.geotools.version>26.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. <!--geotools-->
  122. <dependency>
  123. <groupId>org.geotools</groupId>
  124. <artifactId>gt-main</artifactId>
  125. <version>${org.geotools.version}</version>
  126. </dependency>
  127. <dependency>
  128. <groupId>org.geotools</groupId>
  129. <artifactId>gt-cql</artifactId>
  130. <version>${org.geotools.version}</version>
  131. </dependency>
  132. <dependency>
  133. <groupId>org.geotools.jdbc</groupId>
  134. <artifactId>gt-jdbc-postgis</artifactId>
  135. <version>${org.geotools.version}</version>
  136. </dependency>
  137. <dependency>
  138. <groupId>org.geotools</groupId>
  139. <artifactId>gt-coverage</artifactId>
  140. <version>${org.geotools.version}</version>
  141. </dependency>
  142. <dependency>
  143. <groupId>org.geotools</groupId>
  144. <artifactId>gt-render</artifactId>
  145. <version>${org.geotools.version}</version>
  146. </dependency>
  147. <dependency>
  148. <groupId>org.geotools</groupId>
  149. <artifactId>gt-opengis</artifactId>
  150. <version>${org.geotools.version}</version>
  151. </dependency>
  152. <dependency>
  153. <groupId>org.geotools</groupId>
  154. <artifactId>gt-referencing</artifactId>
  155. <version>${org.geotools.version}</version>
  156. </dependency>
  157. <dependency>
  158. <groupId>org.geotools</groupId>
  159. <artifactId>gt-geojson</artifactId>
  160. <version>${org.geotools.version}</version>
  161. </dependency>
  162. <dependency>
  163. <groupId>org.geotools</groupId>
  164. <artifactId>gt-geotiff</artifactId>
  165. <version>${org.geotools.version}</version>
  166. </dependency>
  167. <dependency>
  168. <groupId>org.geotools</groupId>
  169. <artifactId>gt-swing</artifactId>
  170. <version>${org.geotools.version}</version>
  171. </dependency>
  172. <dependency>
  173. <groupId>org.geotools</groupId>
  174. <artifactId>gt-shapefile</artifactId>
  175. <version>${org.geotools.version}</version>
  176. </dependency>
  177. <dependency>
  178. <groupId>org.geotools</groupId>
  179. <artifactId>gt-tile-client</artifactId>
  180. <version>${org.geotools.version}</version>
  181. </dependency>
  182. <dependency>
  183. <groupId>org.geotools</groupId>
  184. <artifactId>gt-epsg-hsql</artifactId>
  185. <version>${org.geotools.version}</version>
  186. </dependency>
  187. <dependency>
  188. <groupId>org.locationtech.jts</groupId>
  189. <artifactId>jts-core</artifactId>
  190. <version>1.19.0</version>
  191. </dependency>
  192. </dependencies>
  193. <repositories>
  194. <repository>
  195. <id>osgeo</id>
  196. <name>OSGeo Release Repository</name>
  197. <url>https://repo.osgeo.org/repository/release/</url>
  198. <snapshots>
  199. <enabled>false</enabled>
  200. </snapshots>
  201. <releases>
  202. <enabled>true</enabled>
  203. </releases>
  204. </repository>
  205. <repository>
  206. <id>osgeo-snapshot</id>
  207. <name>OSGeo Snapshot Repository</name>
  208. <url>https://repo.osgeo.org/repository/snapshot/</url>
  209. <snapshots>
  210. <enabled>true</enabled>
  211. </snapshots>
  212. <releases>
  213. <enabled>false</enabled>
  214. </releases>
  215. </repository>
  216. </repositories>
  217. <build>
  218. <finalName>${project.artifactId}</finalName>
  219. <plugins>
  220. <plugin>
  221. <groupId>org.springframework.boot</groupId>
  222. <artifactId>spring-boot-maven-plugin</artifactId>
  223. <version>2.6.2</version>
  224. <executions>
  225. <execution>
  226. <goals>
  227. <goal>repackage</goal>
  228. </goals>
  229. </execution>
  230. </executions>
  231. </plugin>
  232. </plugins>
  233. </build>
  234. </project>