|
|
@ -36,14 +36,33 @@ |
|
|
|
</scm> |
|
|
|
</scm> |
|
|
|
|
|
|
|
|
|
|
|
<developers> |
|
|
|
<developers> |
|
|
|
<developer><id>guoxin</id><name>GuoXin</name><organization>Keyware</organization></developer> |
|
|
|
<developer> |
|
|
|
<developer><id>renfengjiang</id><name>RenFengJiang</name><organization>Keyware</organization></developer> |
|
|
|
<id>guoxin</id> |
|
|
|
<developer><id>renfengshan</id><name>RenFengShan</name><organization>Keyware</organization></developer> |
|
|
|
<name>GuoXin</name> |
|
|
|
<developer><id>wuhaoyang</id><name>WuHaoYang</name><organization>Keyware</organization></developer> |
|
|
|
<organization>Keyware</organization> |
|
|
|
<developer><id>zhangchenbao</id><name>ZhangChenBao</name><organization>Keyware</organization></developer> |
|
|
|
</developer> |
|
|
|
|
|
|
|
<developer> |
|
|
|
|
|
|
|
<id>renfengjiang</id> |
|
|
|
|
|
|
|
<name>RenFengJiang</name> |
|
|
|
|
|
|
|
<organization>Keyware</organization> |
|
|
|
|
|
|
|
</developer> |
|
|
|
|
|
|
|
<developer> |
|
|
|
|
|
|
|
<id>renfengshan</id> |
|
|
|
|
|
|
|
<name>RenFengShan</name> |
|
|
|
|
|
|
|
<organization>Keyware</organization> |
|
|
|
|
|
|
|
</developer> |
|
|
|
|
|
|
|
<developer> |
|
|
|
|
|
|
|
<id>wuhaoyang</id> |
|
|
|
|
|
|
|
<name>WuHaoYang</name> |
|
|
|
|
|
|
|
<organization>Keyware</organization> |
|
|
|
|
|
|
|
</developer> |
|
|
|
|
|
|
|
<developer> |
|
|
|
|
|
|
|
<id>zhangchenbao</id> |
|
|
|
|
|
|
|
<name>ZhangChenBao</name> |
|
|
|
|
|
|
|
<organization>Keyware</organization> |
|
|
|
|
|
|
|
</developer> |
|
|
|
</developers> |
|
|
|
</developers> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<properties> |
|
|
|
<properties> |
|
|
|
<java.version>11</java.version> |
|
|
|
<java.version>11</java.version> |
|
|
|
<jdk.min.version>11</jdk.min.version> |
|
|
|
<jdk.min.version>11</jdk.min.version> |
|
|
@ -52,6 +71,7 @@ |
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
|
|
|
<sonar.java.version>7.24.0.32100</sonar.java.version> |
|
|
|
<sonar.java.version>7.24.0.32100</sonar.java.version> |
|
|
|
<version.jacoco.plugin>0.8.10</version.jacoco.plugin> |
|
|
|
<version.jacoco.plugin>0.8.10</version.jacoco.plugin> |
|
|
|
|
|
|
|
<junit.jupiter.version>5.9.1</junit.jupiter.version> |
|
|
|
<aggregate.report.dir>integration-tests/target/site/jacoco-aggregate/jacoco.xml</aggregate.report.dir> |
|
|
|
<aggregate.report.dir>integration-tests/target/site/jacoco-aggregate/jacoco.xml</aggregate.report.dir> |
|
|
|
</properties> |
|
|
|
</properties> |
|
|
|
|
|
|
|
|
|
|
@ -76,6 +96,41 @@ |
|
|
|
<type>pom</type> |
|
|
|
<type>pom</type> |
|
|
|
<scope>import</scope> |
|
|
|
<scope>import</scope> |
|
|
|
</dependency> |
|
|
|
</dependency> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<dependency> |
|
|
|
|
|
|
|
<groupId>org.junit.jupiter</groupId> |
|
|
|
|
|
|
|
<artifactId>junit-jupiter</artifactId> |
|
|
|
|
|
|
|
<version>${junit.jupiter.version}</version> |
|
|
|
|
|
|
|
<scope>test</scope> |
|
|
|
|
|
|
|
<exclusions> |
|
|
|
|
|
|
|
<exclusion> |
|
|
|
|
|
|
|
<groupId>org.junit.jupiter</groupId> |
|
|
|
|
|
|
|
<artifactId>junit-jupiter-api</artifactId> |
|
|
|
|
|
|
|
</exclusion> |
|
|
|
|
|
|
|
<exclusion> |
|
|
|
|
|
|
|
<groupId>org.junit.jupiter</groupId> |
|
|
|
|
|
|
|
<artifactId>junit-jupiter-engine</artifactId> |
|
|
|
|
|
|
|
</exclusion> |
|
|
|
|
|
|
|
</exclusions> |
|
|
|
|
|
|
|
</dependency> |
|
|
|
|
|
|
|
<dependency> |
|
|
|
|
|
|
|
<groupId>org.junit.jupiter</groupId> |
|
|
|
|
|
|
|
<artifactId>junit-jupiter-api</artifactId> |
|
|
|
|
|
|
|
<version>${junit.jupiter.version}</version> |
|
|
|
|
|
|
|
<scope>test</scope> |
|
|
|
|
|
|
|
</dependency> |
|
|
|
|
|
|
|
<dependency> |
|
|
|
|
|
|
|
<groupId>org.junit.jupiter</groupId> |
|
|
|
|
|
|
|
<artifactId>junit-jupiter-engine</artifactId> |
|
|
|
|
|
|
|
<version>${junit.jupiter.version}</version> |
|
|
|
|
|
|
|
<scope>test</scope> |
|
|
|
|
|
|
|
</dependency> |
|
|
|
|
|
|
|
<dependency> |
|
|
|
|
|
|
|
<groupId>org.junit.jupiter</groupId> |
|
|
|
|
|
|
|
<artifactId>junit-jupiter-migrationsupport</artifactId> |
|
|
|
|
|
|
|
<version>${junit.jupiter.version}</version> |
|
|
|
|
|
|
|
<scope>test</scope> |
|
|
|
|
|
|
|
</dependency> |
|
|
|
</dependencies> |
|
|
|
</dependencies> |
|
|
|
</dependencyManagement> |
|
|
|
</dependencyManagement> |
|
|
|
</project> |
|
|
|
</project> |