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>
|
2020-03-26 00:03:11 +08:00
|
|
|
|
<groupId>com.yomahub</groupId>
|
2019-03-21 19:54:42 +08:00
|
|
|
|
<artifactId>liteflow</artifactId>
|
|
|
|
|
<packaging>pom</packaging>
|
2021-03-24 15:51:34 +08:00
|
|
|
|
<version>2.5.0-SNAPSHOT</version>
|
2020-03-26 18:24:23 +08:00
|
|
|
|
<name>liteflow</name>
|
2020-03-26 00:55:56 +08:00
|
|
|
|
<description>a lightweight and practical micro-process framework</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
|
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
|
<java.version>1.8</java.version>
|
|
|
|
|
<spring.version>5.0.9.RELEASE</spring.version>
|
|
|
|
|
<org.slf4j.version>1.7.21</org.slf4j.version>
|
|
|
|
|
<log4j.version>1.2.17</log4j.version>
|
|
|
|
|
<log4j-slf4j.version>1.7.5</log4j-slf4j.version>
|
|
|
|
|
<slf4j.version>1.7.13</slf4j.version>
|
2020-03-28 00:48:38 +08:00
|
|
|
|
<fastjson.version>1.2.25</fastjson.version>
|
2019-03-21 19:54:42 +08:00
|
|
|
|
<dom4j.version>1.6.1</dom4j.version>
|
|
|
|
|
<curator.version>2.12.0</curator.version>
|
|
|
|
|
<junit.version>4.12</junit.version>
|
2020-10-22 21:34:12 +08:00
|
|
|
|
<hutool-core.version>5.3.10</hutool-core.version>
|
2019-03-21 19:54:42 +08:00
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
<dependencyManagement>
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-beans</artifactId>
|
|
|
|
|
<version>${spring.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-context</artifactId>
|
|
|
|
|
<version>${spring.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-aop</artifactId>
|
|
|
|
|
<version>${spring.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-expression</artifactId>
|
|
|
|
|
<version>${spring.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-test</artifactId>
|
|
|
|
|
<version>${spring.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
|
<version>${org.slf4j.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
|
|
<artifactId>fastjson</artifactId>
|
|
|
|
|
<version>${fastjson.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>dom4j</groupId>
|
|
|
|
|
<artifactId>dom4j</artifactId>
|
|
|
|
|
<version>${dom4j.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
|
<version>${junit.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<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>
|
2019-03-21 19:54:42 +08:00
|
|
|
|
</dependencies>
|
|
|
|
|
</dependencyManagement>
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2020-04-27 12:12:34 +08:00
|
|
|
|
<version>3.0</version>
|
2019-03-21 19:54:42 +08:00
|
|
|
|
<configuration>
|
|
|
|
|
<encoding>UTF-8</encoding>
|
|
|
|
|
<source>${java.version}</source>
|
|
|
|
|
<target>${java.version}</target>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
<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>
|
2019-03-21 19:54:42 +08:00
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
|
|
|
|
|
<modules>
|
|
|
|
|
<module>liteflow-core</module>
|
2020-03-25 18:44:30 +08:00
|
|
|
|
<module>liteflow-spring-boot-starter</module>
|
|
|
|
|
<module>liteflow-test-springboot</module>
|
|
|
|
|
<module>liteflow-test-spring</module>
|
2019-03-21 19:54:42 +08:00
|
|
|
|
</modules>
|
|
|
|
|
|
|
|
|
|
<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>
|