seninel部署
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

pom.xml 2.4KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.alibaba.csp</groupId>
  7. <artifactId>sentinel-adapter</artifactId>
  8. <version>1.8.2-SNAPSHOT</version>
  9. </parent>
  10. <artifactId>sentinel-jax-rs-adapter</artifactId>
  11. <packaging>jar</packaging>
  12. <properties>
  13. <javax.ws.rs-api.version>2.1.1</javax.ws.rs-api.version>
  14. </properties>
  15. <dependencies>
  16. <dependency>
  17. <groupId>com.alibaba.csp</groupId>
  18. <artifactId>sentinel-core</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>javax.ws.rs</groupId>
  22. <artifactId>javax.ws.rs-api</artifactId>
  23. <version>${javax.ws.rs-api.version}</version>
  24. <scope>provided</scope>
  25. </dependency>
  26. <dependency>
  27. <groupId>junit</groupId>
  28. <artifactId>junit</artifactId>
  29. <scope>test</scope>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.springframework.boot</groupId>
  33. <artifactId>spring-boot-starter-web</artifactId>
  34. <version>2.2.6.RELEASE</version>
  35. <scope>test</scope>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-starter-test</artifactId>
  40. <version>2.2.6.RELEASE</version>
  41. <scope>test</scope>
  42. </dependency>
  43. <dependency>
  44. <groupId>io.rest-assured</groupId>
  45. <artifactId>rest-assured</artifactId>
  46. <version>4.3.0</version>
  47. <scope>test</scope>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.jboss.resteasy</groupId>
  51. <artifactId>resteasy-spring-boot-starter</artifactId>
  52. <version>4.5.1.Final</version>
  53. <scope>test</scope>
  54. </dependency>
  55. </dependencies>
  56. <build>
  57. <plugins>
  58. <plugin>
  59. <groupId>org.apache.maven.plugins</groupId>
  60. <artifactId>maven-surefire-plugin</artifactId>
  61. <configuration>
  62. <forkMode>always</forkMode>
  63. </configuration>
  64. </plugin>
  65. </plugins>
  66. </build>
  67. </project>