From 73ef418f39868b979e5527d8888f226b2b2a5016 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=87=91=E6=88=9F?= Date: Sat, 14 Nov 2020 06:54:56 +0800 Subject: [PATCH] complete pom file information --- testable-agent/pom.xml | 263 ++++++++++++++++++++++------------ testable-core/pom.xml | 80 ++++++++++- testable-maven-plugin/pom.xml | 194 +++++++++++++++++-------- testable-processor/pom.xml | 82 ++++++++++- 4 files changed, 459 insertions(+), 160 deletions(-) diff --git a/testable-agent/pom.xml b/testable-agent/pom.xml index 44df731..cafd485 100755 --- a/testable-agent/pom.xml +++ b/testable-agent/pom.xml @@ -1,102 +1,177 @@ - - 4.0.0 + 4.0.0 + com.alibaba.testable + testable-agent + 0.2.2-SNAPSHOT + jar + testable-agent + Unit test enhancement toolkit + https://github.com/alibaba/testable-mock + + + MIT License + https://github.com/alibaba/testable-mock/blob/master/LICENSE + repo + + + + + 金戟 + jinji.lf@alibaba-inc.com + + + + scm:git:git@github.com:alibaba/testable-mock.git + git@github.com:alibaba/testable-mock.git + HEAD + - com.alibaba.testable - testable-agent - 0.2.2-SNAPSHOT - jar - testable-agent + + 1.6 + 1.6 + UTF-8 + 8.0.1 + 5.6.2 + 0.2.2-SNAPSHOT + 3.8.1 + 3.0.0-M5 + 3.2.0 + 3.2.4 + 3.2.0 + 3.2.0 + 1.6.0 + 1.6.8 + - - 1.6 - 1.6 - UTF-8 - 8.0.1 - 5.6.2 - 0.2.2-SNAPSHOT - 3.8.1 - 3.0.0-M5 - 3.2.0 - 3.2.4 - + + + org.ow2.asm + asm-tree + ${asm.lib.version} + + + org.junit.jupiter + junit-jupiter-api + ${junit.version} + test + + + com.alibaba.testable + testable-core + ${testable.version} + provided + + - - - org.ow2.asm - asm-tree - ${asm.lib.version} - - - org.junit.jupiter - junit-jupiter-api - ${junit.version} - test - - - com.alibaba.testable - testable-core - ${testable.version} - provided - - + + testable-agent + + + org.apache.maven.plugins + maven-compiler-plugin + ${plugin.compiler.version} + + ${project.compiler.level} + ${project.compiler.level} + ${project.build.sourceEncoding} + + + + org.apache.maven.plugins + maven-jar-plugin + ${plugin.jar.version} + + + + com.alibaba.testable.agent.PreMain + true + + + + - - testable-agent - - - org.apache.maven.plugins - maven-compiler-plugin - ${plugin.compiler.version} - - ${project.compiler.level} - ${project.compiler.level} - ${project.build.sourceEncoding} - - - - org.apache.maven.plugins - maven-jar-plugin - ${plugin.jar.version} - - - - com.alibaba.testable.agent.PreMain - true - - - - - - - org.apache.maven.plugins - maven-shade-plugin - ${plugin.shade.version} - - - package - - shade - - - - - org.objectweb.asm - agent.org.objectweb.asm - - - false - - - - - - org.apache.maven.plugins - maven-surefire-plugin - ${plugin.surefire.version} - - - + + org.apache.maven.plugins + maven-shade-plugin + ${plugin.shade.version} + + + package + + shade + + + + + org.objectweb.asm + agent.org.objectweb.asm + + + false + + + + + + org.apache.maven.plugins + maven-surefire-plugin + ${plugin.surefire.version} + + + org.apache.maven.plugins + maven-source-plugin + ${plugin.source.version} + + + attach-sources + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${plugin.javadoc.version} + + + attach-javadocs + + jar + + + + + + org.apache.maven.plugins + maven-gpg-plugin + ${plugin.gpg.version} + + + sign-artifacts + verify + + sign + + + + + + org.sonatype.plugins + nexus-staging-maven-plugin + ${plugin.staging.version} + true + + ossrh + https://oss.sonatype.org/ + true + + + + diff --git a/testable-core/pom.xml b/testable-core/pom.xml index d3db143..662fc37 100644 --- a/testable-core/pom.xml +++ b/testable-core/pom.xml @@ -3,20 +3,43 @@ 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"> 4.0.0 - - Unit test enhancement toolkit com.alibaba.testable testable-core 0.2.2-SNAPSHOT + jar testable-core + Unit test enhancement toolkit + https://github.com/alibaba/testable-mock + + + MIT License + https://github.com/alibaba/testable-mock/blob/master/LICENSE + repo + + + + + 金戟 + jinji.lf@alibaba-inc.com + + + + scm:git:git@github.com:alibaba/testable-mock.git + git@github.com:alibaba/testable-mock.git + HEAD + 1.6 1.6 UTF-8 + 5.6.2 3.8.1 3.0.0-M5 - 5.6.2 + 3.2.0 + 3.2.0 + 1.6.0 + 1.6.8 @@ -45,6 +68,57 @@ maven-surefire-plugin ${plugin.surefire.version} + + org.apache.maven.plugins + maven-source-plugin + ${plugin.source.version} + + + attach-sources + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${plugin.javadoc.version} + + + attach-javadocs + + jar + + + + + + org.apache.maven.plugins + maven-gpg-plugin + ${plugin.gpg.version} + + + sign-artifacts + verify + + sign + + + + + + org.sonatype.plugins + nexus-staging-maven-plugin + ${plugin.staging.version} + true + + ossrh + https://oss.sonatype.org/ + true + + diff --git a/testable-maven-plugin/pom.xml b/testable-maven-plugin/pom.xml index 30cebb7..62c4006 100644 --- a/testable-maven-plugin/pom.xml +++ b/testable-maven-plugin/pom.xml @@ -1,64 +1,140 @@ - - 4.0.0 - com.alibaba.testable - testable-maven-plugin - maven-plugin - 0.2.2-SNAPSHOT - testable-maven-plugin - http://maven.apache.org + + + 4.0.0 + com.alibaba.testable + testable-maven-plugin + 0.2.2-SNAPSHOT + maven-plugin + testable-maven-plugin + Unit test enhancement toolkit + https://github.com/alibaba/testable-mock + + + MIT License + https://github.com/alibaba/testable-mock/blob/master/LICENSE + repo + + + + + 金戟 + jinji.lf@alibaba-inc.com + + + + scm:git:git@github.com:alibaba/testable-mock.git + git@github.com:alibaba/testable-mock.git + HEAD + - - 0.2.2-SNAPSHOT - 1.6 - 1.6 - UTF-8 - 3.8.1 - 3.6.0 - + + 0.2.2-SNAPSHOT + 1.6 + 1.6 + UTF-8 + 3.8.1 + 3.6.0 + 3.2.0 + 3.2.0 + 1.6.0 + 1.6.8 + - - - org.apache.maven - maven-plugin-api - 3.6.3 - - - org.apache.maven - maven-core - 3.6.3 - - - org.apache.maven.plugin-tools - maven-plugin-annotations - 3.6.0 - provided - - - com.alibaba.testable - testable-agent - ${testable.version} - - + + + org.apache.maven + maven-plugin-api + 3.6.3 + + + org.apache.maven + maven-core + 3.6.3 + + + org.apache.maven.plugin-tools + maven-plugin-annotations + 3.6.0 + provided + + + com.alibaba.testable + testable-agent + ${testable.version} + + - - - - org.apache.maven.plugins - maven-compiler-plugin - ${plugin.compiler.version} - - ${project.compiler.level} - ${project.compiler.level} - ${project.build.sourceEncoding} - - - - org.apache.maven.plugins - maven-plugin-plugin - ${maven.plugin.version} - - - + + + + org.apache.maven.plugins + maven-compiler-plugin + ${plugin.compiler.version} + + ${project.compiler.level} + ${project.compiler.level} + ${project.build.sourceEncoding} + + + + org.apache.maven.plugins + maven-plugin-plugin + ${plugin.maven.version} + + + org.apache.maven.plugins + maven-source-plugin + ${plugin.source.version} + + + attach-sources + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${plugin.javadoc.version} + + + attach-javadocs + + jar + + + + + + org.apache.maven.plugins + maven-gpg-plugin + ${plugin.gpg.version} + + + sign-artifacts + verify + + sign + + + + + + org.sonatype.plugins + nexus-staging-maven-plugin + ${plugin.staging.version} + true + + ossrh + https://oss.sonatype.org/ + true + + + + diff --git a/testable-processor/pom.xml b/testable-processor/pom.xml index 8bb22af..d9d670d 100644 --- a/testable-processor/pom.xml +++ b/testable-processor/pom.xml @@ -3,21 +3,44 @@ 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"> 4.0.0 - - Unit test enhancement toolkit com.alibaba.testable testable-processor 0.2.2-SNAPSHOT + jar testable-processor + Unit test enhancement toolkit + https://github.com/alibaba/testable-mock + + + MIT License + https://github.com/alibaba/testable-mock/blob/master/LICENSE + repo + + + + + 金戟 + jinji.lf@alibaba-inc.com + + + + scm:git:git@github.com:alibaba/testable-mock.git + git@github.com:alibaba/testable-mock.git + HEAD + 1.6 1.6 UTF-8 - 3.8.1 - 3.0.0-M5 5.6.2 0.2.2-SNAPSHOT + 3.8.1 + 3.0.0-M5 + 3.2.0 + 3.2.0 + 1.6.0 + 1.6.8 @@ -72,6 +95,57 @@ maven-surefire-plugin ${plugin.surefire.version} + + org.apache.maven.plugins + maven-source-plugin + ${plugin.source.version} + + + attach-sources + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${plugin.javadoc.version} + + + attach-javadocs + + jar + + + + + + org.apache.maven.plugins + maven-gpg-plugin + ${plugin.gpg.version} + + + sign-artifacts + verify + + sign + + + + + + org.sonatype.plugins + nexus-staging-maven-plugin + ${plugin.staging.version} + true + + ossrh + https://oss.sonatype.org/ + true + +