pom.xml 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  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.0.6.RELEASE</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>info.aspirecn.iov.sjjh</groupId>
  12. <artifactId>iov-sjjh-servicenode-supplier-10000057</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>iov-sjjh-servicenode-supplier-10000057</name>
  15. <description>iov-sjjh-servicenode-supplier-10000057</description>
  16. <properties>
  17. <java.version>1.8</java.version>
  18. </properties>
  19. <dependencies>
  20. <!-- https://mvnrepository.com/artifact/net.logstash.logback/logstash-logback-encoder -->
  21. <dependency>
  22. <groupId>net.logstash.logback</groupId>
  23. <artifactId>logstash-logback-encoder</artifactId>
  24. <version>5.0</version>
  25. </dependency>
  26. <!-- 服务注册 -->
  27. <dependency>
  28. <groupId>org.springframework.cloud</groupId>
  29. <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.springframework.boot</groupId>
  33. <artifactId>spring-boot-starter-web</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>io.springfox</groupId>
  37. <artifactId>springfox-swagger2</artifactId>
  38. <version>2.9.2</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>io.springfox</groupId>
  42. <artifactId>springfox-swagger-ui</artifactId>
  43. <version>2.9.2</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.springframework.boot</groupId>
  47. <artifactId>spring-boot-devtools</artifactId>
  48. <optional>true</optional>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.springframework.cloud</groupId>
  52. <artifactId>spring-cloud-config-client</artifactId>
  53. </dependency>
  54. <!-- aspire maven私服 -->
  55. <dependency>
  56. <groupId>info.aspirecn.rdc</groupId>
  57. <artifactId>aspirecloud-commons-sleuthlog-starter</artifactId>
  58. <version>5.0.1</version>
  59. </dependency>
  60. <!--错误日志-->
  61. <dependency>
  62. <groupId>info.aspirecn.rdc</groupId>
  63. <artifactId>aspirecloud-commons-errorlog-starter</artifactId>
  64. <version>5.0.2</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>com.squareup.okhttp3</groupId>
  68. <artifactId>okhttp</artifactId>
  69. </dependency>
  70. <dependency>
  71. <groupId>commons-codec</groupId>
  72. <artifactId>commons-codec</artifactId>
  73. </dependency>
  74. <dependency>
  75. <groupId>info.aspirecn.iov.sjjh</groupId>
  76. <artifactId>iov-sjjh-commons-lang</artifactId>
  77. <version>1.0.0</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.springframework.boot</groupId>
  81. <artifactId>spring-boot-starter-data-redis</artifactId>
  82. </dependency>
  83. </dependencies>
  84. <dependencyManagement>
  85. <dependencies>
  86. <dependency>
  87. <groupId>org.springframework.cloud</groupId>
  88. <artifactId>spring-cloud-dependencies</artifactId>
  89. <version>Finchley.SR2</version>
  90. <type>pom</type>
  91. <scope>import</scope>
  92. </dependency>
  93. </dependencies>
  94. </dependencyManagement>
  95. <build>
  96. <plugins>
  97. <plugin>
  98. <groupId>org.springframework.boot</groupId>
  99. <artifactId>spring-boot-maven-plugin</artifactId>
  100. </plugin>
  101. <plugin>
  102. <groupId>org.apache.maven.plugins</groupId>
  103. <artifactId>maven-resources-plugin</artifactId>
  104. </plugin>
  105. <plugin>
  106. <groupId>com.spotify</groupId>
  107. <artifactId>docker-maven-plugin</artifactId>
  108. </plugin>
  109. <plugin>
  110. <groupId>org.apache.maven.plugins</groupId>
  111. <artifactId>maven-resources-plugin</artifactId>
  112. <executions>
  113. <execution>
  114. <id>default-resources</id>
  115. <phase>validate</phase>
  116. <goals>
  117. <goal>copy-resources</goal>
  118. </goals>
  119. <configuration>
  120. <outputDirectory>target/classes</outputDirectory>
  121. <useDefaultDelimiters>false</useDefaultDelimiters>
  122. <delimiters>
  123. <delimiter>@</delimiter>
  124. </delimiters>
  125. <resources>
  126. <resource>
  127. <directory>src/main/resources/config</directory>
  128. <targetPath>config</targetPath>
  129. <filtering>true</filtering>
  130. <includes>
  131. <include>**</include>
  132. </includes>
  133. </resource>
  134. </resources>
  135. </configuration>
  136. </execution>
  137. </executions>
  138. </plugin>
  139. </plugins>
  140. </build>
  141. </project>