pom.xml 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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-execute-framework</artifactId>
  10. <packaging>jar</packaging>
  11. <description>运行端</description>
  12. <properties>
  13. <maven.compiler.source>8</maven.compiler.source>
  14. <maven.compiler.target>8</maven.compiler.target>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>com.xxh.cloud</groupId>
  20. <artifactId>xx-config-framework</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.xxh.cloud</groupId>
  24. <artifactId>xx-config-mybatisplus</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.xxh.cloud</groupId>
  28. <artifactId>xx-flow-execute-common</artifactId>
  29. <version>${project.version}</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.xxh.cloud</groupId>
  33. <artifactId>xx-flow-executor-flow</artifactId>
  34. <version>${project.version}</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.xxh.cloud</groupId>
  38. <artifactId>log-manager-client</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>com.xxh.cloud</groupId>
  42. <artifactId>xx-flow-execute-client-api</artifactId>
  43. <version>${project.version}</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.xxh.cloud</groupId>
  47. <artifactId>metadata-client-api</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.xxh.cloud</groupId>
  51. <artifactId>user-client-api</artifactId>
  52. </dependency>
  53. </dependencies>
  54. </project>