pom.xml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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>liteflow-rule-plugin</artifactId>
  7. <groupId>com.yomahub</groupId>
  8. <version>${revision}</version>
  9. <relativePath>../pom.xml</relativePath>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <artifactId>liteflow-rule-apollo</artifactId>
  13. <properties>
  14. <maven.compiler.source>8</maven.compiler.source>
  15. <maven.compiler.target>8</maven.compiler.target>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>com.yomahub</groupId>
  20. <artifactId>liteflow-core</artifactId>
  21. <version>${revision}</version>
  22. <optional>true</optional>
  23. <scope>provided</scope>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.apache.httpcomponents</groupId>
  27. <artifactId>httpclient</artifactId>
  28. <version>${httpclient.version}</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.ctrip.framework.apollo</groupId>
  32. <artifactId>apollo-client</artifactId>
  33. </dependency>
  34. </dependencies>
  35. </project>