pom.xml 5.6 KB

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