pom.xml 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  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. <packaging>jar</packaging>
  6. <parent>
  7. <groupId>org.springframework.boot</groupId>
  8. <artifactId>spring-boot-starter-parent</artifactId>
  9. <version>2.3.12.RELEASE</version>
  10. <relativePath/>
  11. </parent>
  12. <groupId>com.fdkankan</groupId>
  13. <artifactId>service-monitor</artifactId>
  14. <version>2.0.0-SNAPSHOT</version>
  15. <repositories>
  16. <repository>
  17. <id>releases</id>
  18. <url>http://192.168.0.115:8081/nexus-2.14.2-01/content/repositories/releases/</url>
  19. </repository>
  20. <repository>
  21. <id>snapshots</id>
  22. <url>http://192.168.0.115:8081/nexus-2.14.2-01/content/repositories/snapshots/</url>
  23. </repository>
  24. <repository>
  25. <id>nexus-aliyun</id>
  26. <url>http://maven.aliyun.com/nexus/content/groups/public</url>
  27. </repository>
  28. </repositories>
  29. <properties>
  30. <java.version>1.8</java.version>
  31. <spring.cloud-version>Hoxton.SR8</spring.cloud-version>
  32. <fastjson-version>1.2.79</fastjson-version>
  33. <spring-boot-admin.version>2.3.1</spring-boot-admin.version>
  34. </properties>
  35. <dependencies>
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-starter-web</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>de.codecentric</groupId>
  42. <artifactId>spring-boot-admin-starter-server</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>com.alibaba.cloud</groupId>
  46. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.alibaba.cloud</groupId>
  50. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>com.alibaba</groupId>
  54. <artifactId>fastjson</artifactId>
  55. <version>${fastjson-version}</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.springframework.boot</groupId>
  59. <artifactId>spring-boot-starter-security</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>com.yomahub</groupId>
  63. <artifactId>tlog-web-spring-boot-starter</artifactId>
  64. <version>1.3.6</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>com.yomahub</groupId>
  68. <artifactId>tlog-feign-spring-boot-starter</artifactId>
  69. <version>1.3.6</version>
  70. </dependency>
  71. </dependencies>
  72. <dependencyManagement>
  73. <dependencies>
  74. <dependency>
  75. <groupId>de.codecentric</groupId>
  76. <artifactId>spring-boot-admin-dependencies</artifactId>
  77. <version>${spring-boot-admin.version}</version>
  78. <type>pom</type>
  79. <scope>import</scope>
  80. </dependency>
  81. <dependency>
  82. <groupId>com.alibaba.cloud</groupId>
  83. <artifactId>spring-cloud-alibaba-dependencies</artifactId>
  84. <version>2.2.7.RELEASE</version>
  85. <type>pom</type>
  86. <scope>import</scope>
  87. </dependency>
  88. <dependency>
  89. <groupId>org.springframework.cloud</groupId>
  90. <artifactId>spring-cloud-dependencies</artifactId>
  91. <version>${spring.cloud-version}</version>
  92. <type>pom</type>
  93. <scope>import</scope>
  94. </dependency>
  95. </dependencies>
  96. </dependencyManagement>
  97. <build>
  98. <pluginManagement>
  99. <plugins>
  100. <plugin>
  101. <groupId>org.springframework.boot</groupId>
  102. <artifactId>spring-boot-maven-plugin</artifactId>
  103. <executions>
  104. <execution>
  105. <goals>
  106. <goal>repackage</goal>
  107. </goals>
  108. </execution>
  109. </executions>
  110. </plugin>
  111. <plugin>
  112. <groupId>org.apache.maven.plugins</groupId>
  113. <artifactId>maven-surefire-plugin</artifactId>
  114. <configuration>
  115. <testFailureIgnore>true</testFailureIgnore>
  116. </configuration>
  117. </plugin>
  118. </plugins>
  119. </pluginManagement>
  120. </build>
  121. <distributionManagement>
  122. <repository>
  123. <id>releases</id>
  124. <url>http://192.168.0.115:8081/nexus-2.14.2-01/content/repositories/releases/</url>
  125. </repository>
  126. <snapshotRepository>
  127. <id>snapshots</id>
  128. <url>http://192.168.0.115:8081/nexus-2.14.2-01/content/repositories/snapshots/</url>
  129. </snapshotRepository>
  130. </distributionManagement>
  131. </project>