pom.xml 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218
  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.springframework.boot</groupId>
  37. <artifactId>spring-boot-starter-web</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.json</groupId>
  41. <artifactId>json</artifactId>
  42. <version>20231013</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>com.fasterxml.jackson.core</groupId>
  46. <artifactId>jackson-databind</artifactId>
  47. <version>2.12.3</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.fasterxml.jackson.datatype</groupId>
  51. <artifactId>jackson-datatype-jsr310</artifactId>
  52. <version>2.12.3</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.alibaba</groupId>
  56. <artifactId>fastjson</artifactId>
  57. <version>1.2.62</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.apache.commons</groupId>
  61. <artifactId>commons-lang3</artifactId>
  62. <version>3.13.0</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>com.googlecode.json-simple</groupId>
  66. <artifactId>json-simple</artifactId>
  67. <version>1.1.1</version>
  68. </dependency>
  69. <!-- xlsx读取-->
  70. <dependency>
  71. <groupId>org.apache.xmlbeans</groupId>
  72. <artifactId>xmlbeans</artifactId>
  73. <version>5.2.0</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>com.opencsv</groupId>
  77. <artifactId>opencsv</artifactId>
  78. <version>5.7.1</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.apache.poi</groupId>
  82. <artifactId>poi</artifactId>
  83. <version>5.2.3</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.apache.poi</groupId>
  87. <artifactId>poi-ooxml</artifactId>
  88. <version>5.2.3</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>org.apache.httpcomponents</groupId>
  92. <artifactId>httpclient</artifactId>
  93. <version>4.5.13</version>
  94. </dependency>
  95. <!-- https://mvnrepository.com/artifact/org.gdal/gdal -->
  96. <dependency>
  97. <groupId>org.gdal</groupId>
  98. <artifactId>gdal</artifactId>
  99. <version>3.5.0</version>
  100. <type>pom</type>
  101. </dependency>
  102. <dependency>
  103. <groupId>org.osgeo</groupId>
  104. <artifactId>proj4j</artifactId>
  105. <version>0.1.0</version>
  106. </dependency>
  107. <dependency>
  108. <groupId>org.locationtech.jts</groupId>
  109. <artifactId>jts-core</artifactId>
  110. <version>1.19.0</version>
  111. </dependency>
  112. <!-- 空间地理信息工具类-->
  113. <dependency>
  114. <groupId>org.geotools</groupId>
  115. <artifactId>gt-geojson</artifactId>
  116. <version>${geotools.version}</version>
  117. </dependency>
  118. <dependency>
  119. <groupId>org.geotools</groupId>
  120. <artifactId>gt-main</artifactId>
  121. <version>${geotools.version}</version>
  122. </dependency>
  123. <dependency>
  124. <groupId>org.geotools</groupId>
  125. <artifactId>gt-opengis</artifactId>
  126. <version>${geotools.version}</version>
  127. </dependency>
  128. <dependency>
  129. <groupId>org.geotools</groupId>
  130. <artifactId>gt-shapefile</artifactId>
  131. <version>${geotools.version}</version>
  132. </dependency>
  133. <dependency>
  134. <groupId>org.geotools</groupId>
  135. <artifactId>gt-metadata</artifactId>
  136. <version>${geotools.version}</version>
  137. </dependency>
  138. <dependency>
  139. <groupId>org.geotools</groupId>
  140. <artifactId>gt-referencing</artifactId>
  141. <version>${geotools.version}</version>
  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.projectlombok</groupId>
  151. <artifactId>lombok</artifactId>
  152. <optional>true</optional>
  153. </dependency>
  154. <dependency>
  155. <groupId>org.springframework.boot</groupId>
  156. <artifactId>spring-boot-starter-test</artifactId>
  157. <scope>test</scope>
  158. </dependency>
  159. </dependencies>
  160. <repositories>
  161. <repository>
  162. <id>osgeo</id>
  163. <name>OSGeo Release Repository</name>
  164. <url>https://repo.osgeo.org/repository/release/</url>
  165. </repository>
  166. </repositories>
  167. <build>
  168. <plugins>
  169. <plugin>
  170. <groupId>org.springframework.boot</groupId>
  171. <artifactId>spring-boot-maven-plugin</artifactId>
  172. <configuration>
  173. <includeSystemScope>true</includeSystemScope>
  174. </configuration>
  175. </plugin>
  176. <plugin>
  177. <groupId>org.apache.maven.plugins</groupId>
  178. <artifactId>maven-compiler-plugin</artifactId>
  179. <version>3.8.1</version>
  180. <configuration>
  181. <source>1.8</source>
  182. <target>1.8</target>
  183. </configuration>
  184. </plugin>
  185. <plugin>
  186. <groupId>org.apache.maven.plugins</groupId>
  187. <artifactId>maven-dependency-plugin</artifactId>
  188. <executions>
  189. <execution>
  190. <id>copy-dependencies</id>
  191. <phase>package</phase>
  192. <goals>
  193. <goal>copy-dependencies</goal>
  194. </goals>
  195. <configuration>
  196. <outputDirectory>${project.build.directory}/lib</outputDirectory>
  197. <includeScope>system</includeScope>
  198. </configuration>
  199. </execution>
  200. </executions>
  201. </plugin>
  202. </plugins>
  203. <resources>
  204. <resource>
  205. <directory>src/main/resources</directory>
  206. </resource>
  207. <resource>
  208. <directory>C:/Users/Liumouren/Desktop/临时文件/元以科技/青浦/青浦城建所/xinghuanDriverJar</directory>
  209. <targetPath>BOOT-INF/lib/</targetPath>
  210. <includes>
  211. <include>*.jar</include>
  212. </includes>
  213. </resource>
  214. </resources>
  215. </build>
  216. </project>