pom.xml 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://maven.apache.org/POM/4.0.0"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <groupId>com.onemap</groupId>
  7. <artifactId>onemap-modules</artifactId>
  8. <version>3.6.1</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>onemap-modules-file</artifactId>
  12. <description>
  13. onemap-modules-file文件服务
  14. </description>
  15. <dependencies>
  16. <!-- RuoYi Common DataSource -->
  17. <dependency>
  18. <groupId>com.onemap</groupId>
  19. <artifactId>onemap-common-datasource</artifactId>
  20. </dependency>
  21. <!-- RuoYi Common DataScope -->
  22. <dependency>
  23. <groupId>com.onemap</groupId>
  24. <artifactId>onemap-common-datascope</artifactId>
  25. </dependency>
  26. <!-- SpringCloud Alibaba Nacos -->
  27. <dependency>
  28. <groupId>com.alibaba.cloud</groupId>
  29. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  30. </dependency>
  31. <!-- SpringCloud Alibaba Nacos Config -->
  32. <dependency>
  33. <groupId>com.alibaba.cloud</groupId>
  34. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  35. </dependency>
  36. <!-- SpringCloud Alibaba Sentinel -->
  37. <dependency>
  38. <groupId>com.alibaba.cloud</groupId>
  39. <artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
  40. </dependency>
  41. <!-- SpringBoot Actuator -->
  42. <dependency>
  43. <groupId>org.springframework.boot</groupId>
  44. <artifactId>spring-boot-starter-actuator</artifactId>
  45. </dependency>
  46. <!-- FastDFS -->
  47. <dependency>
  48. <groupId>com.github.tobato</groupId>
  49. <artifactId>fastdfs-client</artifactId>
  50. </dependency>
  51. <!-- Minio -->
  52. <dependency>
  53. <groupId>io.minio</groupId>
  54. <artifactId>minio</artifactId>
  55. <version>${minio.version}</version>
  56. </dependency>
  57. <!-- 解压rar -->
  58. <dependency>
  59. <groupId>com.github.junrar</groupId>
  60. <artifactId>junrar</artifactId>
  61. <version>0.7</version>
  62. </dependency>
  63. <!-- 远程调用 -->
  64. <dependency>
  65. <groupId>org.springframework.cloud</groupId>
  66. <artifactId>spring-cloud-starter-openfeign</artifactId>
  67. </dependency>
  68. <!--zip4j依赖,解压zip压缩-->
  69. <dependency>
  70. <groupId>net.lingala.zip4j</groupId>
  71. <artifactId>zip4j</artifactId>
  72. <version>1.3.2</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.apache.ant</groupId>
  76. <artifactId>ant</artifactId>
  77. <version>1.9.4</version>
  78. <scope>compile</scope>
  79. </dependency>
  80. <!-- <dependency>-->
  81. <!-- <groupId>org.gdal</groupId>-->
  82. <!-- <artifactId>gdal</artifactId>-->
  83. <!-- <version>3.3.0</version>-->
  84. <!-- </dependency>-->
  85. <!-- ejml -->
  86. <dependency>
  87. <groupId>ejml-core</groupId>
  88. <artifactId>core</artifactId>
  89. <scope>system</scope>
  90. <version>0.39</version>
  91. <systemPath>${project.basedir}/lib/ejml-core-0.39.jar</systemPath>
  92. </dependency>
  93. <dependency>
  94. <groupId>ejml-ddense</groupId>
  95. <artifactId>core</artifactId>
  96. <scope>system</scope>
  97. <version>0.32</version>
  98. <systemPath>${project.basedir}/lib/ejml-ddense-0.32.jar</systemPath>
  99. </dependency>
  100. <!-- geotools -->
  101. <dependency>
  102. <groupId>gt-api</groupId>
  103. <artifactId>gt-api</artifactId>
  104. <scope>system</scope>
  105. <version>19.2</version>
  106. <systemPath>${project.basedir}/lib/gt-api-19.2.jar</systemPath>
  107. </dependency>
  108. <dependency>
  109. <groupId>gt-data</groupId>
  110. <artifactId>gt-data</artifactId>
  111. <scope>system</scope>
  112. <version>19.2</version>
  113. <systemPath>${project.basedir}/lib/gt-data-19.2.jar</systemPath>
  114. </dependency>
  115. <dependency>
  116. <groupId>gt-geotools</groupId>
  117. <artifactId>geojson</artifactId>
  118. <scope>system</scope>
  119. <version>19.2</version>
  120. <systemPath>${project.basedir}/lib/gt-geojson-19.2.jar</systemPath>
  121. </dependency>
  122. <dependency>
  123. <groupId>gt-main</groupId>
  124. <artifactId>gt-main</artifactId>
  125. <scope>system</scope>
  126. <version>19.2</version>
  127. <systemPath>${project.basedir}/lib/gt-main-19.2.jar</systemPath>
  128. </dependency>
  129. <dependency>
  130. <groupId>gt-metadata</groupId>
  131. <artifactId>gt-metadata</artifactId>
  132. <scope>system</scope>
  133. <version>19.2</version>
  134. <systemPath>${project.basedir}/lib/gt-metadata-19.2.jar</systemPath>
  135. </dependency>
  136. <dependency>
  137. <groupId>gt-opengis</groupId>
  138. <artifactId>gt-opengis</artifactId>
  139. <scope>system</scope>
  140. <version>19.2</version>
  141. <systemPath>${project.basedir}/lib/gt-opengis-19.2.jar</systemPath>
  142. </dependency>
  143. <dependency>
  144. <groupId>gt-referencing</groupId>
  145. <artifactId>gt-referencing</artifactId>
  146. <scope>system</scope>
  147. <version>19.2</version>
  148. <systemPath>${project.basedir}/lib/gt-referencing-19.2.jar</systemPath>
  149. </dependency>
  150. <dependency>
  151. <groupId>gt-render</groupId>
  152. <artifactId>gt-render</artifactId>
  153. <scope>system</scope>
  154. <version>19.2</version>
  155. <systemPath>${project.basedir}/lib/gt-render-19.2.jar</systemPath>
  156. </dependency>
  157. <dependency>
  158. <groupId>gt-shapefile</groupId>
  159. <artifactId>gt-shapefile</artifactId>
  160. <scope>system</scope>
  161. <version>19.2</version>
  162. <systemPath>${project.basedir}/lib/gt-shapefile-19.2.jar</systemPath>
  163. </dependency>
  164. <dependency>
  165. <groupId>gt-jts</groupId>
  166. <artifactId>gt-jts</artifactId>
  167. <scope>system</scope>
  168. <version>1.13</version>
  169. <systemPath>${project.basedir}/lib/jts-1.13.jar</systemPath>
  170. </dependency>
  171. <dependency>
  172. <groupId>gt-jsr</groupId>
  173. <artifactId>gt-jsr</artifactId>
  174. <scope>system</scope>
  175. <version>1.0</version>
  176. <systemPath>${project.basedir}/lib/jsr-275-1.0-beta-2.jar</systemPath>
  177. </dependency>
  178. <dependency>
  179. <groupId>json</groupId>
  180. <artifactId>json</artifactId>
  181. <scope>system</scope>
  182. <version>1.1</version>
  183. <systemPath>${project.basedir}/lib/json-simple-1.1.jar</systemPath>
  184. </dependency>
  185. <dependency>
  186. <groupId>org.apache.commons</groupId>
  187. <artifactId>commons-lang3</artifactId>
  188. <version>3.8.1</version>
  189. </dependency>
  190. <!-- 解析shp -->
  191. <dependency>
  192. <groupId>com.google.code.gson</groupId>
  193. <artifactId>gson</artifactId>
  194. <version>2.8.5</version>
  195. </dependency>
  196. <dependency>
  197. <groupId>commons-lang</groupId>
  198. <artifactId>commons-lang</artifactId>
  199. <version>2.6</version>
  200. </dependency>
  201. <dependency>
  202. <groupId>com.alibaba</groupId>
  203. <artifactId>fastjson</artifactId>
  204. <version>1.2.7</version>
  205. </dependency>
  206. <dependency>
  207. <groupId>org.apache.tomcat.embed</groupId>
  208. <artifactId>tomcat-embed-core</artifactId>
  209. <version>9.0.56</version>
  210. </dependency>
  211. <dependency>
  212. <groupId>org.reflections</groupId>
  213. <artifactId>reflections</artifactId>
  214. <version>0.9.10</version>
  215. </dependency>
  216. <!-- RuoYi Api System -->
  217. <dependency>
  218. <groupId>com.onemap</groupId>
  219. <artifactId>onemap-api-system</artifactId>
  220. </dependency>
  221. <!-- RuoYi Common Swagger -->
  222. <dependency>
  223. <groupId>com.onemap</groupId>
  224. <artifactId>onemap-common-swagger</artifactId>
  225. </dependency>
  226. <!--word转pdf-->
  227. <dependency>
  228. <groupId>e-iceblue</groupId>
  229. <artifactId>spire.doc.free</artifactId>
  230. <scope>system</scope>
  231. <version>5.2.0</version>
  232. <systemPath>${project.basedir}/lib/spire.doc.free-5.2.0.jar</systemPath>
  233. </dependency>
  234. </dependencies>
  235. <build>
  236. <finalName>${project.artifactId}</finalName>
  237. <plugins>
  238. <plugin>
  239. <configuration>
  240. <includeSystemScope>true</includeSystemScope>
  241. <fork>true</fork> <!--重要-->
  242. </configuration>
  243. <groupId>org.springframework.boot</groupId>
  244. <artifactId>spring-boot-maven-plugin</artifactId>
  245. <version>2.7.1</version>
  246. <executions>
  247. <execution>
  248. <goals>
  249. <goal>repackage</goal>
  250. </goals>
  251. </execution>
  252. </executions>
  253. </plugin>
  254. </plugins>
  255. </build>
  256. </project>