pom.xml 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  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.example</groupId>
  12. <artifactId>place_name_search</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>place_name_search</name>
  15. <description>place_name_search</description>
  16. <url/>
  17. <licenses>
  18. <license/>
  19. </licenses>
  20. <developers>
  21. <developer/>
  22. </developers>
  23. <scm>
  24. <connection/>
  25. <developerConnection/>
  26. <tag/>
  27. <url/>
  28. </scm>
  29. <properties>
  30. <geotools.version>25.2</geotools.version>
  31. <java.version>17</java.version>
  32. </properties>
  33. <dependencies>
  34. <dependency>
  35. <groupId>com.fasterxml.jackson.core</groupId>
  36. <artifactId>jackson-databind</artifactId>
  37. <version>2.12.3</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.alibaba</groupId>
  41. <artifactId>fastjson</artifactId>
  42. <version>1.2.62</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.apache.commons</groupId>
  46. <artifactId>commons-lang3</artifactId>
  47. <version>3.13.0</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.googlecode.json-simple</groupId>
  51. <artifactId>json-simple</artifactId>
  52. <version>1.1.1</version>
  53. </dependency>
  54. <!-- xlsx读取-->
  55. <dependency>
  56. <groupId>org.apache.xmlbeans</groupId>
  57. <artifactId>xmlbeans</artifactId>
  58. <version>5.2.0</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>com.opencsv</groupId>
  62. <artifactId>opencsv</artifactId>
  63. <version>5.7.1</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.apache.poi</groupId>
  67. <artifactId>poi</artifactId>
  68. <version>5.2.3</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.apache.poi</groupId>
  72. <artifactId>poi-ooxml</artifactId>
  73. <version>5.2.3</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.apache.httpcomponents</groupId>
  77. <artifactId>httpclient</artifactId>
  78. <version>4.5.13</version>
  79. </dependency>
  80. <!-- https://mvnrepository.com/artifact/org.gdal/gdal -->
  81. <dependency>
  82. <groupId>org.gdal</groupId>
  83. <artifactId>gdal</artifactId>
  84. <version>3.5.0</version>
  85. <type>pom</type>
  86. </dependency>
  87. <dependency>
  88. <groupId>org.osgeo</groupId>
  89. <artifactId>proj4j</artifactId>
  90. <version>0.1.0</version>
  91. </dependency>
  92. <dependency>
  93. <groupId>org.locationtech.jts</groupId>
  94. <artifactId>jts-core</artifactId>
  95. <version>1.19.0</version>
  96. </dependency>
  97. <dependency>
  98. <groupId>org.geotools</groupId>
  99. <artifactId>gt-geojson</artifactId>
  100. <version>${geotools.version}</version>
  101. </dependency>
  102. <dependency>
  103. <groupId>org.geotools</groupId>
  104. <artifactId>gt-main</artifactId>
  105. <version>${geotools.version}</version>
  106. </dependency>
  107. <dependency>
  108. <groupId>org.geotools</groupId>
  109. <artifactId>gt-opengis</artifactId>
  110. <version>${geotools.version}</version>
  111. </dependency>
  112. <dependency>
  113. <groupId>org.geotools</groupId>
  114. <artifactId>gt-shapefile</artifactId>
  115. <version>${geotools.version}</version>
  116. </dependency>
  117. <dependency>
  118. <groupId>org.geotools</groupId>
  119. <artifactId>gt-metadata</artifactId>
  120. <version>${geotools.version}</version>
  121. </dependency>
  122. <dependency>
  123. <groupId>org.springframework.boot</groupId>
  124. <artifactId>spring-boot-starter-web</artifactId>
  125. </dependency>
  126. <!-- Spring Data JPA -->
  127. <dependency>
  128. <groupId>org.springframework.boot</groupId>
  129. <artifactId>spring-boot-starter-data-jpa</artifactId>
  130. </dependency>
  131. <!-- PostgreSQL -->
  132. <dependency>
  133. <groupId>org.postgresql</groupId>
  134. <artifactId>postgresql</artifactId>
  135. <scope>runtime</scope>
  136. </dependency>
  137. <dependency>
  138. <groupId>org.projectlombok</groupId>
  139. <artifactId>lombok</artifactId>
  140. <version>1.18.20</version>
  141. <scope>compile</scope>
  142. </dependency>
  143. <dependency>
  144. <groupId>org.springframework.boot</groupId>
  145. <artifactId>spring-boot-devtools</artifactId>
  146. <scope>runtime</scope>
  147. <optional>true</optional>
  148. </dependency>
  149. <dependency>
  150. <groupId>org.postgresql</groupId>
  151. <artifactId>postgresql</artifactId>
  152. <scope>runtime</scope>
  153. </dependency>
  154. <dependency>
  155. <groupId>org.projectlombok</groupId>
  156. <artifactId>lombok</artifactId>
  157. <optional>true</optional>
  158. </dependency>
  159. <dependency>
  160. <groupId>org.springframework.boot</groupId>
  161. <artifactId>spring-boot-starter-test</artifactId>
  162. <scope>test</scope>
  163. </dependency>
  164. </dependencies>
  165. <build>
  166. <plugins>
  167. <plugin>
  168. <groupId>org.springframework.boot</groupId>
  169. <artifactId>spring-boot-maven-plugin</artifactId>
  170. <configuration>
  171. <excludes>
  172. <exclude>
  173. <groupId>org.projectlombok</groupId>
  174. <artifactId>lombok</artifactId>
  175. </exclude>
  176. </excludes>
  177. </configuration>
  178. </plugin>
  179. </plugins>
  180. </build>
  181. </project>