pom.xml 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://maven.apache.org/POM/4.0.0"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <groupId>com.siwei</groupId>
  7. <artifactId>siwei-modules</artifactId>
  8. <version>3.6.5</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>siwei-modules-spatial</artifactId>
  12. <description>
  13. system-modules-spatial 空间处理服务模块
  14. </description>
  15. <dependencies>
  16. <!-- SpringCloud Alibaba Nacos -->
  17. <dependency>
  18. <groupId>com.alibaba.cloud</groupId>
  19. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  20. </dependency>
  21. <!-- SpringCloud Alibaba Nacos Config -->
  22. <dependency>
  23. <groupId>com.alibaba.cloud</groupId>
  24. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  25. </dependency>
  26. <!-- SpringCloud Alibaba Sentinel -->
  27. <dependency>
  28. <groupId>com.alibaba.cloud</groupId>
  29. <artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
  30. </dependency>
  31. <!-- SpringBoot Actuator -->
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-actuator</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.postgresql</groupId>
  38. <artifactId>postgresql</artifactId>
  39. </dependency>
  40. <!-- Mysql Connector -->
  41. <dependency>
  42. <groupId>com.mysql</groupId>
  43. <artifactId>mysql-connector-j</artifactId>
  44. </dependency>
  45. <!-- siwei Common DataSource -->
  46. <dependency>
  47. <groupId>com.siwei</groupId>
  48. <artifactId>siwei-common-datasource</artifactId>
  49. </dependency>
  50. <!-- siwei Common DataScope -->
  51. <dependency>
  52. <groupId>com.siwei</groupId>
  53. <artifactId>siwei-common-datascope</artifactId>
  54. </dependency>
  55. <!-- siwei Common Log -->
  56. <dependency>
  57. <groupId>com.siwei</groupId>
  58. <artifactId>siwei-common-log</artifactId>
  59. </dependency>
  60. <!-- siwei Common Swagger -->
  61. <dependency>
  62. <groupId>com.siwei</groupId>
  63. <artifactId>siwei-common-swagger</artifactId>
  64. </dependency>
  65. <!--geotools-->
  66. <dependency>
  67. <groupId>org.geotools</groupId>
  68. <artifactId>gt-main</artifactId>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.geotools</groupId>
  72. <artifactId>gt-cql</artifactId>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.geotools.jdbc</groupId>
  76. <artifactId>gt-jdbc-postgis</artifactId>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.geotools</groupId>
  80. <artifactId>gt-coverage</artifactId>
  81. </dependency>
  82. <dependency>
  83. <groupId>org.geotools</groupId>
  84. <artifactId>gt-render</artifactId>
  85. </dependency>
  86. <dependency>
  87. <groupId>org.geotools</groupId>
  88. <artifactId>gt-opengis</artifactId>
  89. </dependency>
  90. <dependency>
  91. <groupId>org.geotools</groupId>
  92. <artifactId>gt-referencing</artifactId>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.geotools</groupId>
  96. <artifactId>gt-geojson</artifactId>
  97. </dependency>
  98. <dependency>
  99. <groupId>org.geotools</groupId>
  100. <artifactId>gt-geotiff</artifactId>
  101. </dependency>
  102. <dependency>
  103. <groupId>org.geotools</groupId>
  104. <artifactId>gt-swing</artifactId>
  105. </dependency>
  106. <dependency>
  107. <groupId>org.geotools</groupId>
  108. <artifactId>gt-shapefile</artifactId>
  109. </dependency>
  110. <dependency>
  111. <groupId>org.geotools</groupId>
  112. <artifactId>gt-tile-client</artifactId>
  113. </dependency>
  114. <dependency>
  115. <groupId>org.geotools</groupId>
  116. <artifactId>gt-epsg-hsql</artifactId>
  117. </dependency>
  118. <dependency>
  119. <groupId>org.locationtech.jts</groupId>
  120. <artifactId>jts-core</artifactId>
  121. </dependency>
  122. </dependencies>
  123. <build>
  124. <finalName>${project.artifactId}</finalName>
  125. <plugins>
  126. <plugin>
  127. <groupId>org.springframework.boot</groupId>
  128. <artifactId>spring-boot-maven-plugin</artifactId>
  129. <executions>
  130. <execution>
  131. <goals>
  132. <goal>repackage</goal>
  133. </goals>
  134. </execution>
  135. </executions>
  136. </plugin>
  137. </plugins>
  138. </build>
  139. </project>