pom.xml 5.4 KB

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