pom.xml 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  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.1.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.2</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.alibaba.csp</groupId>
  39. <artifactId>sentinel-datasource-nacos</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.alibaba.csp</groupId>
  43. <artifactId>sentinel-core</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.alibaba.csp</groupId>
  47. <artifactId>sentinel-web-servlet</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.alibaba.csp</groupId>
  51. <artifactId>sentinel-transport-simple-http</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>com.alibaba.csp</groupId>
  55. <artifactId>sentinel-parameter-flow-control</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.alibaba.csp</groupId>
  59. <artifactId>sentinel-api-gateway-adapter-common</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.springframework.boot</groupId>
  63. <artifactId>spring-boot-starter-web</artifactId>
  64. </dependency>
  65. <!--undertow容器-->
  66. <dependency>
  67. <groupId>org.springframework.boot</groupId>
  68. <artifactId>spring-boot-starter-undertow</artifactId>
  69. </dependency>
  70. <dependency>
  71. <groupId>commons-lang</groupId>
  72. <artifactId>commons-lang</artifactId>
  73. <version>2.6</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.apache.httpcomponents</groupId>
  77. <artifactId>httpclient</artifactId>
  78. <version>4.5.3</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.apache.httpcomponents</groupId>
  82. <artifactId>httpcore</artifactId>
  83. <version>4.4.5</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.apache.httpcomponents</groupId>
  87. <artifactId>httpasyncclient</artifactId>
  88. <version>4.1.3</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>org.apache.httpcomponents</groupId>
  92. <artifactId>httpcore-nio</artifactId>
  93. <version>4.4.6</version>
  94. </dependency>
  95. </dependencies>
  96. <build>
  97. <plugins>
  98. <plugin>
  99. <groupId>org.springframework.boot</groupId>
  100. <artifactId>spring-boot-maven-plugin</artifactId>
  101. </plugin>
  102. </plugins>
  103. </build>
  104. </project>