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.

58 satır
2.0KB

  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-parent</artifactId>
  8. <version>1.5.0-SNAPSHOT</version>
  9. </parent>
  10. <artifactId>sentinel-core</artifactId>
  11. <packaging>jar</packaging>
  12. <description>The core of Sentinel</description>
  13. <dependencies>
  14. <dependency>
  15. <groupId>junit</groupId>
  16. <artifactId>junit</artifactId>
  17. <exclusions>
  18. <exclusion>
  19. <groupId>org.hamcrest</groupId>
  20. <artifactId>hamcrest-core</artifactId>
  21. </exclusion>
  22. <exclusion>
  23. <groupId>org.hamcrest</groupId>
  24. <artifactId>hamcrest-libray</artifactId>
  25. </exclusion>
  26. </exclusions>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.mockito</groupId>
  30. <artifactId>mockito-core</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.awaitility</groupId>
  34. <artifactId>awaitility</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.hamcrest</groupId>
  38. <artifactId>java-hamcrest</artifactId>
  39. </dependency>
  40. </dependencies>
  41. <build>
  42. <plugins>
  43. <plugin>
  44. <groupId>org.apache.maven.plugins</groupId>
  45. <artifactId>maven-jar-plugin</artifactId>
  46. <configuration>
  47. <archive>
  48. <manifestEntries>
  49. <Implementation-Version>${project.version}</Implementation-Version>
  50. </manifestEntries>
  51. </archive>
  52. </configuration>
  53. </plugin>
  54. </plugins>
  55. </build>
  56. </project>