pom.xml 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214
  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. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>org.springframework.boot</groupId>
  8. <artifactId>spring-boot-starter-parent</artifactId>
  9. <version>2.2.2.RELEASE</version>
  10. <relativePath/> <!-- lookup parent from repository -->
  11. </parent>
  12. <groupId>info.aspirecn.iov.sjjh</groupId>
  13. <artifactId>iov-sjjh-servicenode-supplier-10000036</artifactId>
  14. <version>1.1.6</version>
  15. <dependencies>
  16. <dependency>
  17. <groupId>org.springframework.boot</groupId>
  18. <artifactId>spring-boot-starter-data-redis</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-starter-web</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework.cloud</groupId>
  26. <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.squareup.okhttp3</groupId>
  30. <artifactId>okhttp</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>info.aspirecn.rdc</groupId>
  34. <artifactId>aspirecloud-commons-sleuthlog-starter</artifactId>
  35. <version>5.0.1</version>
  36. </dependency>
  37. <!--错误日志-->
  38. <dependency>
  39. <groupId>info.aspirecn.rdc</groupId>
  40. <artifactId>aspirecloud-commons-errorlog-starter</artifactId>
  41. <version>5.0.2</version>
  42. </dependency>
  43. <!--常量-->
  44. <dependency>
  45. <groupId>info.aspirecn.iov.sjjh</groupId>
  46. <artifactId>iov-sjjh-commons-lang</artifactId>
  47. <version>1.0.0</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>io.springfox</groupId>
  51. <artifactId>springfox-swagger2</artifactId>
  52. <version>2.9.2</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>io.springfox</groupId>
  56. <artifactId>springfox-swagger-ui</artifactId>
  57. <version>2.9.2</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.springframework.cloud</groupId>
  61. <artifactId>spring-cloud-config-client</artifactId>
  62. </dependency>
  63. <dependency>
  64. <groupId>info.aspirecn.iov.sjjh</groupId>
  65. <artifactId>iov-sjjh-servicenode-sms-interface</artifactId>
  66. <version>1.0.0</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>com.alibaba</groupId>
  70. <artifactId>fastjson</artifactId>
  71. <version>1.2.70</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>cn.hutool</groupId>
  75. <artifactId>hutool-all</artifactId>
  76. <version>5.7.22</version>
  77. </dependency>
  78. </dependencies>
  79. <dependencyManagement>
  80. <dependencies>
  81. <dependency>
  82. <groupId>org.springframework.cloud</groupId>
  83. <artifactId>spring-cloud-dependencies</artifactId>
  84. <version>Hoxton.RELEASE</version>
  85. <type>pom</type>
  86. <scope>import</scope>
  87. </dependency>
  88. </dependencies>
  89. </dependencyManagement>
  90. <build>
  91. <plugins>
  92. <!-- <plugin>-->
  93. <!-- <groupId>org.springframework.boot</groupId>-->
  94. <!-- <artifactId>spring-boot-maven-plugin</artifactId>-->
  95. <!-- <configuration>-->
  96. <!-- <includes>-->
  97. <!-- <include>-->
  98. <!-- <groupId>info.aspirecn.iov.sjjh</groupId>-->
  99. <!-- <artifactId>iov-sjjh-commons-lang</artifactId>-->
  100. <!-- </include>-->
  101. <!-- </includes>-->
  102. <!-- </configuration>-->
  103. <!-- </plugin>-->
  104. <!-- <plugin>-->
  105. <!-- <groupId>org.apache.maven.plugins</groupId>-->
  106. <!-- <artifactId>maven-jar-plugin</artifactId>-->
  107. <!-- <configuration>-->
  108. <!-- <archive>-->
  109. <!-- <manifest>-->
  110. <!-- <addClasspath>true</addClasspath>-->
  111. <!-- <classpathPrefix>lib/</classpathPrefix>-->
  112. <!-- </manifest>-->
  113. <!-- </archive>-->
  114. <!-- </configuration>-->
  115. <!-- </plugin>-->
  116. <!-- <plugin>-->
  117. <!-- <groupId>org.apache.maven.plugins</groupId>-->
  118. <!-- <artifactId>maven-dependency-plugin</artifactId>-->
  119. <!-- <executions>-->
  120. <!-- <execution>-->
  121. <!-- <id>copy-dependencies</id>-->
  122. <!-- <phase>prepare-package</phase>-->
  123. <!-- <goals>-->
  124. <!-- <goal>copy-dependencies</goal>-->
  125. <!-- </goals>-->
  126. <!-- <configuration>-->
  127. <!-- <outputDirectory>${project.build.directory}/lib</outputDirectory>-->
  128. <!-- <excludeGroupIds>-->
  129. <!-- info.aspirecn.iov.sjjh-->
  130. <!-- </excludeGroupIds>-->
  131. <!-- </configuration>-->
  132. <!-- </execution>-->
  133. <!-- <execution>-->
  134. <!-- <id>copy</id>-->
  135. <!-- <phase>install</phase>-->
  136. <!-- <goals>-->
  137. <!-- <goal>copy-dependencies</goal>-->
  138. <!-- </goals>-->
  139. <!-- <configuration>-->
  140. <!-- <outputDirectory>-->
  141. <!-- ${project.build.directory}/lib-->
  142. <!-- </outputDirectory>-->
  143. <!-- <excludeGroupIds>-->
  144. <!-- info.aspirecn.iov.sjjh-->
  145. <!-- </excludeGroupIds>-->
  146. <!-- </configuration>-->
  147. <!-- </execution>-->
  148. <!-- </executions>-->
  149. <!-- </plugin>-->
  150. <plugin>
  151. <groupId>org.springframework.boot</groupId>
  152. <artifactId>spring-boot-maven-plugin</artifactId>
  153. </plugin>
  154. <plugin>
  155. <groupId>org.apache.maven.plugins</groupId>
  156. <artifactId>maven-resources-plugin</artifactId>
  157. </plugin>
  158. <plugin>
  159. <groupId>com.spotify</groupId>
  160. <artifactId>docker-maven-plugin</artifactId>
  161. </plugin>
  162. <plugin>
  163. <groupId>org.apache.maven.plugins</groupId>
  164. <artifactId>maven-resources-plugin</artifactId>
  165. <executions>
  166. <execution>
  167. <id>default-resources</id>
  168. <phase>validate</phase>
  169. <goals>
  170. <goal>copy-resources</goal>
  171. </goals>
  172. <configuration>
  173. <outputDirectory>target/classes</outputDirectory>
  174. <useDefaultDelimiters>false</useDefaultDelimiters>
  175. <delimiters>
  176. <delimiter>@</delimiter>
  177. </delimiters>
  178. <resources>
  179. <resource>
  180. <directory>src/main/resources/config</directory>
  181. <targetPath>config</targetPath>
  182. <filtering>true</filtering>
  183. <includes>
  184. <include>**</include>
  185. </includes>
  186. </resource>
  187. </resources>
  188. </configuration>
  189. </execution>
  190. </executions>
  191. </plugin>
  192. </plugins>
  193. </build>
  194. </project>