pom.xml 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319
  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-vector</artifactId>
  12. <dependencies>
  13. <!--mongodb依赖-->
  14. <dependency>
  15. <groupId>org.springframework.boot</groupId>
  16. <artifactId>spring-boot-starter-data-mongodb</artifactId>
  17. </dependency>
  18. <!--ucanaccess-->
  19. <dependency>
  20. <groupId>net.sf.ucanaccess</groupId>
  21. <artifactId>ucanaccess</artifactId>
  22. <version>5.0.1</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.hsqldb</groupId>
  26. <artifactId>hsqldb</artifactId>
  27. <version>2.3.0</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.healthmarketscience.jackcess</groupId>
  31. <artifactId>jackcess</artifactId>
  32. <version>3.0.1</version>
  33. </dependency>
  34. <!-- SpringCloud Alibaba Nacos -->
  35. <dependency>
  36. <groupId>com.alibaba.cloud</groupId>
  37. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  38. </dependency>
  39. <!-- SpringCloud Alibaba Nacos Config -->
  40. <dependency>
  41. <groupId>com.alibaba.cloud</groupId>
  42. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  43. </dependency>
  44. <!-- SpringCloud Alibaba Sentinel -->
  45. <dependency>
  46. <groupId>com.alibaba.cloud</groupId>
  47. <artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
  48. </dependency>
  49. <!-- Sentinel Datasource Nacos -->
  50. <dependency>
  51. <groupId>com.alibaba.csp</groupId>
  52. <artifactId>sentinel-datasource-nacos</artifactId>
  53. </dependency>
  54. <!-- SpringBoot Actuator -->
  55. <dependency>
  56. <groupId>org.springframework.boot</groupId>
  57. <artifactId>spring-boot-starter-actuator</artifactId>
  58. </dependency>
  59. <!-- RuoYi Common Redis-->
  60. <dependency>
  61. <groupId>com.onemap</groupId>
  62. <artifactId>onemap-common-redis</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.gdal.jni</groupId>
  66. <version>3.1.0</version>
  67. <artifactId>gdal-jni</artifactId>
  68. <scope>system</scope>
  69. <systemPath>${project.basedir}/lib/gdal.jar</systemPath>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.json.simple</groupId>
  73. <version>1.1.1</version>
  74. <artifactId>json-simple</artifactId>
  75. <scope>system</scope>
  76. <systemPath>${project.basedir}/lib/json-simple-1.1.1.jar</systemPath>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.springframework.boot</groupId>
  80. <artifactId>spring-boot-starter-web</artifactId>
  81. </dependency>
  82. <dependency>
  83. <groupId>org.springframework.boot</groupId>
  84. <artifactId>spring-boot-starter-test</artifactId>
  85. <scope>test</scope>
  86. </dependency>
  87. <dependency>
  88. <groupId>org.freemarker</groupId>
  89. <artifactId>freemarker</artifactId>
  90. <version>2.3.31</version>
  91. </dependency>
  92. <dependency>
  93. <groupId>com.alibaba</groupId>
  94. <artifactId>fastjson</artifactId>
  95. <version>1.2.50</version>
  96. </dependency>
  97. <dependency>
  98. <groupId>com.sw</groupId>
  99. <artifactId>wordpdf</artifactId>
  100. <version>1.0.0</version>
  101. </dependency>
  102. <!-- 解压zip -->
  103. <dependency>
  104. <groupId>org.apache.ant</groupId>
  105. <artifactId>ant</artifactId>
  106. <version>1.8.0</version>
  107. </dependency>
  108. <!-- 解压rar -->
  109. <dependency>
  110. <groupId>com.github.junrar</groupId>
  111. <artifactId>junrar</artifactId>
  112. <version>4.0.0</version>
  113. </dependency>
  114. <dependency>
  115. <groupId>commons-codec</groupId>
  116. <artifactId>commons-codec</artifactId>
  117. <version>1.13</version>
  118. </dependency>
  119. <!-- mybatis-plus -->
  120. <dependency>
  121. <groupId>com.baomidou</groupId>
  122. <artifactId>mybatis-plus-boot-starter</artifactId>
  123. <version>3.2.0</version>
  124. </dependency>
  125. <dependency>
  126. <groupId>com.alibaba</groupId>
  127. <artifactId>druid</artifactId>
  128. <version>1.1.10</version>
  129. </dependency>
  130. <dependency>
  131. <groupId>org.apache.commons</groupId>
  132. <artifactId>commons-lang3</artifactId>
  133. <version>3.8.1</version>
  134. </dependency>
  135. <dependency>
  136. <groupId>com.alibaba</groupId>
  137. <artifactId>druid</artifactId>
  138. <version>1.2.14</version>
  139. </dependency>
  140. <!-- ejml -->
  141. <dependency>
  142. <groupId>ejml-core</groupId>
  143. <artifactId>core</artifactId>
  144. <scope>system</scope>
  145. <version>0.39</version>
  146. <systemPath>${project.basedir}/lib/ejml-core-0.39.jar</systemPath>
  147. </dependency>
  148. <dependency>
  149. <groupId>ejml-ddense</groupId>
  150. <artifactId>core</artifactId>
  151. <scope>system</scope>
  152. <version>0.32</version>
  153. <systemPath>${project.basedir}/lib/ejml-ddense-0.32.jar</systemPath>
  154. </dependency>
  155. <!-- geotools -->
  156. <dependency>
  157. <groupId>gt-api</groupId>
  158. <artifactId>gt-api</artifactId>
  159. <scope>system</scope>
  160. <version>19.2</version>
  161. <systemPath>${project.basedir}/lib/gt-api-19.2.jar</systemPath>
  162. </dependency>
  163. <dependency>
  164. <groupId>gt-data</groupId>
  165. <artifactId>gt-data</artifactId>
  166. <scope>system</scope>
  167. <version>19.2</version>
  168. <systemPath>${project.basedir}/lib/gt-data-19.2.jar</systemPath>
  169. </dependency>
  170. <dependency>
  171. <groupId>gt-geotools</groupId>
  172. <artifactId>geojson</artifactId>
  173. <scope>system</scope>
  174. <version>19.2</version>
  175. <systemPath>${project.basedir}/lib/gt-geojson-19.2.jar</systemPath>
  176. </dependency>
  177. <dependency>
  178. <groupId>gt-main</groupId>
  179. <artifactId>gt-main</artifactId>
  180. <scope>system</scope>
  181. <version>19.2</version>
  182. <systemPath>${project.basedir}/lib/gt-main-19.2.jar</systemPath>
  183. </dependency>
  184. <dependency>
  185. <groupId>gt-metadata</groupId>
  186. <artifactId>gt-metadata</artifactId>
  187. <scope>system</scope>
  188. <version>19.2</version>
  189. <systemPath>${project.basedir}/lib/gt-metadata-19.2.jar</systemPath>
  190. </dependency>
  191. <dependency>
  192. <groupId>gt-opengis</groupId>
  193. <artifactId>gt-opengis</artifactId>
  194. <scope>system</scope>
  195. <version>19.2</version>
  196. <systemPath>${project.basedir}/lib/gt-opengis-19.2.jar</systemPath>
  197. </dependency>
  198. <dependency>
  199. <groupId>gt-referencing</groupId>
  200. <artifactId>gt-referencing</artifactId>
  201. <scope>system</scope>
  202. <version>19.2</version>
  203. <systemPath>${project.basedir}/lib/gt-referencing-19.2.jar</systemPath>
  204. </dependency>
  205. <dependency>
  206. <groupId>gt-render</groupId>
  207. <artifactId>gt-render</artifactId>
  208. <scope>system</scope>
  209. <version>19.2</version>
  210. <systemPath>${project.basedir}/lib/gt-render-19.2.jar</systemPath>
  211. </dependency>
  212. <dependency>
  213. <groupId>gt-shapefile</groupId>
  214. <artifactId>gt-shapefile</artifactId>
  215. <scope>system</scope>
  216. <version>19.2</version>
  217. <systemPath>${project.basedir}/lib/gt-shapefile-19.2.jar</systemPath>
  218. </dependency>
  219. <dependency>
  220. <groupId>gt-jts</groupId>
  221. <artifactId>gt-jts</artifactId>
  222. <scope>system</scope>
  223. <version>1.13</version>
  224. <systemPath>${project.basedir}/lib/jts-1.13.jar</systemPath>
  225. </dependency>
  226. <dependency>
  227. <groupId>gt-jsr</groupId>
  228. <artifactId>gt-jsr</artifactId>
  229. <scope>system</scope>
  230. <version>1.0</version>
  231. <systemPath>${project.basedir}/lib/jsr-275-1.0-beta-2.jar</systemPath>
  232. </dependency>
  233. <dependency>
  234. <groupId>json</groupId>
  235. <artifactId>json</artifactId>
  236. <scope>system</scope>
  237. <version>1.1</version>
  238. <systemPath>${project.basedir}/lib/json-simple-1.1.jar</systemPath>
  239. </dependency>
  240. <dependency>
  241. <groupId>org.locationtech.jts</groupId>
  242. <artifactId>jts-core</artifactId>
  243. <version>1.17.1</version>
  244. </dependency>
  245. <dependency>
  246. <groupId>org.geotools</groupId>
  247. <artifactId>gt-main</artifactId>
  248. <version>28-SNAPSHOT</version>
  249. </dependency>
  250. <dependency>
  251. <groupId>org.geotools</groupId>
  252. <artifactId>gt-epsg-hsql</artifactId>
  253. <version>28-SNAPSHOT</version>
  254. </dependency>
  255. <dependency>
  256. <groupId>org.geotools.jdbc</groupId>
  257. <artifactId>gt-jdbc-mysql</artifactId>
  258. <version>28-SNAPSHOT</version>
  259. </dependency>
  260. <dependency>
  261. <groupId>org.hsqldb</groupId>
  262. <artifactId>hsqldb</artifactId>
  263. <version>2.5.2</version>
  264. </dependency>
  265. </dependencies>
  266. <repositories>
  267. <repository>
  268. <id>osgeo</id>
  269. <name>OSGeo Release Repository</name>
  270. <url>https://repo.osgeo.org/repository/release/</url>
  271. <snapshots>
  272. <enabled>false</enabled>
  273. </snapshots>
  274. <releases>
  275. <enabled>true</enabled>
  276. </releases>
  277. </repository>
  278. <repository>
  279. <id>osgeo-snapshot</id>
  280. <name>OSGeo Snapshot Repository</name>
  281. <url>https://repo.osgeo.org/repository/snapshot/</url>
  282. <snapshots>
  283. <enabled>true</enabled>
  284. </snapshots>
  285. <releases>
  286. <enabled>false</enabled>
  287. </releases>
  288. </repository>
  289. </repositories>
  290. <build>
  291. <finalName>${project.artifactId}</finalName>
  292. <plugins>
  293. <plugin>
  294. <configuration>
  295. <includeSystemScope>true</includeSystemScope>
  296. <fork>true</fork> <!--重要-->
  297. </configuration>
  298. <groupId>org.springframework.boot</groupId>
  299. <artifactId>spring-boot-maven-plugin</artifactId>
  300. <version>2.6.2</version>
  301. <executions>
  302. <execution>
  303. <goals>
  304. <goal>repackage</goal>
  305. </goals>
  306. </execution>
  307. </executions>
  308. </plugin>
  309. </plugins>
  310. </build>
  311. </project>