pom.xml 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  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>orbit-base-plan</artifactId>
  7. <groupId>orbit.base.server</groupId>
  8. <version>0.0.1</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>base-plan-service</artifactId>
  12. <properties>
  13. <maven.compiler.source>8</maven.compiler.source>
  14. <maven.compiler.target>8</maven.compiler.target>
  15. </properties>
  16. <dependencies>
  17. <!-- web控制依赖 -->
  18. <dependency>
  19. <groupId>org.springframework.boot</groupId>
  20. <artifactId>spring-boot-starter-web</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.springframework.boot</groupId>
  24. <artifactId>spring-boot-starter</artifactId>
  25. </dependency>
  26. <!-- 连接池 -->
  27. <dependency>
  28. <groupId>com.alibaba</groupId>
  29. <artifactId>druid-spring-boot-starter</artifactId>
  30. </dependency>
  31. <!-- nacos注册 -->
  32. <dependency>
  33. <groupId>com.alibaba.cloud</groupId>
  34. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.springframework.cloud</groupId>
  38. <artifactId>spring-cloud-starter-openfeign</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.springframework.cloud</groupId>
  42. <artifactId>spring-cloud-openfeign-core</artifactId>
  43. </dependency>
  44. <!-- nacos配置-->
  45. <dependency>
  46. <groupId>com.alibaba.cloud</groupId>
  47. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  48. </dependency>
  49. <!--客户端负载均衡loadbalancer-->
  50. <dependency>
  51. <groupId>org.springframework.cloud</groupId>
  52. <artifactId>spring-cloud-starter-loadbalancer</artifactId>
  53. </dependency>
  54. <!-- test -->
  55. <dependency>
  56. <groupId>org.springframework.boot</groupId>
  57. <artifactId>spring-boot-starter-test</artifactId>
  58. <version>2.4.2</version>
  59. </dependency>
  60. <!-- junit -->
  61. <dependency>
  62. <groupId>junit</groupId>
  63. <artifactId>junit</artifactId>
  64. <scope>test</scope>
  65. </dependency>
  66. <!-- spring-cloud-dependencies 2020.0.1 版本不在默认加载bootstrap 文件
  67. 引入该依赖读取bootstrap文件 -->
  68. <dependency>
  69. <groupId>org.springframework.cloud</groupId>
  70. <artifactId>spring-cloud-starter-bootstrap</artifactId>
  71. </dependency>
  72. <!-- <dependency>-->
  73. <!-- <groupId>orbit.base.server</groupId>-->
  74. <!-- <artifactId>framework-mq</artifactId>-->
  75. <!-- <version>0.0.1</version>-->
  76. <!-- </dependency>-->
  77. <dependency>
  78. <groupId>orbit.base.server</groupId>
  79. <artifactId>framework-common</artifactId>
  80. <version>0.0.1</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>orbit.base.server</groupId>
  84. <artifactId>framework-core</artifactId>
  85. <version>0.0.1</version>
  86. </dependency>
  87. <dependency>
  88. <groupId>orbit.base.server</groupId>
  89. <artifactId>framework-task</artifactId>
  90. <version>0.0.1</version>
  91. </dependency>
  92. <!-- <dependency>-->
  93. <!-- <groupId>orbit.base.server</groupId>-->
  94. <!-- <artifactId>framework-step</artifactId>-->
  95. <!-- <version>0.0.1</version>-->
  96. <!-- </dependency>-->
  97. <dependency>
  98. <groupId>orbit.base.server</groupId>
  99. <artifactId>base-biz-api</artifactId>
  100. <version>0.0.1</version>
  101. </dependency>
  102. <dependency>
  103. <groupId>orbit.base.server</groupId>
  104. <artifactId>base-track-api</artifactId>
  105. <version>0.0.1</version>
  106. </dependency>
  107. <dependency>
  108. <groupId>orbit.base.server</groupId>
  109. <artifactId>base-plan-api</artifactId>
  110. <version>0.0.1</version>
  111. </dependency>
  112. <dependency>
  113. <groupId>gov.nist.math</groupId>
  114. <artifactId>jama</artifactId>
  115. <version>1.0.2</version>
  116. </dependency>
  117. <dependency>
  118. <groupId>com.github.xiaoymin</groupId>
  119. <artifactId>knife4j-spring-boot-starter</artifactId>
  120. <version>2.0.4</version>
  121. </dependency>
  122. <dependency>
  123. <groupId>org.mybatis.spring.boot</groupId>
  124. <artifactId>mybatis-spring-boot-autoconfigure</artifactId>
  125. </dependency>
  126. <dependency>
  127. <groupId>org.geotools</groupId>
  128. <artifactId>gt-main</artifactId>
  129. <version>24.6</version>
  130. </dependency>
  131. <dependency>
  132. <groupId>org.geotools</groupId>
  133. <artifactId>gt-metadata</artifactId>
  134. <version>24.6</version>
  135. </dependency>
  136. <dependency>
  137. <groupId>org.locationtech.jts</groupId>
  138. <artifactId>jts-core</artifactId>
  139. <version>1.19.0</version>
  140. </dependency>
  141. </dependencies>
  142. <build>
  143. <plugins>
  144. <plugin>
  145. <groupId>org.springframework.boot</groupId>
  146. <artifactId>spring-boot-maven-plugin</artifactId>
  147. <executions>
  148. <execution>
  149. <goals>
  150. <goal>repackage</goal>
  151. </goals>
  152. </execution>
  153. </executions>
  154. </plugin>
  155. </plugins>
  156. </build>
  157. </project>