pom.xml 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>ecql-service</artifactId>
  7. <groupId>cn.com.taiji</groupId>
  8. <version>1.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>cql-service</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>com.alibaba</groupId>
  15. <artifactId>fastjson</artifactId>
  16. <version>1.2.60</version>
  17. </dependency>
  18. <dependency>
  19. <groupId>org.projectlombok</groupId>
  20. <artifactId>lombok</artifactId>
  21. <version>1.18.20</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>cn.hutool</groupId>
  25. <artifactId>hutool-all</artifactId>
  26. <version>5.7.19</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-actuator</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-web</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.geotools</groupId>
  38. <artifactId>gt-main</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.geotools</groupId>
  42. <artifactId>gt-cql</artifactId>
  43. <version>${geotools.version}</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.geotools</groupId>
  47. <artifactId>gt-elasticsearch</artifactId>
  48. <version>${geotools.version}</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.geotools</groupId>
  52. <artifactId>gt-xml</artifactId>
  53. <version>${geotools.version}</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.geotools</groupId>
  57. <artifactId>gt-coverage</artifactId>
  58. <version>${geotools.version}</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.geotools</groupId>
  62. <artifactId>gt-process</artifactId>
  63. <version>${geotools.version}</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.geotools</groupId>
  67. <artifactId>gt-process-feature</artifactId>
  68. <version>${geotools.version}</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.geotools</groupId>
  72. <artifactId>gt-jdbc</artifactId>
  73. <version>${geotools.version}</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.geotools.jdbc</groupId>
  77. <artifactId>gt-jdbc-mysql</artifactId>
  78. <version>${geotools.version}</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.geotools</groupId>
  82. <artifactId>gt-sample-data</artifactId>
  83. <version>${geotools.version}</version>
  84. </dependency>
  85. </dependencies>
  86. <build>
  87. <finalName>${project.artifactId}</finalName>
  88. <plugins>
  89. <plugin>
  90. <groupId>org.springframework.boot</groupId>
  91. <artifactId>spring-boot-maven-plugin</artifactId>
  92. <!--将scope 为 system的本地jar包也加入到打包jar中-->
  93. <configuration>
  94. <includeSystemScope>true</includeSystemScope>
  95. </configuration>
  96. <executions>
  97. <execution>
  98. <goals>
  99. <goal>repackage</goal>
  100. </goals>
  101. </execution>
  102. </executions>
  103. </plugin>
  104. </plugins>
  105. </build>
  106. <repositories>
  107. <repository>
  108. <id>locationtech-releases</id>
  109. <url>https://repo.eclipse.org/content/groups/releases</url>
  110. <snapshots>
  111. <enabled>false</enabled>
  112. </snapshots>
  113. </repository>
  114. <repository>
  115. <id>locationtech-snapshots</id>
  116. <url>https://repo.eclipse.org/content/groups/snapshots</url>
  117. <releases>
  118. <enabled>false</enabled>
  119. </releases>
  120. <snapshots>
  121. <enabled>true</enabled>
  122. </snapshots>
  123. </repository>
  124. <!-- geotools -->
  125. <repository>
  126. <id>osgeo</id>
  127. <url>https://repo.osgeo.org/repository/release</url>
  128. <snapshots>
  129. <enabled>false</enabled>
  130. </snapshots>
  131. </repository>
  132. <repository>
  133. <id>osgeo-snapshots</id>
  134. <url>https://repo.osgeo.org/repository/snapshot</url>
  135. <releases>
  136. <enabled>false</enabled>
  137. </releases>
  138. <snapshots>
  139. <enabled>true</enabled>
  140. </snapshots>
  141. </repository>
  142. <repository>
  143. <id>conjars.org</id>
  144. <url>http://conjars.org/repo</url>
  145. </repository>
  146. </repositories>
  147. </project>