|
@@ -1,11 +1,11 @@
|
|
|
<?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">
|
|
|
+ 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>
|
|
|
<groupId>com.yomahub</groupId>
|
|
|
- <artifactId>liteflow</artifactId>
|
|
|
- <packaging>pom</packaging>
|
|
|
- <version>2.7.3</version>
|
|
|
+ <artifactId>liteflow</artifactId>
|
|
|
+ <packaging>pom</packaging>
|
|
|
+ <version>2.7.3</version>
|
|
|
<name>liteflow</name>
|
|
|
<description>a lightweight and practical micro-process framework</description>
|
|
|
<url>https://github.com/bryan31/liteflow</url>
|
|
@@ -38,7 +38,7 @@
|
|
|
<url>git@github.com:bryan31/liteflow.git</url>
|
|
|
</scm>
|
|
|
|
|
|
- <properties>
|
|
|
+ <properties>
|
|
|
<maven.compiler.source>8</maven.compiler.source>
|
|
|
<maven.compiler.target>8</maven.compiler.target>
|
|
|
<springboot.version>2.0.5.RELEASE</springboot.version>
|
|
@@ -56,11 +56,13 @@
|
|
|
<qlexpress.version>3.3.0</qlexpress.version>
|
|
|
<groovy.version>3.0.8</groovy.version>
|
|
|
<bytebuddy.version>1.11.13</bytebuddy.version>
|
|
|
- </properties>
|
|
|
+ <aspectjweaver.version>1.8.13</aspectjweaver.version>
|
|
|
+ <logback-classic.version>1.2.3</logback-classic.version>
|
|
|
+ </properties>
|
|
|
|
|
|
- <dependencyManagement>
|
|
|
+ <dependencyManagement>
|
|
|
<dependencies>
|
|
|
- <dependency>
|
|
|
+ <dependency>
|
|
|
<groupId>org.springframework</groupId>
|
|
|
<artifactId>spring-beans</artifactId>
|
|
|
<version>${spring.version}</version>
|
|
@@ -116,10 +118,10 @@
|
|
|
<version>${dom4j.version}</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
- <groupId>junit</groupId>
|
|
|
- <artifactId>junit</artifactId>
|
|
|
- <version>${junit.version}</version>
|
|
|
- </dependency>
|
|
|
+ <groupId>junit</groupId>
|
|
|
+ <artifactId>junit</artifactId>
|
|
|
+ <version>${junit.version}</version>
|
|
|
+ </dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.apache.curator</groupId>
|
|
|
<artifactId>curator-framework</artifactId>
|
|
@@ -183,11 +185,27 @@
|
|
|
<artifactId>byte-buddy</artifactId>
|
|
|
<version>${bytebuddy.version}</version>
|
|
|
</dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.aspectj</groupId>
|
|
|
+ <artifactId>aspectjweaver</artifactId>
|
|
|
+ <version>${aspectjweaver.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>ch.qos.logback</groupId>
|
|
|
+ <artifactId>logback-classic</artifactId>
|
|
|
+ <version>${logback-classic.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-test</artifactId>
|
|
|
+ <version>${springboot.version}</version>
|
|
|
+ </dependency>
|
|
|
</dependencies>
|
|
|
</dependencyManagement>
|
|
|
|
|
|
- <build>
|
|
|
- <plugins>
|
|
|
+ <build>
|
|
|
+ <plugins>
|
|
|
<plugin>
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
@@ -246,12 +264,12 @@
|
|
|
</execution>
|
|
|
</executions>
|
|
|
</plugin>
|
|
|
- </plugins>
|
|
|
- </build>
|
|
|
+ </plugins>
|
|
|
+ </build>
|
|
|
|
|
|
- <modules>
|
|
|
- <module>liteflow-core</module>
|
|
|
- <module>liteflow-spring-boot-starter</module>
|
|
|
+ <modules>
|
|
|
+ <module>liteflow-core</module>
|
|
|
+ <module>liteflow-spring-boot-starter</module>
|
|
|
<module>liteflow-script-qlexpress</module>
|
|
|
<module>liteflow-script-common</module>
|
|
|
<module>liteflow-script-groovy</module>
|
|
@@ -261,9 +279,9 @@
|
|
|
<module>liteflow-testcase-script-groovy</module>
|
|
|
<module>liteflow-testcase-nospring</module>
|
|
|
<module>liteflow-spring</module>
|
|
|
- <module>liteflow-testcase-declare-component</module>
|
|
|
- <module>liteflow-testcase-el-springboot</module>
|
|
|
- </modules>
|
|
|
+ <module>liteflow-testcase-declare-component</module>
|
|
|
+ <module>liteflow-testcase-el-springboot</module>
|
|
|
+ </modules>
|
|
|
|
|
|
<distributionManagement>
|
|
|
<snapshotRepository>
|
|
@@ -276,3 +294,4 @@
|
|
|
</repository>
|
|
|
</distributionManagement>
|
|
|
</project>
|
|
|
+
|