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"
|
2022-06-26 21:03:55 +08:00
|
|
|
|
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>
|
2020-03-26 00:03:11 +08:00
|
|
|
|
<groupId>com.yomahub</groupId>
|
2022-06-26 21:03:55 +08:00
|
|
|
|
<artifactId>liteflow</artifactId>
|
|
|
|
|
<packaging>pom</packaging>
|
2022-07-04 15:54:53 +08:00
|
|
|
|
<version>${revision}</version>
|
2020-03-26 18:24:23 +08:00
|
|
|
|
<name>liteflow</name>
|
2022-08-19 12:53:10 +08:00
|
|
|
|
<description>Small but powerful rules engine</description>
|
2020-03-26 18:24:23 +08:00
|
|
|
|
<url>https://github.com/bryan31/liteflow</url>
|
2020-03-26 00:55:56 +08:00
|
|
|
|
|
|
|
|
|
<licenses>
|
|
|
|
|
<license>
|
|
|
|
|
<name>MIT License</name>
|
|
|
|
|
<url>https://opensource.org/licenses/MIT</url>
|
|
|
|
|
<distribution>repo</distribution>
|
|
|
|
|
</license>
|
|
|
|
|
</licenses>
|
|
|
|
|
|
|
|
|
|
<developers>
|
|
|
|
|
<developer>
|
|
|
|
|
<email>weenyc31@163.com</email>
|
|
|
|
|
<name>bryan.zhang</name>
|
|
|
|
|
<url>https://github.com/bryan31</url>
|
|
|
|
|
<id>bryan31</id>
|
|
|
|
|
</developer>
|
|
|
|
|
</developers>
|
|
|
|
|
|
|
|
|
|
<issueManagement>
|
|
|
|
|
<system>Github Issue</system>
|
|
|
|
|
<url>https://github.com/bryan31/liteflow/issues</url>
|
|
|
|
|
</issueManagement>
|
|
|
|
|
|
|
|
|
|
<scm>
|
|
|
|
|
<connection>scm:git@github.com:bryan31/liteflow.git</connection>
|
|
|
|
|
<developerConnection>scm:git@github.com:bryan31/liteflow.git</developerConnection>
|
|
|
|
|
<url>git@github.com:bryan31/liteflow.git</url>
|
|
|
|
|
</scm>
|
2019-03-21 19:54:42 +08:00
|
|
|
|
|
2022-06-26 21:03:55 +08:00
|
|
|
|
<properties>
|
2022-09-11 15:03:07 +08:00
|
|
|
|
<revision>2.9.0</revision>
|
2022-07-04 15:54:53 +08:00
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
2021-11-08 13:48:39 +08:00
|
|
|
|
<maven.compiler.source>8</maven.compiler.source>
|
|
|
|
|
<maven.compiler.target>8</maven.compiler.target>
|
2021-03-30 13:49:53 +08:00
|
|
|
|
<springboot.version>2.0.5.RELEASE</springboot.version>
|
2019-03-21 19:54:42 +08:00
|
|
|
|
<spring.version>5.0.9.RELEASE</spring.version>
|
2022-01-17 18:14:32 +08:00
|
|
|
|
<org.slf4j.version>1.7.32</org.slf4j.version>
|
2022-08-06 14:15:59 +08:00
|
|
|
|
<jackson.version>2.13.3</jackson.version>
|
2022-01-17 18:14:32 +08:00
|
|
|
|
<snakeyaml.version>1.29</snakeyaml.version>
|
2022-06-15 17:22:32 +08:00
|
|
|
|
<dom4j.version>2.1.3</dom4j.version>
|
2022-01-17 18:14:32 +08:00
|
|
|
|
<curator.version>5.1.0</curator.version>
|
2019-03-21 19:54:42 +08:00
|
|
|
|
<junit.version>4.12</junit.version>
|
2022-01-17 18:14:32 +08:00
|
|
|
|
<hutool-core.version>5.7.19</hutool-core.version>
|
|
|
|
|
<transmittable-thread-local.version>2.12.3</transmittable-thread-local.version>
|
2021-04-08 11:11:23 +08:00
|
|
|
|
<curator-test.version>5.1.0</curator-test.version>
|
|
|
|
|
<zkclient.version>0.10</zkclient.version>
|
2022-06-21 00:36:26 +08:00
|
|
|
|
<qlexpress.version>3.3.0</qlexpress.version>
|
2022-01-17 18:14:32 +08:00
|
|
|
|
<groovy.version>3.0.8</groovy.version>
|
2022-05-16 11:58:18 +08:00
|
|
|
|
<bytebuddy.version>1.11.13</bytebuddy.version>
|
2022-06-26 21:03:55 +08:00
|
|
|
|
<aspectjweaver.version>1.8.13</aspectjweaver.version>
|
|
|
|
|
<logback-classic.version>1.2.3</logback-classic.version>
|
|
|
|
|
</properties>
|
2019-03-21 19:54:42 +08:00
|
|
|
|
|
2022-06-26 21:03:55 +08:00
|
|
|
|
<dependencyManagement>
|
2019-03-21 19:54:42 +08:00
|
|
|
|
<dependencies>
|
2022-06-26 21:03:55 +08:00
|
|
|
|
<dependency>
|
2019-03-21 19:54:42 +08:00
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-beans</artifactId>
|
|
|
|
|
<version>${spring.version}</version>
|
2022-01-17 18:14:32 +08:00
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
<optional>true</optional>
|
2019-03-21 19:54:42 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-context</artifactId>
|
|
|
|
|
<version>${spring.version}</version>
|
2022-01-17 18:14:32 +08:00
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
<optional>true</optional>
|
2019-03-21 19:54:42 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-aop</artifactId>
|
|
|
|
|
<version>${spring.version}</version>
|
2022-01-17 18:14:32 +08:00
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
<optional>true</optional>
|
2019-03-21 19:54:42 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-expression</artifactId>
|
|
|
|
|
<version>${spring.version}</version>
|
2022-01-17 18:14:32 +08:00
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
<optional>true</optional>
|
2019-03-21 19:54:42 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-test</artifactId>
|
|
|
|
|
<version>${spring.version}</version>
|
2022-07-05 22:23:16 +08:00
|
|
|
|
<scope>test</scope>
|
2022-01-17 18:14:32 +08:00
|
|
|
|
<optional>true</optional>
|
2019-03-21 19:54:42 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
|
<version>${org.slf4j.version}</version>
|
|
|
|
|
</dependency>
|
2022-08-02 17:19:52 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
|
<artifactId>jackson-databind</artifactId>
|
|
|
|
|
<version>${jackson.version}</version>
|
|
|
|
|
</dependency>
|
2021-03-26 15:58:57 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.yaml</groupId>
|
|
|
|
|
<artifactId>snakeyaml</artifactId>
|
|
|
|
|
<version>${snakeyaml.version}</version>
|
|
|
|
|
</dependency>
|
2019-03-21 19:54:42 +08:00
|
|
|
|
<dependency>
|
2022-06-15 17:22:32 +08:00
|
|
|
|
<groupId>org.dom4j</groupId>
|
2019-03-21 19:54:42 +08:00
|
|
|
|
<artifactId>dom4j</artifactId>
|
|
|
|
|
<version>${dom4j.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
2022-06-26 21:03:55 +08:00
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
|
<version>${junit.version}</version>
|
2022-07-05 22:23:16 +08:00
|
|
|
|
<scope>test</scope>
|
2022-06-26 21:03:55 +08:00
|
|
|
|
</dependency>
|
2019-03-21 19:54:42 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.curator</groupId>
|
|
|
|
|
<artifactId>curator-framework</artifactId>
|
|
|
|
|
<version>${curator.version}</version>
|
|
|
|
|
<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>
|
|
|
|
|
<version>${curator.version}</version>
|
|
|
|
|
</dependency>
|
2020-10-22 21:34:12 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>cn.hutool</groupId>
|
|
|
|
|
<artifactId>hutool-core</artifactId>
|
|
|
|
|
<version>${hutool-core.version}</version>
|
|
|
|
|
</dependency>
|
2021-03-26 17:05:05 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
|
|
<artifactId>transmittable-thread-local</artifactId>
|
|
|
|
|
<version>${transmittable-thread-local.version}</version>
|
|
|
|
|
</dependency>
|
2021-04-08 11:11:23 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.curator</groupId>
|
|
|
|
|
<artifactId>curator-test</artifactId>
|
|
|
|
|
<version>${curator-test.version}</version>
|
2022-07-05 22:23:16 +08:00
|
|
|
|
<scope>test</scope>
|
2021-04-08 11:11:23 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.101tec</groupId>
|
|
|
|
|
<artifactId>zkclient</artifactId>
|
|
|
|
|
<version>${zkclient.version}</version>
|
|
|
|
|
</dependency>
|
2021-08-09 00:54:06 +08:00
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
|
|
<artifactId>QLExpress</artifactId>
|
|
|
|
|
<version>${qlexpress.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.codehaus.groovy</groupId>
|
2021-08-11 01:54:39 +08:00
|
|
|
|
<artifactId>groovy</artifactId>
|
|
|
|
|
<version>${groovy.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.codehaus.groovy</groupId>
|
|
|
|
|
<artifactId>groovy-jsr223</artifactId>
|
2021-08-09 00:54:06 +08:00
|
|
|
|
<version>${groovy.version}</version>
|
|
|
|
|
</dependency>
|
2022-05-16 11:58:18 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>net.bytebuddy</groupId>
|
|
|
|
|
<artifactId>byte-buddy</artifactId>
|
|
|
|
|
<version>${bytebuddy.version}</version>
|
|
|
|
|
</dependency>
|
2022-06-26 21:03:55 +08:00
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.aspectj</groupId>
|
|
|
|
|
<artifactId>aspectjweaver</artifactId>
|
|
|
|
|
<version>${aspectjweaver.version}</version>
|
2022-07-05 22:23:16 +08:00
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
<optional>true</optional>
|
2022-06-26 21:03:55 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>ch.qos.logback</groupId>
|
|
|
|
|
<artifactId>logback-classic</artifactId>
|
|
|
|
|
<version>${logback-classic.version}</version>
|
2022-08-06 14:15:59 +08:00
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
<optional>true</optional>
|
2022-06-26 21:03:55 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
|
<version>${springboot.version}</version>
|
2022-06-27 17:37:21 +08:00
|
|
|
|
<scope>test</scope>
|
|
|
|
|
<optional>true</optional>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-autoconfigure</artifactId>
|
|
|
|
|
<version>${springboot.version}</version>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
<optional>true</optional>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
|
|
|
|
<version>${springboot.version}</version>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
<optional>true</optional>
|
2022-06-26 21:03:55 +08:00
|
|
|
|
</dependency>
|
2019-03-21 19:54:42 +08:00
|
|
|
|
</dependencies>
|
|
|
|
|
</dependencyManagement>
|
|
|
|
|
|
2022-06-26 21:03:55 +08:00
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
2019-03-21 19:54:42 +08:00
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
|
<version>2.18.1</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<skipTests>true</skipTests>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
2020-03-26 00:55:56 +08:00
|
|
|
|
<plugin>
|
2020-09-11 11:13:50 +08:00
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2020-03-26 00:55:56 +08:00
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
|
<version>2.4</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<attach>true</attach>
|
|
|
|
|
</configuration>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<phase>package</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>jar-no-fork</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
2020-03-26 15:25:42 +08:00
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-site-plugin</artifactId>
|
|
|
|
|
<version>3.7.1</version>
|
|
|
|
|
</plugin>
|
|
|
|
|
<!-- Javadoc -->
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
|
<version>3.0.1</version>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<phase>package</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>jar</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
<!-- Gpg Signature -->
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-gpg-plugin</artifactId>
|
|
|
|
|
<version>1.6</version>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>sign-artifacts</id>
|
|
|
|
|
<phase>verify</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>sign</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
2022-07-04 15:54:53 +08:00
|
|
|
|
<!-- version number -->
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
|
<artifactId>flatten-maven-plugin</artifactId>
|
|
|
|
|
<version>1.2.7</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<updatePomFile>true</updatePomFile>
|
|
|
|
|
<flattenMode>resolveCiFriendliesOnly</flattenMode>
|
|
|
|
|
</configuration>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>flatten</id>
|
|
|
|
|
<phase>process-resources</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>flatten</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>flatten.clean</id>
|
|
|
|
|
<phase>clean</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>clean</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
2022-06-26 21:03:55 +08:00
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
2019-03-21 19:54:42 +08:00
|
|
|
|
|
2022-06-26 21:03:55 +08:00
|
|
|
|
<modules>
|
|
|
|
|
<module>liteflow-core</module>
|
2022-09-11 21:27:10 +08:00
|
|
|
|
<module>liteflow-script-plugin</module>
|
|
|
|
|
<module>liteflow-rule-plugin</module>
|
2022-06-26 21:03:55 +08:00
|
|
|
|
<module>liteflow-spring-boot-starter</module>
|
2022-02-22 14:13:26 +08:00
|
|
|
|
<module>liteflow-spring</module>
|
2022-06-27 19:08:07 +08:00
|
|
|
|
<module>liteflow-testcase-old</module>
|
|
|
|
|
<module>liteflow-testcase-el</module>
|
2022-06-26 21:03:55 +08:00
|
|
|
|
</modules>
|
2019-03-21 19:54:42 +08:00
|
|
|
|
|
|
|
|
|
<distributionManagement>
|
|
|
|
|
<snapshotRepository>
|
2020-03-26 15:25:42 +08:00
|
|
|
|
<id>sonatype</id>
|
|
|
|
|
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
|
2019-03-21 19:54:42 +08:00
|
|
|
|
</snapshotRepository>
|
2020-03-26 15:25:42 +08:00
|
|
|
|
<repository>
|
|
|
|
|
<id>sonatype</id>
|
|
|
|
|
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
|
|
|
|
|
</repository>
|
2019-03-21 19:54:42 +08:00
|
|
|
|
</distributionManagement>
|
|
|
|
|
</project>
|
2022-06-26 21:03:55 +08:00
|
|
|
|
|