pom.xml 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>com.siwei</groupId>
  6. <artifactId>siwei-modules</artifactId>
  7. <version>3.6.5</version>
  8. </parent>
  9. <artifactId>siwei-apply</artifactId>
  10. <name>Archetype - siwei-apply</name>
  11. <url>http://maven.apache.org</url>
  12. <dependencies>
  13. <!-- SpringCloud Alibaba Nacos -->
  14. <dependency>
  15. <groupId>com.alibaba.cloud</groupId>
  16. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  17. </dependency>
  18. <!-- SpringCloud Alibaba Nacos Config -->
  19. <dependency>
  20. <groupId>com.alibaba.cloud</groupId>
  21. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  22. </dependency>
  23. <!-- SpringCloud Alibaba Sentinel -->
  24. <dependency>
  25. <groupId>com.alibaba.cloud</groupId>
  26. <artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
  27. </dependency>
  28. <!-- SpringBoot Actuator -->
  29. <dependency>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-starter-actuator</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.postgresql</groupId>
  35. <artifactId>postgresql</artifactId>
  36. </dependency>
  37. <!-- siwei Common DataSource -->
  38. <dependency>
  39. <groupId>com.siwei</groupId>
  40. <artifactId>siwei-common-datasource</artifactId>
  41. </dependency>
  42. <!-- siwei Common DataScope -->
  43. <dependency>
  44. <groupId>com.siwei</groupId>
  45. <artifactId>siwei-common-datascope</artifactId>
  46. </dependency>
  47. <!-- siwei Common Log -->
  48. <dependency>
  49. <groupId>com.siwei</groupId>
  50. <artifactId>siwei-common-log</artifactId>
  51. </dependency>
  52. <!-- siwei Common Swagger -->
  53. <dependency>
  54. <groupId>com.siwei</groupId>
  55. <artifactId>siwei-common-swagger</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.projectlombok</groupId>
  59. <artifactId>lombok</artifactId>
  60. <scope>provided</scope>
  61. </dependency>
  62. <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpcore -->
  63. <dependency>
  64. <groupId>org.apache.httpcomponents</groupId>
  65. <artifactId>httpcore</artifactId>
  66. <version>4.4.10</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.apache.httpcomponents</groupId>
  70. <artifactId>httpmime</artifactId>
  71. <version>4.5.6</version>
  72. </dependency>
  73. <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient -->
  74. <dependency>
  75. <groupId>org.apache.httpcomponents</groupId>
  76. <artifactId>httpclient</artifactId>
  77. <version>4.5.6</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.apache.ant</groupId>
  81. <artifactId>ant</artifactId>
  82. <version>1.10.5</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>com.google.guava</groupId>
  86. <artifactId>guava</artifactId>
  87. <version>31.1-jre</version>
  88. </dependency>
  89. <!-- 引入解析GDB矢量数据的jar -->
  90. <dependency>
  91. <groupId>org.gdal.jni</groupId>
  92. <version>3.1.0</version>
  93. <artifactId>gdal-jni</artifactId>
  94. <scope>system</scope>
  95. <systemPath>${project.basedir}/lib/gdal.jar</systemPath>
  96. </dependency>
  97. <dependency>
  98. <groupId>org.json.simple</groupId>
  99. <version>1.1.1</version>
  100. <artifactId>json-simple</artifactId>
  101. <scope>system</scope>
  102. <systemPath>${project.basedir}/lib/json-simple-1.1.1.jar</systemPath>
  103. </dependency>
  104. <!-- ejml -->
  105. <!--geotools-->
  106. <dependency>
  107. <groupId>org.geotools</groupId>
  108. <artifactId>gt-main</artifactId>
  109. </dependency>
  110. <dependency>
  111. <groupId>org.geotools</groupId>
  112. <artifactId>gt-cql</artifactId>
  113. </dependency>
  114. <dependency>
  115. <groupId>org.geotools.jdbc</groupId>
  116. <artifactId>gt-jdbc-postgis</artifactId>
  117. </dependency>
  118. <dependency>
  119. <groupId>org.geotools</groupId>
  120. <artifactId>gt-coverage</artifactId>
  121. </dependency>
  122. <dependency>
  123. <groupId>org.geotools</groupId>
  124. <artifactId>gt-render</artifactId>
  125. </dependency>
  126. <dependency>
  127. <groupId>org.geotools</groupId>
  128. <artifactId>gt-opengis</artifactId>
  129. </dependency>
  130. <dependency>
  131. <groupId>org.geotools</groupId>
  132. <artifactId>gt-referencing</artifactId>
  133. </dependency>
  134. <dependency>
  135. <groupId>org.geotools</groupId>
  136. <artifactId>gt-geojson</artifactId>
  137. </dependency>
  138. <dependency>
  139. <groupId>org.geotools</groupId>
  140. <artifactId>gt-geotiff</artifactId>
  141. </dependency>
  142. <dependency>
  143. <groupId>org.geotools</groupId>
  144. <artifactId>gt-swing</artifactId>
  145. </dependency>
  146. <dependency>
  147. <groupId>org.geotools</groupId>
  148. <artifactId>gt-shapefile</artifactId>
  149. </dependency>
  150. <dependency>
  151. <groupId>org.geotools</groupId>
  152. <artifactId>gt-tile-client</artifactId>
  153. </dependency>
  154. <dependency>
  155. <groupId>org.geotools</groupId>
  156. <artifactId>gt-epsg-hsql</artifactId>
  157. </dependency>
  158. <dependency>
  159. <groupId>org.locationtech.jts</groupId>
  160. <artifactId>jts-core</artifactId>
  161. </dependency>
  162. <dependency>
  163. <groupId>gt-jsr</groupId>
  164. <artifactId>gt-jsr</artifactId>
  165. <scope>system</scope>
  166. <version>1.0</version>
  167. <systemPath>${project.basedir}/lib/jsr-275-1.0-beta-2.jar</systemPath>
  168. </dependency>
  169. <dependency>
  170. <groupId>json</groupId>
  171. <artifactId>json</artifactId>
  172. <scope>system</scope>
  173. <version>1.1</version>
  174. <systemPath>${project.basedir}/lib/json-simple-1.1.jar</systemPath>
  175. </dependency>
  176. <dependency>
  177. <groupId>org.gdal.jni</groupId>
  178. <version>3.1.0</version>
  179. <artifactId>gdal-jni</artifactId>
  180. <scope>system</scope>
  181. <systemPath>${project.basedir}/lib/gdal.jar</systemPath>
  182. </dependency>
  183. <dependency>
  184. <groupId>org.json.simple</groupId>
  185. <version>1.1.1</version>
  186. <artifactId>json-simple</artifactId>
  187. <scope>system</scope>
  188. <systemPath>${project.basedir}/lib/json-simple-1.1.1.jar</systemPath>
  189. </dependency>
  190. <!-- https://mvnrepository.com/artifact/net.sf.ucanaccess/ucanaccess -->
  191. <dependency>
  192. <groupId>net.sf.ucanaccess</groupId>
  193. <artifactId>ucanaccess</artifactId>
  194. <version>5.0.1</version>
  195. </dependency>
  196. </dependencies>
  197. <build>
  198. <finalName>${project.artifactId}</finalName>
  199. <plugins>
  200. <plugin>
  201. <groupId>org.springframework.boot</groupId>
  202. <artifactId>spring-boot-maven-plugin</artifactId>
  203. <executions>
  204. <execution>
  205. <goals>
  206. <goal>repackage</goal>
  207. </goals>
  208. </execution>
  209. </executions>
  210. </plugin>
  211. </plugins>
  212. </build>
  213. </project>