This is an automated email from the ASF dual-hosted git repository. rfscholte pushed a commit to branch MNG-4660 in repository https://gitbox.apache.org/repos/asf/maven-integration-testing.git
commit f40ccda1d3a6639c6de80453937100a378dacf89 Author: Martin Kanters <[email protected]> AuthorDate: Sat Mar 28 20:09:03 2020 +0100 Removed the dependency on the compiler plugin --- .../maven/it/MavenITmng4660OutdatedPackagedArtifact.java | 1 - .../resources/mng-4660-outdated-packaged-artifact/pom.xml | 15 ++++++--------- .../src/test/resources/mng-4660-resume-from/pom.xml | 15 ++++++--------- 3 files changed, 12 insertions(+), 19 deletions(-) diff --git a/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng4660OutdatedPackagedArtifact.java b/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng4660OutdatedPackagedArtifact.java index d168696..99dabf7 100644 --- a/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng4660OutdatedPackagedArtifact.java +++ b/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng4660OutdatedPackagedArtifact.java @@ -58,7 +58,6 @@ public class MavenITmng4660OutdatedPackagedArtifact extends AbstractMavenIntegra verifier1.verifyErrorFreeLog(); verifier1.resetStreams(); - // 2. Create a properties file with some content and compile only that module (module A). final Verifier verifier2 = newVerifier( testDir.getAbsolutePath() ); diff --git a/core-it-suite/src/test/resources/mng-4660-outdated-packaged-artifact/pom.xml b/core-it-suite/src/test/resources/mng-4660-outdated-packaged-artifact/pom.xml index a2d0bcd..22df1eb 100644 --- a/core-it-suite/src/test/resources/mng-4660-outdated-packaged-artifact/pom.xml +++ b/core-it-suite/src/test/resources/mng-4660-outdated-packaged-artifact/pom.xml @@ -30,6 +30,12 @@ under the License. <packaging>pom</packaging> + <name>Maven Integration Test :: MNG-4660</name> + <description> + This is a test case for a new check which verifies if a packaged artifact + within the Reactor is up-to-date with the outputDirectory of the same project. + </description> + <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.source>1.8</maven.compiler.source> @@ -50,13 +56,4 @@ under the License. </dependency> </dependencies> - <build> - <plugins> - <plugin> - <artifactId>maven-compiler-plugin</artifactId> - <version>3.8.1</version> - </plugin> - </plugins> - </build> - </project> diff --git a/core-it-suite/src/test/resources/mng-4660-resume-from/pom.xml b/core-it-suite/src/test/resources/mng-4660-resume-from/pom.xml index a2d0bcd..98e4f82 100644 --- a/core-it-suite/src/test/resources/mng-4660-resume-from/pom.xml +++ b/core-it-suite/src/test/resources/mng-4660-resume-from/pom.xml @@ -30,6 +30,12 @@ under the License. <packaging>pom</packaging> + <name>Maven Integration Test :: MNG-4660</name> + <description> + Test that the --resume-from flag resolves dependencies inside the same Maven project + without having them installed first. + </description> + <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.source>1.8</maven.compiler.source> @@ -50,13 +56,4 @@ under the License. </dependency> </dependencies> - <build> - <plugins> - <plugin> - <artifactId>maven-compiler-plugin</artifactId> - <version>3.8.1</version> - </plugin> - </plugins> - </build> - </project>
