pom.xml 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. 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. <parent>
  5. <groupId>org.springframework.boot</groupId>
  6. <artifactId>spring-boot-starter-parent</artifactId>
  7. <version>2.0.6.RELEASE</version>
  8. <relativePath/> <!-- lookup parent from repository -->
  9. </parent>
  10. <artifactId>iov-sjjh-servicenode-supplier-10000005</artifactId>
  11. <version>1.2.8</version>
  12. <name>iov-sjjh-servicenode-supplier-10000005</name>
  13. <url>http://maven.apache.org</url>
  14. <properties>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. </properties>
  17. <dependencies>
  18. <!-- 服务注册 -->
  19. <dependency>
  20. <groupId>org.springframework.cloud</groupId>
  21. <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.springframework.boot</groupId>
  25. <artifactId>spring-boot-starter-web</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-devtools</artifactId>
  30. <optional>true</optional>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework.cloud</groupId>
  34. <artifactId>spring-cloud-config-client</artifactId>
  35. </dependency>
  36. <!--链路日志-->
  37. <dependency>
  38. <groupId>info.aspirecn.rdc</groupId>
  39. <artifactId>aspirecloud-commons-sleuthlog-starter</artifactId>
  40. <version>5.0.1</version>
  41. </dependency>
  42. <!--错误日志-->
  43. <dependency>
  44. <groupId>info.aspirecn.rdc</groupId>
  45. <artifactId>aspirecloud-commons-errorlog-starter</artifactId>
  46. <version>5.0.2</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>info.aspirecn.iov.sjjh</groupId>
  50. <artifactId>iov-sjjh-servicenode-supplier-10000005-interface</artifactId>
  51. <version>1.0.0</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>com.squareup.okhttp3</groupId>
  55. <artifactId>okhttp</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>commons-codec</groupId>
  59. <artifactId>commons-codec</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>com.alibaba</groupId>
  63. <artifactId>fastjson</artifactId>
  64. <version>1.2.70</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>info.aspirecn.iov.sjjh</groupId>
  68. <artifactId>iov-sjjh-commons-lang</artifactId>
  69. <version>1.0.0</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>io.springfox</groupId>
  73. <artifactId>springfox-swagger2</artifactId>
  74. <version>2.9.2</version>
  75. </dependency>
  76. <dependency>
  77. <groupId>io.springfox</groupId>
  78. <artifactId>springfox-swagger-ui</artifactId>
  79. <version>2.9.2</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.springframework.cloud</groupId>
  83. <artifactId>spring-cloud-starter-zipkin</artifactId>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.springframework.cloud</groupId>
  87. <artifactId>spring-cloud-starter-openfeign</artifactId>
  88. <version>2.2.6.RELEASE</version>
  89. </dependency>
  90. </dependencies>
  91. <dependencyManagement>
  92. <dependencies>
  93. <dependency>
  94. <groupId>org.springframework.cloud</groupId>
  95. <artifactId>spring-cloud-dependencies</artifactId>
  96. <version>Finchley.SR2</version>
  97. <type>pom</type>
  98. <scope>import</scope>
  99. </dependency>
  100. </dependencies>
  101. </dependencyManagement>
  102. <build>
  103. <plugins>
  104. <plugin>
  105. <groupId>org.springframework.boot</groupId>
  106. <artifactId>spring-boot-maven-plugin</artifactId>
  107. </plugin>
  108. <plugin>
  109. <groupId>org.apache.maven.plugins</groupId>
  110. <artifactId>maven-jar-plugin</artifactId>
  111. </plugin>
  112. <plugin>
  113. <groupId>org.apache.maven.plugins</groupId>
  114. <artifactId>maven-dependency-plugin</artifactId>
  115. </plugin>
  116. <plugin>
  117. <groupId>org.apache.maven.plugins</groupId>
  118. <artifactId>maven-resources-plugin</artifactId>
  119. <executions>
  120. <execution>
  121. <id>default-resources</id>
  122. <phase>validate</phase>
  123. <goals>
  124. <goal>copy-resources</goal>
  125. </goals>
  126. <configuration>
  127. <outputDirectory>target/classes</outputDirectory>
  128. <useDefaultDelimiters>false</useDefaultDelimiters>
  129. <delimiters>
  130. <delimiter>@</delimiter>
  131. </delimiters>
  132. <resources>
  133. <resource>
  134. <directory>src/main/resources</directory>
  135. <filtering>true</filtering>
  136. <includes>
  137. <include>**</include>
  138. </includes>
  139. </resource>
  140. </resources>
  141. </configuration>
  142. </execution>
  143. </executions>
  144. </plugin>
  145. </plugins>
  146. </build>
  147. </project>