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.

66 lines
2.3KB

  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. <dependency>
  41. <groupId>org.powermock</groupId>
  42. <artifactId>powermock-module-junit4</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.powermock</groupId>
  46. <artifactId>powermock-api-mockito2</artifactId>
  47. </dependency>
  48. </dependencies>
  49. <build>
  50. <plugins>
  51. <plugin>
  52. <groupId>org.apache.maven.plugins</groupId>
  53. <artifactId>maven-jar-plugin</artifactId>
  54. <configuration>
  55. <archive>
  56. <manifestEntries>
  57. <Implementation-Version>${project.version}</Implementation-Version>
  58. </manifestEntries>
  59. </archive>
  60. </configuration>
  61. </plugin>
  62. </plugins>
  63. </build>
  64. </project>