pom.xml 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <properties>
  5. <geomesa.version>3.4.1</geomesa.version>
  6. <gt.version>23.0</gt.version>
  7. <scala.abi.version>2.11</scala.abi.version>
  8. <hutool.version>5.8.5</hutool.version>
  9. <fastjson.version>1.2.60</fastjson.version>
  10. </properties>
  11. <parent>
  12. <artifactId>ax-beidou</artifactId>
  13. <groupId>cn.com.taiji</groupId>
  14. <version>1.0.0</version>
  15. </parent>
  16. <artifactId>beidou-track-geomesa</artifactId>
  17. <name>beidou-track-geomesa</name>
  18. <dependencies>
  19. <dependency>
  20. <groupId>org.springframework.boot</groupId>
  21. <artifactId>spring-boot-starter</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.springframework.boot</groupId>
  25. <artifactId>spring-boot-starter-web</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>io.netty</groupId>
  29. <artifactId>netty-all</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.springframework.kafka</groupId>
  33. <artifactId>spring-kafka</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.springframework.boot</groupId>
  37. <artifactId>spring-boot-starter-data-redis</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.projectlombok</groupId>
  41. <artifactId>lombok</artifactId>
  42. </dependency>
  43. <!-- Mysql数据库依赖,跟随项目版本:5.7 -->
  44. <dependency>
  45. <groupId>mysql</groupId>
  46. <artifactId>mysql-connector-java</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.alibaba</groupId>
  50. <artifactId>druid-spring-boot-starter</artifactId>
  51. <version>1.2.6</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.mybatis.spring.boot</groupId>
  55. <artifactId>mybatis-spring-boot-starter</artifactId>
  56. <version>2.2.1</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>com.baomidou</groupId>
  60. <artifactId>mybatis-plus-boot-starter</artifactId>
  61. <version>3.5.1</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>cn.hutool</groupId>
  65. <artifactId>hutool-all</artifactId>
  66. <version>${hutool.version}</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>com.alibaba</groupId>
  70. <artifactId>fastjson</artifactId>
  71. <version>${fastjson.version}</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.mybatis.spring.boot</groupId>
  75. <artifactId>mybatis-spring-boot-starter</artifactId>
  76. <version>2.2.1</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>com.baomidou</groupId>
  80. <artifactId>mybatis-plus-boot-starter</artifactId>
  81. <version>3.5.1</version>
  82. </dependency>
  83. <!-- geomesa -->
  84. <dependency>
  85. <groupId>org.locationtech.geomesa</groupId>
  86. <artifactId>geomesa-redis-datastore_${scala.abi.version}</artifactId>
  87. <version>${geomesa.version}</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.locationtech.geomesa</groupId>
  91. <artifactId>geomesa-utils_${scala.abi.version}</artifactId>
  92. <version>${geomesa.version}</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.locationtech.geomesa</groupId>
  96. <artifactId>geomesa-index-api_${scala.abi.version}</artifactId>
  97. <version>${geomesa.version}</version>
  98. </dependency>
  99. <!--geotools的一揽子包-->
  100. <dependency>
  101. <groupId>org.geotools</groupId>
  102. <artifactId>gt-epsg-wkt</artifactId>
  103. <version>${gt.version}</version>
  104. </dependency>
  105. <dependency>
  106. <groupId>org.geotools</groupId>
  107. <artifactId>gt-epsg-hsql</artifactId>
  108. <version>${gt.version}</version>
  109. </dependency>
  110. <dependency>
  111. <groupId>org.geotools</groupId>
  112. <artifactId>gt-opengis</artifactId>
  113. <version>${gt.version}</version>
  114. </dependency>
  115. <dependency>
  116. <groupId>org.geotools</groupId>
  117. <artifactId>gt-main</artifactId>
  118. <version>${gt.version}</version>
  119. </dependency>
  120. </dependencies>
  121. <repositories>
  122. <repository>
  123. <id>Aliyun</id>
  124. <url>https://maven.aliyun.com/repository/public</url>
  125. </repository>
  126. <repository>
  127. <id>GeoSolutions</id>
  128. <url>https://repo.osgeo.org/repository/release/</url>
  129. </repository>
  130. </repositories>
  131. <build>
  132. <plugins>
  133. <plugin>
  134. <groupId>org.springframework.boot</groupId>
  135. <artifactId>spring-boot-maven-plugin</artifactId>
  136. <version>2.2.6.RELEASE</version>
  137. <configuration>
  138. <classifier>exec</classifier>
  139. </configuration>
  140. <executions>
  141. <execution>
  142. <goals>
  143. <goal>repackage</goal>
  144. </goals>
  145. </execution>
  146. </executions>
  147. </plugin>
  148. </plugins>
  149. </build>
  150. </project>