pom.xml 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  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>ax-history-track-play</artifactId>
  7. <groupId>cn.com.taiji</groupId>
  8. <version>1.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>ax-history-track-wsgzip</artifactId>
  12. <name>岸线船舶历史轨迹播放wsgzip</name>
  13. <dependencies>
  14. <dependency>
  15. <groupId>com.alibaba</groupId>
  16. <artifactId>fastjson</artifactId>
  17. </dependency>
  18. <dependency>
  19. <groupId>org.projectlombok</groupId>
  20. <artifactId>lombok</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>cn.hutool</groupId>
  24. <artifactId>hutool-all</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.springframework.boot</groupId>
  28. <artifactId>spring-boot-starter-actuator</artifactId>
  29. <version>2.5.5</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.springframework.boot</groupId>
  33. <artifactId>spring-boot-starter-web</artifactId>
  34. <version>2.5.5</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.yeauty</groupId>
  38. <artifactId>netty-websocket-spring-boot-starter</artifactId>
  39. <version>0.12.0</version>
  40. </dependency>
  41. <!-- 包冲突,强制统一版本 -->
  42. <dependency>
  43. <groupId>org.springframework</groupId>
  44. <artifactId>spring-webmvc</artifactId>
  45. <version>5.3.10</version>
  46. </dependency>
  47. <!-- elasticsearch -->
  48. <dependency>
  49. <groupId>org.elasticsearch</groupId>
  50. <artifactId>elasticsearch</artifactId>
  51. <version>7.8.1</version>
  52. </dependency>
  53. <!-- elasticsearch-rest-client -->
  54. <dependency>
  55. <groupId>org.elasticsearch.client</groupId>
  56. <artifactId>elasticsearch-rest-client</artifactId>
  57. <version>7.8.1</version>
  58. </dependency>
  59. <!-- elasticsearch-rest-high-level-client -->
  60. <dependency>
  61. <groupId>org.elasticsearch.client</groupId>
  62. <artifactId>elasticsearch-rest-high-level-client</artifactId>
  63. <version>7.8.1</version>
  64. <exclusions>
  65. <exclusion>
  66. <groupId>org.elasticsearch.client</groupId>
  67. <artifactId>elasticsearch-rest-client</artifactId>
  68. </exclusion>
  69. <exclusion>
  70. <groupId>org.elasticsearch</groupId>
  71. <artifactId>elasticsearch</artifactId>
  72. </exclusion>
  73. </exclusions>
  74. </dependency>
  75. </dependencies>
  76. <build>
  77. <plugins>
  78. <plugin>
  79. <groupId>org.springframework.boot</groupId>
  80. <artifactId>spring-boot-maven-plugin</artifactId>
  81. <version>2.1.1.RELEASE</version>
  82. <configuration>
  83. <fork>true</fork> <!-- 如果没有该配置,devtools不会生效 -->
  84. <mainClass>cn.com.taiji.WsGzipTrackPlayApplication</mainClass>
  85. <finalName>ax-history-track-wsgzip</finalName>
  86. </configuration>
  87. <executions>
  88. <execution>
  89. <goals>
  90. <goal>repackage</goal>
  91. </goals>
  92. </execution>
  93. </executions>
  94. </plugin>
  95. </plugins>
  96. </build>
  97. </project>