pom.xml 904 B

12345678910111213141516171819202122232425262728
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <artifactId>xxh-rule-executor</artifactId>
  6. <groupId>com.xxh.cloud</groupId>
  7. <version>1.0.0</version>
  8. </parent>
  9. <artifactId>xx-flow-executor-tree</artifactId>
  10. <packaging>jar</packaging>
  11. <description>规则树执行服务</description>
  12. <properties>
  13. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  14. </properties>
  15. <dependencies>
  16. <dependency>
  17. <groupId>com.xxh.cloud</groupId>
  18. <artifactId>xx-flow-execute-common</artifactId>
  19. <version>${project.version}</version>
  20. </dependency>
  21. </dependencies>
  22. </project>