2019-03-21 19:54:42 +08:00
|
|
|
|
<?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">
|
2020-03-26 16:47:12 +08:00
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
<artifactId>liteflow-core</artifactId>
|
2020-03-26 00:55:56 +08:00
|
|
|
|
<description>liteflow core</description>
|
2019-03-21 19:54:42 +08:00
|
|
|
|
|
|
|
|
|
<parent>
|
2020-03-26 00:03:11 +08:00
|
|
|
|
<groupId>com.yomahub</groupId>
|
2019-03-21 19:54:42 +08:00
|
|
|
|
<artifactId>liteflow</artifactId>
|
2022-05-23 22:51:07 +08:00
|
|
|
|
<version>2.7.0</version>
|
2019-03-21 19:54:42 +08:00
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
2021-08-09 00:54:06 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.yomahub</groupId>
|
|
|
|
|
<artifactId>liteflow-script-common</artifactId>
|
|
|
|
|
<version>${project.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2020-10-22 21:34:12 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>cn.hutool</groupId>
|
|
|
|
|
<artifactId>hutool-core</artifactId>
|
|
|
|
|
</dependency>
|
2019-03-21 19:54:42 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
|
|
<artifactId>fastjson</artifactId>
|
|
|
|
|
</dependency>
|
2021-03-26 15:58:57 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.yaml</groupId>
|
|
|
|
|
<artifactId>snakeyaml</artifactId>
|
|
|
|
|
</dependency>
|
2019-03-21 19:54:42 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>dom4j</groupId>
|
|
|
|
|
<artifactId>dom4j</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.curator</groupId>
|
|
|
|
|
<artifactId>curator-framework</artifactId>
|
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<artifactId>log4j</artifactId>
|
|
|
|
|
<groupId>log4j</groupId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.curator</groupId>
|
|
|
|
|
<artifactId>curator-recipes</artifactId>
|
|
|
|
|
</dependency>
|
2021-03-26 17:05:05 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
|
|
<artifactId>transmittable-thread-local</artifactId>
|
|
|
|
|
</dependency>
|
2022-05-16 11:58:18 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>net.bytebuddy</groupId>
|
|
|
|
|
<artifactId>byte-buddy</artifactId>
|
|
|
|
|
</dependency>
|
2019-03-21 19:54:42 +08:00
|
|
|
|
</dependencies>
|
|
|
|
|
</project>
|