pom.xml 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  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. <artifactId>jeecg-cloud-module</artifactId>
  7. <groupId>org.jeecgframework.boot</groupId>
  8. <version>3.2.0</version>
  9. </parent>
  10. <artifactId>jeecg-cloud-sentinel</artifactId>
  11. <name>jeecg-cloud-sentinel</name>
  12. <description>sentinel启动模块</description>
  13. <repositories>
  14. <repository>
  15. <id>aliyun</id>
  16. <name>aliyun Repository</name>
  17. <url>https://maven.aliyun.com/repository/public</url>
  18. <snapshots>
  19. <enabled>false</enabled>
  20. </snapshots>
  21. </repository>
  22. <repository>
  23. <id>jeecg</id>
  24. <name>jeecg Repository</name>
  25. <url>https://maven.jeecg.org/nexus/content/repositories/jeecg</url>
  26. <snapshots>
  27. <enabled>false</enabled>
  28. </snapshots>
  29. </repository>
  30. </repositories>
  31. <dependencies>
  32. <dependency>
  33. <groupId>org.jeecgframework.cloud</groupId>
  34. <artifactId>sentinel-dashboard</artifactId>
  35. <version>1.8.3</version>
  36. <exclusions>
  37. <exclusion>
  38. <artifactId>sentinel-web-servlet</artifactId>
  39. <groupId>com.alibaba.csp</groupId>
  40. </exclusion>
  41. <exclusion>
  42. <artifactId>sentinel-transport-simple-http</artifactId>
  43. <groupId>com.alibaba.csp</groupId>
  44. </exclusion>
  45. <exclusion>
  46. <artifactId>sentinel-parameter-flow-control</artifactId>
  47. <groupId>com.alibaba.csp</groupId>
  48. </exclusion>
  49. <exclusion>
  50. <artifactId>sentinel-core</artifactId>
  51. <groupId>com.alibaba.csp</groupId>
  52. </exclusion>
  53. <exclusion>
  54. <artifactId>sentinel-api-gateway-adapter-common</artifactId>
  55. <groupId>com.alibaba.csp</groupId>
  56. </exclusion>
  57. </exclusions>
  58. </dependency>
  59. <dependency>
  60. <groupId>com.alibaba.csp</groupId>
  61. <artifactId>sentinel-datasource-nacos</artifactId>
  62. <version>1.8.3</version>
  63. <exclusions>
  64. <exclusion>
  65. <artifactId>sentinel-core</artifactId>
  66. <groupId>com.alibaba.csp</groupId>
  67. </exclusion>
  68. </exclusions>
  69. </dependency>
  70. <dependency>
  71. <groupId>com.alibaba.csp</groupId>
  72. <artifactId>sentinel-core</artifactId>
  73. <version>1.8.3</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>com.alibaba.csp</groupId>
  77. <artifactId>sentinel-web-servlet</artifactId>
  78. <version>1.8.3</version>
  79. <exclusions>
  80. <exclusion>
  81. <artifactId>sentinel-core</artifactId>
  82. <groupId>com.alibaba.csp</groupId>
  83. </exclusion>
  84. </exclusions>
  85. </dependency>
  86. <dependency>
  87. <groupId>com.alibaba.csp</groupId>
  88. <artifactId>sentinel-transport-simple-http</artifactId>
  89. <version>1.8.3</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>com.alibaba.csp</groupId>
  93. <artifactId>sentinel-parameter-flow-control</artifactId>
  94. <version>1.8.3</version>
  95. <exclusions>
  96. <exclusion>
  97. <artifactId>sentinel-core</artifactId>
  98. <groupId>com.alibaba.csp</groupId>
  99. </exclusion>
  100. </exclusions>
  101. </dependency>
  102. <dependency>
  103. <groupId>com.alibaba.csp</groupId>
  104. <artifactId>sentinel-api-gateway-adapter-common</artifactId>
  105. <version>1.8.3</version>
  106. <exclusions>
  107. <exclusion>
  108. <artifactId>sentinel-parameter-flow-control</artifactId>
  109. <groupId>com.alibaba.csp</groupId>
  110. </exclusion>
  111. <exclusion>
  112. <artifactId>sentinel-core</artifactId>
  113. <groupId>com.alibaba.csp</groupId>
  114. </exclusion>
  115. </exclusions>
  116. </dependency>
  117. <dependency>
  118. <groupId>org.springframework.boot</groupId>
  119. <artifactId>spring-boot-starter-web</artifactId>
  120. </dependency>
  121. <!--undertow容器-->
  122. <dependency>
  123. <groupId>org.springframework.boot</groupId>
  124. <artifactId>spring-boot-starter-undertow</artifactId>
  125. </dependency>
  126. <dependency>
  127. <groupId>commons-lang</groupId>
  128. <artifactId>commons-lang</artifactId>
  129. <version>2.6</version>
  130. </dependency>
  131. <dependency>
  132. <groupId>org.apache.httpcomponents</groupId>
  133. <artifactId>httpclient</artifactId>
  134. <version>4.5.3</version>
  135. </dependency>
  136. <dependency>
  137. <groupId>org.apache.httpcomponents</groupId>
  138. <artifactId>httpcore</artifactId>
  139. <version>4.4.5</version>
  140. </dependency>
  141. <dependency>
  142. <groupId>org.apache.httpcomponents</groupId>
  143. <artifactId>httpasyncclient</artifactId>
  144. <version>4.1.3</version>
  145. </dependency>
  146. <dependency>
  147. <groupId>org.apache.httpcomponents</groupId>
  148. <artifactId>httpcore-nio</artifactId>
  149. <version>4.4.6</version>
  150. </dependency>
  151. </dependencies>
  152. <build>
  153. <plugins>
  154. <plugin>
  155. <groupId>org.springframework.boot</groupId>
  156. <artifactId>spring-boot-maven-plugin</artifactId>
  157. </plugin>
  158. </plugins>
  159. </build>
  160. </project>