pom.xml 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.5.2</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.skyversation</groupId>
  12. <artifactId>poiaddr</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>poiaddr</name>
  15. <description>poiaddr</description>
  16. <packaging>jar</packaging>
  17. <url/>
  18. <licenses>
  19. <license/>
  20. </licenses>
  21. <developers>
  22. <developer/>
  23. </developers>
  24. <scm>
  25. <connection/>
  26. <developerConnection/>
  27. <tag/>
  28. <url/>
  29. </scm>
  30. <properties>
  31. <geotools.version>25.2</geotools.version>
  32. <java.version>8</java.version>
  33. </properties>
  34. <dependencies>
  35. <dependency>
  36. <groupId>org.json</groupId>
  37. <artifactId>json</artifactId>
  38. <version>20231013</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>com.fasterxml.jackson.core</groupId>
  42. <artifactId>jackson-databind</artifactId>
  43. <version>2.12.3</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.alibaba</groupId>
  47. <artifactId>fastjson</artifactId>
  48. <version>1.2.62</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.apache.commons</groupId>
  52. <artifactId>commons-lang3</artifactId>
  53. <version>3.13.0</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>com.googlecode.json-simple</groupId>
  57. <artifactId>json-simple</artifactId>
  58. <version>1.1.1</version>
  59. </dependency>
  60. <!-- xlsx读取-->
  61. <dependency>
  62. <groupId>org.apache.xmlbeans</groupId>
  63. <artifactId>xmlbeans</artifactId>
  64. <version>5.2.0</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>com.opencsv</groupId>
  68. <artifactId>opencsv</artifactId>
  69. <version>5.7.1</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.apache.poi</groupId>
  73. <artifactId>poi</artifactId>
  74. <version>5.2.3</version>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.apache.poi</groupId>
  78. <artifactId>poi-ooxml</artifactId>
  79. <version>5.2.3</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.apache.httpcomponents</groupId>
  83. <artifactId>httpclient</artifactId>
  84. <version>4.5.13</version>
  85. </dependency>
  86. <!-- https://mvnrepository.com/artifact/org.gdal/gdal -->
  87. <dependency>
  88. <groupId>org.gdal</groupId>
  89. <artifactId>gdal</artifactId>
  90. <version>3.5.0</version>
  91. <type>pom</type>
  92. </dependency>
  93. <dependency>
  94. <groupId>org.osgeo</groupId>
  95. <artifactId>proj4j</artifactId>
  96. <version>0.1.0</version>
  97. </dependency>
  98. <dependency>
  99. <groupId>org.locationtech.jts</groupId>
  100. <artifactId>jts-core</artifactId>
  101. <version>1.19.0</version>
  102. </dependency>
  103. <!-- 空间地理信息工具类-->
  104. <dependency>
  105. <groupId>org.geotools</groupId>
  106. <artifactId>gt-geojson</artifactId>
  107. <version>${geotools.version}</version>
  108. </dependency>
  109. <dependency>
  110. <groupId>org.geotools</groupId>
  111. <artifactId>gt-main</artifactId>
  112. <version>${geotools.version}</version>
  113. </dependency>
  114. <dependency>
  115. <groupId>org.geotools</groupId>
  116. <artifactId>gt-opengis</artifactId>
  117. <version>${geotools.version}</version>
  118. </dependency>
  119. <dependency>
  120. <groupId>org.geotools</groupId>
  121. <artifactId>gt-shapefile</artifactId>
  122. <version>${geotools.version}</version>
  123. </dependency>
  124. <dependency>
  125. <groupId>org.geotools</groupId>
  126. <artifactId>gt-metadata</artifactId>
  127. <version>${geotools.version}</version>
  128. </dependency>
  129. <dependency>
  130. <groupId>org.geotools</groupId>
  131. <artifactId>gt-referencing</artifactId>
  132. <version>${geotools.version}</version>
  133. </dependency>
  134. <dependency>
  135. <groupId>org.springframework.boot</groupId>
  136. <artifactId>spring-boot-starter-web</artifactId>
  137. </dependency>
  138. <!-- PostgreSQL -->
  139. <dependency>
  140. <groupId>org.postgresql</groupId>
  141. <artifactId>postgresql</artifactId>
  142. <scope>runtime</scope>
  143. </dependency>
  144. <dependency>
  145. <groupId>org.projectlombok</groupId>
  146. <artifactId>lombok</artifactId>
  147. <version>1.18.20</version>
  148. <scope>compile</scope>
  149. </dependency>
  150. <dependency>
  151. <groupId>org.springframework.boot</groupId>
  152. <artifactId>spring-boot-devtools</artifactId>
  153. <scope>runtime</scope>
  154. <optional>true</optional>
  155. </dependency>
  156. <dependency>
  157. <groupId>org.postgresql</groupId>
  158. <artifactId>postgresql</artifactId>
  159. <scope>runtime</scope>
  160. </dependency>
  161. <dependency>
  162. <groupId>org.projectlombok</groupId>
  163. <artifactId>lombok</artifactId>
  164. <optional>true</optional>
  165. </dependency>
  166. <dependency>
  167. <groupId>org.springframework.boot</groupId>
  168. <artifactId>spring-boot-starter-test</artifactId>
  169. <scope>test</scope>
  170. </dependency>
  171. </dependencies>
  172. <repositories>
  173. <repository>
  174. <id>osgeo</id>
  175. <name>OSGeo Release Repository</name>
  176. <url>https://repo.osgeo.org/repository/release/</url>
  177. </repository>
  178. </repositories>
  179. <build>
  180. <plugins>
  181. <plugin>
  182. <groupId>org.springframework.boot</groupId>
  183. <artifactId>spring-boot-maven-plugin</artifactId>
  184. <configuration>
  185. <excludes>
  186. <exclude>
  187. <groupId>org.projectlombok</groupId>
  188. <artifactId>lombok</artifactId>
  189. </exclude>
  190. </excludes>
  191. </configuration>
  192. </plugin>
  193. </plugins>
  194. </build>
  195. </project>