seninel部署
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

52 lignes
1.7KB

  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-logging</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-logging-slf4j</artifactId>
  12. <packaging>jar</packaging>
  13. <properties>
  14. <java.source.version>1.7</java.source.version>
  15. <java.target.version>1.7</java.target.version>
  16. <slf4j.version>1.7.25</slf4j.version>
  17. <slf4j-test.version>1.2.0</slf4j-test.version>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>com.alibaba.csp</groupId>
  22. <artifactId>sentinel-transport-common</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.slf4j</groupId>
  26. <artifactId>slf4j-api</artifactId>
  27. <version>${slf4j.version}</version>
  28. <scope>provided</scope>
  29. </dependency>
  30. <!-- for unit test -->
  31. <dependency>
  32. <groupId>uk.org.lidalia</groupId>
  33. <artifactId>slf4j-test</artifactId>
  34. <version>${slf4j-test.version}</version>
  35. <scope>test</scope>
  36. </dependency>
  37. <dependency>
  38. <groupId>junit</groupId>
  39. <artifactId>junit</artifactId>
  40. <scope>test</scope>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.mockito</groupId>
  44. <artifactId>mockito-core</artifactId>
  45. <scope>test</scope>
  46. </dependency>
  47. </dependencies>
  48. </project>