1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns="http://maven.apache.org/POM/4.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>com.xxh.cloud</groupId>
- <artifactId>xxh-rule-config</artifactId>
- <version>1.0.0</version>
- </parent>
- <artifactId>xx-rule-config-framework</artifactId>
- <properties>
- <maven.compiler.source>8</maven.compiler.source>
- <maven.compiler.target>8</maven.compiler.target>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- </properties>
- <dependencies>
- <dependency>
- <groupId>com.xxh.cloud</groupId>
- <artifactId>xx-config-framework</artifactId>
- </dependency>
- <dependency>
- <groupId>com.xxh.cloud</groupId>
- <artifactId>xx-config-mybatisplus</artifactId>
- </dependency>
- <dependency>
- <groupId>com.xxh.cloud</groupId>
- <artifactId>metadata-common</artifactId>
- </dependency>
- <dependency>
- <groupId>com.xxh.cloud</groupId>
- <artifactId>xx-flow-execute-common</artifactId>
- <version>${project.version}</version>
- </dependency>
- <!-- del -->
- <dependency>
- <groupId>com.xxh.cloud</groupId>
- <artifactId>xx-flow-executor-flow</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.xxh.cloud</groupId>
- <artifactId>xx-rule-config-client-api</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.xxh.cloud</groupId>
- <artifactId>metadata-client-api</artifactId>
- </dependency>
- <dependency>
- <groupId>com.xxh.cloud</groupId>
- <artifactId>user-client-api</artifactId>
- </dependency>
- <dependency>
- <groupId>com.xxh.cloud</groupId>
- <artifactId>log-manager-client</artifactId>
- </dependency>
- <!-- del -->
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>QLExpress</artifactId>
- <version>3.2.0</version>
- </dependency>
- </dependencies>
- </project>
|