pom.xml 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  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"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.2.2.RELEASE</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>info.aspirecn.iov.sjjh</groupId>
  12. <artifactId>iov-sjjh-servicenode-supplier-vehicle</artifactId>
  13. <version>1.0.0</version>
  14. <name>iov-sjjh-servicenode-supplier-vehicle</name>
  15. <description>Demo project for Spring Boot</description>
  16. <properties>
  17. <java.version>1.8</java.version>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-starter-web</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.projectlombok</groupId>
  26. <artifactId>lombok</artifactId>
  27. <optional>true</optional>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-starter-test</artifactId>
  32. <scope>test</scope>
  33. </dependency>
  34. <dependency>
  35. <groupId>net.logstash.logback</groupId>
  36. <artifactId>logstash-logback-encoder</artifactId>
  37. <version>5.0</version>
  38. </dependency>
  39. <!-- 服务注册 -->
  40. <dependency>
  41. <groupId>org.springframework.cloud</groupId>
  42. <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
  43. <version>2.0.2.RELEASE</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>io.springfox</groupId>
  47. <artifactId>springfox-swagger2</artifactId>
  48. <version>2.9.2</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>io.springfox</groupId>
  52. <artifactId>springfox-swagger-ui</artifactId>
  53. <version>2.9.2</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.springframework.boot</groupId>
  57. <artifactId>spring-boot-devtools</artifactId>
  58. <optional>true</optional>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.springframework.cloud</groupId>
  62. <artifactId>spring-cloud-config-client</artifactId>
  63. <version>2.0.2.RELEASE</version>
  64. </dependency>
  65. <!-- aspire maven私服 -->
  66. <dependency>
  67. <groupId>info.aspirecn.rdc</groupId>
  68. <artifactId>aspirecloud-commons-sleuthlog-starter</artifactId>
  69. <version>5.0.1</version>
  70. </dependency>
  71. <!--错误日志-->
  72. <dependency>
  73. <groupId>info.aspirecn.rdc</groupId>
  74. <artifactId>aspirecloud-commons-errorlog-starter</artifactId>
  75. <version>5.0.2</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>com.squareup.okhttp3</groupId>
  79. <artifactId>okhttp</artifactId>
  80. <version>3.8.1</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>commons-codec</groupId>
  84. <artifactId>commons-codec</artifactId>
  85. </dependency>
  86. <dependency>
  87. <groupId>info.aspirecn.iov.sjjh</groupId>
  88. <artifactId>iov-sjjh-commons-lang</artifactId>
  89. <version>1.0.0</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>com.alibaba</groupId>
  93. <artifactId>fastjson</artifactId>
  94. <version>1.2.76</version>
  95. </dependency>
  96. <dependency>
  97. <groupId>org.apache.httpcomponents</groupId>
  98. <artifactId>httpclient</artifactId>
  99. <version>4.5.10</version>
  100. </dependency>
  101. <dependency>
  102. <groupId>org.apache.httpcomponents</groupId>
  103. <artifactId>httpcore</artifactId>
  104. <version>4.4.14</version>
  105. </dependency>
  106. </dependencies>
  107. <build>
  108. <plugins>
  109. <plugin>
  110. <groupId>org.springframework.boot</groupId>
  111. <artifactId>spring-boot-maven-plugin</artifactId>
  112. </plugin>
  113. <plugin>
  114. <groupId>org.apache.maven.plugins</groupId>
  115. <artifactId>maven-jar-plugin</artifactId>
  116. </plugin>
  117. <plugin>
  118. <groupId>org.apache.maven.plugins</groupId>
  119. <artifactId>maven-dependency-plugin</artifactId>
  120. </plugin>
  121. <plugin>
  122. <groupId>org.apache.maven.plugins</groupId>
  123. <artifactId>maven-resources-plugin</artifactId>
  124. <executions>
  125. <execution>
  126. <id>default-resources</id>
  127. <phase>validate</phase>
  128. <goals>
  129. <goal>copy-resources</goal>
  130. </goals>
  131. <configuration>
  132. <outputDirectory>target/classes</outputDirectory>
  133. <useDefaultDelimiters>false</useDefaultDelimiters>
  134. <delimiters>
  135. <delimiter>@</delimiter>
  136. </delimiters>
  137. <resources>
  138. <resource>
  139. <directory>src/main/resources</directory>
  140. <filtering>true</filtering>
  141. <includes>
  142. <include>**</include>
  143. </includes>
  144. </resource>
  145. </resources>
  146. </configuration>
  147. </execution>
  148. </executions>
  149. </plugin>
  150. </plugins>
  151. </build>
  152. </project>