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.

72 lines
2.5KB

  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.8.2-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. <scope>test</scope>
  18. <exclusions>
  19. <exclusion>
  20. <groupId>org.hamcrest</groupId>
  21. <artifactId>hamcrest-core</artifactId>
  22. </exclusion>
  23. <exclusion>
  24. <groupId>org.hamcrest</groupId>
  25. <artifactId>hamcrest-libray</artifactId>
  26. </exclusion>
  27. </exclusions>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.mockito</groupId>
  31. <artifactId>mockito-core</artifactId>
  32. <scope>test</scope>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.awaitility</groupId>
  36. <artifactId>awaitility</artifactId>
  37. <scope>test</scope>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.hamcrest</groupId>
  41. <artifactId>java-hamcrest</artifactId>
  42. <scope>test</scope>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.powermock</groupId>
  46. <artifactId>powermock-module-junit4</artifactId>
  47. <scope>test</scope>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.powermock</groupId>
  51. <artifactId>powermock-api-mockito2</artifactId>
  52. <scope>test</scope>
  53. </dependency>
  54. </dependencies>
  55. <build>
  56. <plugins>
  57. <plugin>
  58. <groupId>org.apache.maven.plugins</groupId>
  59. <artifactId>maven-jar-plugin</artifactId>
  60. <configuration>
  61. <archive>
  62. <manifestEntries>
  63. <Implementation-Version>${project.version}</Implementation-Version>
  64. </manifestEntries>
  65. </archive>
  66. </configuration>
  67. </plugin>
  68. </plugins>
  69. </build>
  70. </project>