seninel部署
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

40 行
1.3KB

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>sentinel-demo</artifactId>
  7. <groupId>com.alibaba.csp</groupId>
  8. <version>1.8.1-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>sentinel-demo-annotation-cdi-interceptor</artifactId>
  12. <properties>
  13. <weld-se-shaded.version>3.1.4.Final</weld-se-shaded.version>
  14. </properties>
  15. <dependencies>
  16. <dependency>
  17. <groupId>com.alibaba.csp</groupId>
  18. <artifactId>sentinel-core</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.alibaba.csp</groupId>
  22. <artifactId>sentinel-annotation-cdi-interceptor</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.alibaba.csp</groupId>
  26. <artifactId>sentinel-transport-simple-http</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.jboss.weld.se</groupId>
  30. <artifactId>weld-se-shaded</artifactId>
  31. <version>${weld-se-shaded.version}</version>
  32. </dependency>
  33. </dependencies>
  34. </project>