liteFlow/liteflow-core/pom.xml

100 lines
2.7 KiB
XML
Raw Normal View History

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">
<modelVersion>4.0.0</modelVersion>
<packaging>jar</packaging>
<artifactId>liteflow-core</artifactId>
<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>
2021-07-26 14:07:55 +08:00
<version>2.5.11</version>
2019-03-21 19:54:42 +08:00
</parent>
<dependencies>
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.springframework</groupId>
<artifactId>spring-beans</artifactId>
2020-03-25 18:44:30 +08:00
<optional>true</optional>
2019-03-21 19:54:42 +08:00
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
2020-03-25 18:44:30 +08:00
<optional>true</optional>
2019-03-21 19:54:42 +08:00
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-aop</artifactId>
2020-03-25 18:44:30 +08:00
<optional>true</optional>
2019-03-21 19:54:42 +08:00
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-expression</artifactId>
2020-03-25 18:44:30 +08:00
<optional>true</optional>
2019-03-21 19:54:42 +08:00
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
2020-03-25 18:44:30 +08:00
<optional>true</optional>
2019-03-21 19:54:42 +08:00
</dependency>
<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>junit</groupId>
<artifactId>junit</artifactId>
2021-04-08 11:11:23 +08:00
<scope>test</scope>
2019-03-21 19:54:42 +08:00
</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>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>transmittable-thread-local</artifactId>
</dependency>
2021-04-08 11:11:23 +08:00
<dependency>
<groupId>org.apache.curator</groupId>
<artifactId>curator-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.101tec</groupId>
<artifactId>zkclient</artifactId>
<scope>test</scope>
</dependency>
2019-03-21 19:54:42 +08:00
</dependencies>
</project>