pom.xml 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  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>com.yihu.jw</groupId>
  8. <artifactId>svr-lib-parent-pom</artifactId>
  9. <version>1.0.0</version>
  10. <relativePath>../../svr-lib-parent-pom/pom.xml</relativePath>
  11. </parent>
  12. <groupId>com.yihu.jw</groupId>
  13. <artifactId>svr-base</artifactId>
  14. <version>1.0.0</version>
  15. <packaging>jar</packaging>
  16. <dependencies>
  17. <dependency>
  18. <groupId>com.yihu.jw</groupId>
  19. <artifactId>common-request-mapping</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.yihu.jw</groupId>
  23. <artifactId>common-exception</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.yihu.jw</groupId>
  27. <artifactId>common-util</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.yihu.jw</groupId>
  31. <artifactId>common-rest-model</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.yihu.base</groupId>
  35. <artifactId>common-swagger</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.yihu.base</groupId>
  39. <artifactId>common-log</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.yihu.base</groupId>
  43. <artifactId>common-data-mysql</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.springframework.boot</groupId>
  47. <artifactId>spring-boot-starter-web</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.springframework.boot</groupId>
  51. <artifactId>spring-boot-starter-data-jpa</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.springframework.boot</groupId>
  55. <artifactId>spring-boot-starter-tomcat</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.springframework.boot</groupId>
  59. <artifactId>spring-boot-starter-jdbc</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.springframework.boot</groupId>
  63. <artifactId>spring-boot-starter-aop</artifactId>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.springframework.boot</groupId>
  67. <artifactId>spring-boot-starter-logging</artifactId>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.springframework.boot</groupId>
  71. <artifactId>spring-boot-starter-actuator</artifactId>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.springframework.cloud</groupId>
  75. <artifactId>spring-cloud-starter-eureka</artifactId>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.springframework.cloud</groupId>
  79. <artifactId>spring-cloud-starter-config</artifactId>
  80. </dependency>
  81. <!--zipkin支持分布式追踪系统-->
  82. <dependency>
  83. <groupId>org.springframework.cloud</groupId>
  84. <artifactId>spring-cloud-starter-sleuth</artifactId>
  85. </dependency>
  86. <dependency>
  87. <groupId>org.springframework.cloud</groupId>
  88. <artifactId>spring-cloud-sleuth-zipkin</artifactId>
  89. </dependency>
  90. <dependency>
  91. <groupId>org.springframework</groupId>
  92. <artifactId>spring-core</artifactId>
  93. </dependency>
  94. <dependency>
  95. <groupId>com.fasterxml.jackson.core</groupId>
  96. <artifactId>jackson-annotations</artifactId>
  97. </dependency>
  98. <dependency>
  99. <groupId>com.fasterxml.jackson.core</groupId>
  100. <artifactId>jackson-core</artifactId>
  101. </dependency>
  102. <dependency>
  103. <groupId>com.fasterxml.jackson.core</groupId>
  104. <artifactId>jackson-databind</artifactId>
  105. </dependency>
  106. <dependency>
  107. <groupId>org.springframework</groupId>
  108. <artifactId>spring-web</artifactId>
  109. </dependency>
  110. <dependency>
  111. <groupId>org.springframework.data</groupId>
  112. <artifactId>spring-data-jpa</artifactId>
  113. </dependency>
  114. <dependency>
  115. <groupId>org.springframework.data</groupId>
  116. <artifactId>spring-data-commons</artifactId>
  117. </dependency>
  118. <dependency>
  119. <groupId>org.json</groupId>
  120. <artifactId>json</artifactId>
  121. </dependency>
  122. </dependencies>
  123. <build>
  124. <finalName>svr-base</finalName>
  125. <plugins>
  126. <!--springboot插件 start-->
  127. <plugin>
  128. <groupId>org.springframework.boot</groupId>
  129. <artifactId>spring-boot-maven-plugin</artifactId>
  130. <executions>
  131. <execution>
  132. <goals>
  133. <goal>repackage</goal>
  134. </goals>
  135. </execution>
  136. </executions>
  137. </plugin>
  138. <!--springboot插件 en-->
  139. </plugins>
  140. </build>
  141. </project>