envVars;
-
+
private final Path baseDir = Paths.get( "target/test-classes/mng-5937 wrapper" );
-
+
private ZipUnArchiver zipUnArchiver = new ZipUnArchiver();
-
+
public MavenITmng5937MavenWrapper()
throws Exception
{
super( "[4.0.0-alpha-1,)" );
-
+
String localRepo = System.getProperty("maven.repo.local");
-
+
envVars = new HashMap<>( 4 );
envVars.put( "MVNW_REPOURL", Paths.get( localRepo ).toUri().toURL().toString() );
envVars.put( "MVNW_VERBOSE", "true" );
@@ -76,7 +76,7 @@ public class MavenITmng5937MavenWrapper
{
throw new IllegalStateException( "Missing maven.distro=${mavenDistro} parameter to test maven-wrapper: see run ITs instructions" );
}
-
+
Verifier distInstaller = newVerifier( baseDir.toAbsolutePath().toFile().toString() );
distInstaller.setSystemProperty( "file", mavenDist );
distInstaller.setSystemProperty( "groupId", "org.apache.maven" );
@@ -85,7 +85,7 @@ public class MavenITmng5937MavenWrapper
distInstaller.setSystemProperty( "classifier", "bin" );
distInstaller.setSystemProperty( "packaging", "zip" );
distInstaller.executeGoal( "org.apache.maven.plugins:maven-install-plugin:2.5.2:install-file" );
-
+
String distroValue = System.getProperty( "maven.wrapper.distrodir" );
if ( StringUtils.isEmpty( distroValue ) )
{
@@ -98,7 +98,7 @@ public class MavenITmng5937MavenWrapper
throws Exception
{
final File testDir = baseDir.resolve( "bin" ).toFile();
-
+
unpack( testDir.toPath(), "bin" );
envVars.put( "MAVEN_BASEDIR", testDir.getAbsolutePath() );
@@ -115,9 +115,9 @@ public class MavenITmng5937MavenWrapper
throws Exception
{
final File testDir = baseDir.resolve( "script" ).toFile();
-
+
unpack( testDir.toPath(), "script" );
-
+
envVars.put( "MAVEN_BASEDIR", testDir.getAbsolutePath() );
Verifier verifier = newVerifier( testDir.getAbsolutePath() );
@@ -132,9 +132,9 @@ public class MavenITmng5937MavenWrapper
throws Exception
{
final File testDir = baseDir.resolve( "source" ).toFile();
-
+
unpack( testDir.toPath(), "source" );
-
+
envVars.put( "MAVEN_BASEDIR", testDir.getAbsolutePath() );
Verifier verifier = newVerifier( testDir.getAbsolutePath() );
@@ -149,9 +149,9 @@ public class MavenITmng5937MavenWrapper
throws Exception
{
final File testDir = baseDir.resolve( "properties" ).toFile();
-
+
unpack( testDir.toPath(), "bin" );
-
+
Path p = baseDir.resolve( "properties/.mvn/wrapper/maven-wrapper.properties" );
try ( BufferedWriter out = Files.newBufferedWriter( p, StandardOpenOption.TRUNCATE_EXISTING ) )
{
@@ -178,11 +178,11 @@ public class MavenITmng5937MavenWrapper
private void unpack( Path target, String classifier ) throws IOException
{
Path distro = wrapperDistro.resolve( "apache-maven-wrapper-" + getMavenVersion() + '-' + classifier + ".zip" );
-
+
zipUnArchiver.setSourceFile( distro.toFile() );
zipUnArchiver.setDestDirectory( target.toFile() );
zipUnArchiver.enableLogging( new ConsoleLogger() );
-
+
zipUnArchiver.extract();
}
}
diff --git a/its/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng6057CheckReactorOrderTest.java b/its/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng6057CheckReactorOrderTest.java
index 1cc5f13eec..0253bc14ba 100644
--- a/its/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng6057CheckReactorOrderTest.java
+++ b/its/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng6057CheckReactorOrderTest.java
@@ -30,7 +30,7 @@ import java.util.List;
* Using a ${revision}
in the version will change the reactor order before fixing
* MNG-6057. Without the fix for this issue the order of
* the reactor is changed in that way that the parent is ordered to the last position instead of the first position.
- *
+ *
* @author Karl Heinz Marbaise khmarbaise@apache.org
*/
public class MavenITmng6057CheckReactorOrderTest
@@ -76,7 +76,7 @@ public class MavenITmng6057CheckReactorOrderTest
/**
* Extract the lines at the beginning of the Maven output:
- *
+ *
*
* [INFO] Reactor Build Order:
* [INFO]
diff --git a/its/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng6090CIFriendlyTest.java b/its/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng6090CIFriendlyTest.java
index e9d3abead2..9d72eba692 100644
--- a/its/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng6090CIFriendlyTest.java
+++ b/its/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng6090CIFriendlyTest.java
@@ -26,11 +26,11 @@ import java.io.File;
import java.util.Arrays;
/**
- * The usage of a ${revision}
for the version in the pom file and furthermore
+ * The usage of a ${revision}
for the version in the pom file and furthermore
* defining the property in the pom file and overwrite it via command line and
* try to build a partial reactor via mvn -pl ..
* MNG-6090.
- *
+ *
* @author Karl Heinz Marbaise khmarbaise@apache.org
*/
public class MavenITmng6090CIFriendlyTest
@@ -45,7 +45,7 @@ public class MavenITmng6090CIFriendlyTest
}
/**
- * Check that the resulting run will not fail in case
+ * Check that the resulting run will not fail in case
* of defining the property via command line and
* install the projects and afterwards just build
* a part of the whole reactor.
@@ -58,7 +58,7 @@ public class MavenITmng6090CIFriendlyTest
Verifier verifier = newVerifier( testDir.getAbsolutePath(), false );
verifier.setMavenDebug( false );
verifier.setAutoclean( false );
-
+
verifier.addCliOption( "-Drevision=1.2" );
verifier.addCliOption( "-Dmaven.experimental.buildconsumer=false" );
verifier.setLogFileName( "install-log.txt" );
@@ -81,22 +81,22 @@ public class MavenITmng6090CIFriendlyTest
throws Exception
{
File testDir = ResourceExtractor.simpleExtractResources( getClass(), "/mng-6090-ci-friendly" );
-
+
Verifier verifier = newVerifier( testDir.getAbsolutePath(), false );
verifier.setMavenDebug( false );
verifier.setAutoclean( false );
-
+
verifier.addCliOption( "-Drevision=1.2" );
verifier.addCliOption( "-Dmaven.experimental.buildconsumer=true" );
verifier.setLogFileName( "install-log.txt" );
verifier.executeGoals( Arrays.asList( "clean", "install" ) );
verifier.verifyErrorFreeLog();
verifier.resetStreams();
-
+
verifier = newVerifier( testDir.getAbsolutePath(), false );
verifier.setMavenDebug( false );
verifier.setAutoclean( false );
-
+
verifier.addCliOption( "-Drevision=1.2" );
verifier.addCliOption( "-pl module-3" );
verifier.executeGoal( "package" );
diff --git a/its/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng6189SiteReportPluginsWarningTest.java b/its/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng6189SiteReportPluginsWarningTest.java
index 6148f34ad6..8c0fa49d54 100644
--- a/its/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng6189SiteReportPluginsWarningTest.java
+++ b/its/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng6189SiteReportPluginsWarningTest.java
@@ -27,7 +27,7 @@ import java.io.File;
/**
* This is a test set for MNG-6189:
* using maven-site-plugin reportPlugins parameter must issue a warning.
- *
+ *
* @author Hervé Boutemy
*/
public class MavenITmng6189SiteReportPluginsWarningTest
diff --git a/its/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng6330RelativePath.java b/its/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng6330RelativePath.java
index 7adf2cd688..7faa412c89 100644
--- a/its/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng6330RelativePath.java
+++ b/its/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng6330RelativePath.java
@@ -28,7 +28,7 @@ import org.apache.maven.it.util.ResourceExtractor;
/**
* MNG-6030 reintroduced ReactorModelCache, but this ignores invalid relativePaths of parents
- *
+ *
* @author Robert Scholte
*/
public class MavenITmng6330RelativePath
@@ -38,11 +38,11 @@ public class MavenITmng6330RelativePath
{
super( "(,3.5.0),(3.5.2,)" );
}
-
+
public void testRelativePath() throws Exception
{
File testDir = ResourceExtractor.simpleExtractResources( getClass(), "/mng-6330-relative-path" );
-
+
Verifier verifier = newVerifier( testDir.getAbsolutePath() );
verifier.setForkJvm( true );
diff --git a/its/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng6352PrintVersionTest.java b/its/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng6352PrintVersionTest.java
index f8ec576b2d..94dddd5d60 100644
--- a/its/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng6352PrintVersionTest.java
+++ b/its/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng6352PrintVersionTest.java
@@ -31,9 +31,9 @@ import java.util.List;
* An integration test to check the enhancements to print out version
* information during the reactor summary output at the correct
* positions.
- *
+ *
* MNG-6352.
- *
+ *
* @author Karl Heinz Marbaise khmarbaise@apache.org
*/
public class MavenITmng6352PrintVersionTest
@@ -47,9 +47,9 @@ public class MavenITmng6352PrintVersionTest
/**
* Check that the resulting output is
- * as expected for the root module and last
+ * as expected for the root module and last
* module in build but not for the intermediate
- * modules.
+ * modules.
*/
public void testitShouldPrintVersionAtTopAndAtBottom()
throws Exception
@@ -59,7 +59,7 @@ public class MavenITmng6352PrintVersionTest
Verifier verifier = newVerifier( testDir.getAbsolutePath(), false );
verifier.setMavenDebug( false );
verifier.setAutoclean( false );
-
+
verifier.setLogFileName( "version-log.txt" );
verifier.executeGoals( Arrays.asList( "clean" ) );
verifier.verifyErrorFreeLog();
@@ -76,13 +76,13 @@ public class MavenITmng6352PrintVersionTest
assertTrue( resultingLines.get( 1 ).startsWith( "[INFO] module-1 ........................................... SUCCESS [" ) );
assertTrue( resultingLines.get( 2 ).startsWith( "[INFO] module-2 ........................................... SUCCESS [" ) );
assertTrue( resultingLines.get( 3 ).startsWith( "[INFO] module-3 1.3.0-SNAPSHOT ............................ SUCCESS [" ) );
-
+
}
/**
* Check that the resulting output is
* as expected for all modules in case
- * for an aggregator build.
+ * for an aggregator build.
*/
public void testitShouldPrintVersionInAllLines()
throws Exception
@@ -92,7 +92,7 @@ public class MavenITmng6352PrintVersionTest
Verifier verifier = newVerifier( testDir.getAbsolutePath(), false );
verifier.setMavenDebug( false );
verifier.setAutoclean( false );
-
+
verifier.setLogFileName( "version-log.txt" );
verifier.executeGoals( Arrays.asList( "clean" ) );
verifier.verifyErrorFreeLog();
@@ -112,10 +112,10 @@ public class MavenITmng6352PrintVersionTest
}
-
+
/**
* Extract the lines at the end of the Maven output:
- *
+ *
*
* [INFO] Reactor Summary:
* [INFO]
diff --git a/its/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng6391PrintVersionTest.java b/its/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng6391PrintVersionTest.java
index a8bda14397..fb18631dea 100644
--- a/its/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng6391PrintVersionTest.java
+++ b/its/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng6391PrintVersionTest.java
@@ -31,9 +31,9 @@ import java.util.List;
* An integration test to check the enhancements to print out version
* information during the reactor summary output at the correct
* positions.
- *
+ *
* MNG-6391.
- *
+ *
* @author Karl Heinz Marbaise khmarbaise@apache.org
*/
public class MavenITmng6391PrintVersionTest
@@ -47,9 +47,9 @@ public class MavenITmng6391PrintVersionTest
/**
* Check that the resulting output is
- * as expected for the root module and last
+ * as expected for the root module and last
* module in build but not for the intermediate
- * modules.
+ * modules.
*/
public void testitShouldPrintVersionAtTopAndAtBottom()
throws Exception
@@ -59,7 +59,7 @@ public class MavenITmng6391PrintVersionTest
Verifier verifier = newVerifier( testDir.getAbsolutePath(), false );
verifier.setMavenDebug( false );
verifier.setAutoclean( false );
-
+
verifier.setLogFileName( "version-log.txt" );
verifier.executeGoals( Arrays.asList( "clean" ) );
verifier.verifyErrorFreeLog();
@@ -77,13 +77,13 @@ public class MavenITmng6391PrintVersionTest
assertTrue( resultingLines.get( 2 ).startsWith( "[INFO] module-1 ........................................... SUCCESS [" ) );
assertTrue( resultingLines.get( 3 ).startsWith( "[INFO] module-2 ........................................... SUCCESS [" ) );
assertTrue( resultingLines.get( 4 ).startsWith( "[INFO] module-3 ........................................... SUCCESS [" ) );
-
+
}
/**
* Check that the resulting output is
* as expected for all modules in case
- * for an aggregator build.
+ * for an aggregator build.
*/
public void testitShouldPrintVersionInAllLines()
throws Exception
@@ -93,7 +93,7 @@ public class MavenITmng6391PrintVersionTest
Verifier verifier = newVerifier( testDir.getAbsolutePath(), false );
verifier.setMavenDebug( false );
verifier.setAutoclean( false );
-
+
verifier.setLogFileName( "version-log.txt" );
verifier.executeGoals( Arrays.asList( "clean" ) );
verifier.verifyErrorFreeLog();
@@ -113,10 +113,10 @@ public class MavenITmng6391PrintVersionTest
assertTrue( resultingLines.get( 4 ).startsWith( "[INFO] base-project 1.0.0-SNAPSHOT ........................ SUCCESS [ " ) );
}
-
+
/**
* Extract the lines at the end of the Maven output:
- *
+ *
*
* [INFO] Reactor Summary..: XXX
* [INFO]
diff --git a/its/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng6558ToolchainsBuildingEventTest.java b/its/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng6558ToolchainsBuildingEventTest.java
index 42e4b5b7ff..a92bf32f5a 100644
--- a/its/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng6558ToolchainsBuildingEventTest.java
+++ b/its/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng6558ToolchainsBuildingEventTest.java
@@ -57,9 +57,9 @@ public class MavenITmng6558ToolchainsBuildingEventTest
List lines = verifier.loadLines( "target/spy.log", "UTF-8" );
assertTrue( lines.toString(), lines.get( 0 ).startsWith( "init" ) );
assertTrue( lines.toString(), lines.get( lines.size() - 1 ).startsWith( "close" ) );
- assertTrue( lines.toString(),
+ assertTrue( lines.toString(),
lines.contains( "event: org.apache.maven.toolchain.building.DefaultToolchainsBuildingRequest" ) );
- assertTrue( lines.toString(),
+ assertTrue( lines.toString(),
lines.contains( "event: org.apache.maven.toolchain.building.DefaultToolchainsBuildingResult" ) );
}
diff --git a/its/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng6562WarnDefaultBindings.java b/its/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng6562WarnDefaultBindings.java
index 9f3b16d626..ddad3dfe93 100644
--- a/its/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng6562WarnDefaultBindings.java
+++ b/its/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng6562WarnDefaultBindings.java
@@ -37,7 +37,7 @@ public class MavenITmng6562WarnDefaultBindings
throws Exception
{
File testDir = ResourceExtractor.simpleExtractResources( getClass(), "/mng-6562-default-bindings" );
-
+
String phase = "validate";
Verifier verifier = newVerifier( testDir.getAbsolutePath(), false );
verifier.setAutoclean( false );
@@ -49,13 +49,13 @@ public class MavenITmng6562WarnDefaultBindings
verifier.verifyErrorFreeLog();
}
-
+
public void testItShouldNotWarn2()
throws Exception
{
File testDir = ResourceExtractor.simpleExtractResources( getClass(), "/mng-6562-default-bindings" );
-
+
String phase = "process-resources";
Verifier verifier = newVerifier( testDir.getAbsolutePath(), false );
verifier.setAutoclean( false );
@@ -67,12 +67,12 @@ public class MavenITmng6562WarnDefaultBindings
verifier.verifyErrorFreeLog();
}
-
+
public void testItShouldWarnForCompilerPlugin()
throws Exception
{
File testDir = ResourceExtractor.simpleExtractResources( getClass(), "/mng-6562-default-bindings" );
-
+
String phase = "compile";
Verifier verifier = newVerifier( testDir.getAbsolutePath(), false );
verifier.setAutoclean( false );
@@ -83,12 +83,12 @@ public class MavenITmng6562WarnDefaultBindings
verifier.verifyTextInLog( "Version not locked for default bindings plugins [maven-compiler-plugin]"
+ ", you should define versions in pluginManagement section of your pom.xml or parent" );
}
-
+
public void testItShouldWarnForCompilerPlugin2()
throws Exception
{
File testDir = ResourceExtractor.simpleExtractResources( getClass(), "/mng-6562-default-bindings" );
-
+
String phase = "process-test-resources";
Verifier verifier = newVerifier( testDir.getAbsolutePath(), false );
verifier.setAutoclean( false );
@@ -100,12 +100,12 @@ public class MavenITmng6562WarnDefaultBindings
verifier.verifyTextInLog( "Version not locked for default bindings plugins [maven-compiler-plugin]"
+ ", you should define versions in pluginManagement section of your pom.xml or parent" );
}
-
+
public void testItShouldWarnForCompilerPlugin3()
throws Exception
{
File testDir = ResourceExtractor.simpleExtractResources( getClass(), "/mng-6562-default-bindings" );
-
+
String phase = "test-compile";
Verifier verifier = newVerifier( testDir.getAbsolutePath(), false );
verifier.setAutoclean( false );
@@ -117,12 +117,12 @@ public class MavenITmng6562WarnDefaultBindings
verifier.verifyTextInLog( "Version not locked for default bindings plugins [maven-compiler-plugin]"
+ ", you should define versions in pluginManagement section of your pom.xml or parent" );
}
-
+
public void testItShouldWarnForCompilerPluginAndSurefirePlugin()
throws Exception
{
File testDir = ResourceExtractor.simpleExtractResources( getClass(), "/mng-6562-default-bindings" );
-
+
String phase = "test";
Verifier verifier = newVerifier( testDir.getAbsolutePath(), false );
verifier.setAutoclean( false );
diff --git a/its/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng6656BuildConsumer.java b/its/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng6656BuildConsumer.java
index 4a60442393..6086e5c213 100644
--- a/its/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng6656BuildConsumer.java
+++ b/its/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng6656BuildConsumer.java
@@ -32,7 +32,7 @@ import java.util.Arrays;
* parents can omit the version if the relative path points to the correct parent
* dependencies can omit the version if it is part of the reactor
*
- *
+ *
* During install the pom will be cleaned up
*
* - the modules will be removed
@@ -75,16 +75,16 @@ public class MavenITmng6656BuildConsumer
verifier.verifyErrorFreeLog();
String content;
- content = FileUtils.fileRead( new File( testDir, "expected/parent.pom") );
+ content = FileUtils.fileRead( new File( testDir, "expected/parent.pom") );
verifier.assertArtifactContents( "org.sonatype.mavenbook.multi", "parent", "0.9-MNG6656-SNAPSHOT", "pom", content );
- content = FileUtils.fileRead( new File( testDir, "expected/simple-parent.pom") );
+ content = FileUtils.fileRead( new File( testDir, "expected/simple-parent.pom") );
verifier.assertArtifactContents( "org.sonatype.mavenbook.multi", "simple-parent", "0.9-MNG6656-SNAPSHOT", "pom", content );
- content = FileUtils.fileRead( new File( testDir, "expected/simple-weather.pom") );
+ content = FileUtils.fileRead( new File( testDir, "expected/simple-weather.pom") );
verifier.assertArtifactContents( "org.sonatype.mavenbook.multi", "simple-weather", "0.9-MNG6656-SNAPSHOT", "pom", content );
- content = FileUtils.fileRead( new File( testDir, "expected/simple-webapp.pom") );
+ content = FileUtils.fileRead( new File( testDir, "expected/simple-webapp.pom") );
verifier.assertArtifactContents( "org.sonatype.mavenbook.multi", "simple-webapp", "0.9-MNG6656-SNAPSHOT", "pom", content );
}
diff --git a/its/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng6772NestedImportScopeRepositoryOverride.java b/its/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng6772NestedImportScopeRepositoryOverride.java
index 18aa3a0dc5..398da0805c 100644
--- a/its/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng6772NestedImportScopeRepositoryOverride.java
+++ b/its/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng6772NestedImportScopeRepositoryOverride.java
@@ -28,7 +28,7 @@ import org.apache.maven.it.util.ResourceExtractor;
*
* The test POM references an import scope POM, which also has a dependency on an import scope POM.
*
- * Both import POMs can only be found in the repository defined in the test POM.
+ * Both import POMs can only be found in the repository defined in the test POM.
* It has a parent POM that defines the same repository with a different location.
* The test confirms that the dominant repository definition (child) wins while resolving the import POMs.
*
@@ -58,7 +58,7 @@ public class MavenITmng6772NestedImportScopeRepositoryOverride
verifier.verifyErrorFreeLog();
verifier.resetStreams();
}
-
+
// This will test the behavior using DefaultModelResolver
public void testitInDependency()
throws Exception
@@ -75,7 +75,7 @@ public class MavenITmng6772NestedImportScopeRepositoryOverride
verifier.verifyErrorFreeLog();
verifier.resetStreams();
}
-
+
// central must not be defined in any settings.xml or super POM will never be in play.
private void overrideGlobalSettings( final File testDir, final Verifier verifier )
{
diff --git a/its/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng6957BuildConsumer.java b/its/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng6957BuildConsumer.java
index 147edb4ae0..6486d45854 100644
--- a/its/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng6957BuildConsumer.java
+++ b/its/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng6957BuildConsumer.java
@@ -32,7 +32,7 @@ import java.util.Arrays;
* - parents can omit the version if the relative path points to the correct parent
* - dependencies can omit the version if it is part of the reactor
*
- *
+ *
* During install the POM will be cleaned up
*
* - the modules will be removed
@@ -75,22 +75,22 @@ public class MavenITmng6957BuildConsumer
verifier.verifyErrorFreeLog();
String content;
- content = FileUtils.fileRead( new File( testDir, "expected/parent.pom") );
+ content = FileUtils.fileRead( new File( testDir, "expected/parent.pom") );
verifier.assertArtifactContents( "org.sonatype.mavenbook.multi", "parent", "0.9-MNG6957-SNAPSHOT", "pom", content );
- content = FileUtils.fileRead( new File( testDir, "expected/simple-parent.pom") );
+ content = FileUtils.fileRead( new File( testDir, "expected/simple-parent.pom") );
verifier.assertArtifactContents( "org.sonatype.mavenbook.multi", "simple-parent", "0.9-MNG6957-SNAPSHOT", "pom", content );
- content = FileUtils.fileRead( new File( testDir, "expected/simple-weather.pom") );
+ content = FileUtils.fileRead( new File( testDir, "expected/simple-weather.pom") );
verifier.assertArtifactContents( "org.sonatype.mavenbook.multi", "simple-weather", "0.9-MNG6957-SNAPSHOT", "pom", content );
- content = FileUtils.fileRead( new File( testDir, "expected/simple-webapp.pom") );
+ content = FileUtils.fileRead( new File( testDir, "expected/simple-webapp.pom") );
verifier.assertArtifactContents( "org.sonatype.mavenbook.multi", "simple-webapp", "0.9-MNG6957-SNAPSHOT", "pom", content );
- content = FileUtils.fileRead( new File( testDir, "expected/simple-testutils.pom") );
+ content = FileUtils.fileRead( new File( testDir, "expected/simple-testutils.pom") );
verifier.assertArtifactContents( "org.sonatype.mavenbook.multi", "simple-testutils", "0.9-MNG6957-SNAPSHOT", "pom", content );
- content = FileUtils.fileRead( new File( testDir, "expected/utils-parent.pom") );
+ content = FileUtils.fileRead( new File( testDir, "expected/utils-parent.pom") );
verifier.assertArtifactContents( "org.sonatype.mavenbook.multi", "utils-parent", "0.9-MNG6957-SNAPSHOT", "pom", content );
}
diff --git a/its/core-it-suite/src/test/resources/bootstrap/group-5/pom.xml b/its/core-it-suite/src/test/resources/bootstrap/group-5/pom.xml
index 700eb2146f..4ea5d05e64 100644
--- a/its/core-it-suite/src/test/resources/bootstrap/group-5/pom.xml
+++ b/its/core-it-suite/src/test/resources/bootstrap/group-5/pom.xml
@@ -70,17 +70,17 @@ under the License.
plexus-utils
3.0.9
runtime
-
+
commons-lang
commons-lang
2.6
runtime
-
+
org.apache.maven.skins
maven-default-skin
1.0
-
+
diff --git a/its/core-it-suite/src/test/resources/it0008/pom.xml b/its/core-it-suite/src/test/resources/it0008/pom.xml
index ff7a05a669..c1b0834dea 100644
--- a/its/core-it-suite/src/test/resources/it0008/pom.xml
+++ b/its/core-it-suite/src/test/resources/it0008/pom.xml
@@ -27,11 +27,11 @@ under the License.
1.0
jar
- Maven Integration Test :: it0008
+ Maven Integration Test :: it0008
Simple goal decoration where a plugin binds to a phase and the plugin must
be downloaded from a remote repository before it can be executed. This
- test also checks to make sure that mojo parameters are aligned to the
+ test also checks to make sure that mojo parameters are aligned to the
project basedir when their type is "java.io.File".
diff --git a/its/core-it-suite/src/test/resources/it0009/pom.xml b/its/core-it-suite/src/test/resources/it0009/pom.xml
index 8a4d7e722f..af9a0b7d56 100644
--- a/its/core-it-suite/src/test/resources/it0009/pom.xml
+++ b/its/core-it-suite/src/test/resources/it0009/pom.xml
@@ -27,7 +27,7 @@ under the License.
1.0
jar
- Maven Integration Test :: it0009
+ Maven Integration Test :: it0009
Test plugin configuration and goal configuration that overrides what the
mojo has specified.
diff --git a/its/core-it-suite/src/test/resources/it0010/pom.xml b/its/core-it-suite/src/test/resources/it0010/pom.xml
index 83daff7e4c..1ac309e5d5 100644
--- a/its/core-it-suite/src/test/resources/it0010/pom.xml
+++ b/its/core-it-suite/src/test/resources/it0010/pom.xml
@@ -27,7 +27,7 @@ under the License.
1.0
jar
- Maven Integration Test :: it0010
+ Maven Integration Test :: it0010
Since the artifact resolution does not use the project builder, we must
ensure that the full hierarchy of all dependencies is resolved. This
diff --git a/its/core-it-suite/src/test/resources/it0011/pom.xml b/its/core-it-suite/src/test/resources/it0011/pom.xml
index 28e84cf25f..d055cf4242 100644
--- a/its/core-it-suite/src/test/resources/it0011/pom.xml
+++ b/its/core-it-suite/src/test/resources/it0011/pom.xml
@@ -27,7 +27,7 @@ under the License.
1.0
jar
- Maven Integration Test :: it0011
+ Maven Integration Test :: it0011
Test specification of dependency versions via <dependencyManagement/>.
diff --git a/its/core-it-suite/src/test/resources/it0012/pom.xml b/its/core-it-suite/src/test/resources/it0012/pom.xml
index 089a8d6736..f03cba0ea1 100644
--- a/its/core-it-suite/src/test/resources/it0012/pom.xml
+++ b/its/core-it-suite/src/test/resources/it0012/pom.xml
@@ -27,7 +27,7 @@ under the License.
3.8.1
pom
- Maven Integration Test :: it0012
+ Maven Integration Test :: it0012
Test simple POM interpolation
diff --git a/its/core-it-suite/src/test/resources/it0018/pom.xml b/its/core-it-suite/src/test/resources/it0018/pom.xml
index 23a49a7b7e..57bd646dea 100644
--- a/its/core-it-suite/src/test/resources/it0018/pom.xml
+++ b/its/core-it-suite/src/test/resources/it0018/pom.xml
@@ -26,13 +26,13 @@ under the License.
maven-it-it0018
1.0
- Maven Integration Test :: it0018
+ Maven Integration Test :: it0018
Ensure that managed dependencies for dependency POMs are calculated
correctly when resolved. Removes managed-dep-1.0.3 and checks it is
redownloaded.
-
+
org.apache.maven.its.it0018
diff --git a/its/core-it-suite/src/test/resources/it0019/pom.xml b/its/core-it-suite/src/test/resources/it0019/pom.xml
index 999889dd13..8b30cd9105 100644
--- a/its/core-it-suite/src/test/resources/it0019/pom.xml
+++ b/its/core-it-suite/src/test/resources/it0019/pom.xml
@@ -26,7 +26,7 @@ under the License.
maven-it-it0019
1.0
- Maven Integration Test :: it0019
+ Maven Integration Test :: it0019
Test that a version is managed by pluginManagement in the super POM
diff --git a/its/core-it-suite/src/test/resources/it0021/pom.xml b/its/core-it-suite/src/test/resources/it0021/pom.xml
index 2828fd1789..d7af4e27ba 100644
--- a/its/core-it-suite/src/test/resources/it0021/pom.xml
+++ b/its/core-it-suite/src/test/resources/it0021/pom.xml
@@ -26,7 +26,7 @@ under the License.
test
1.0-SNAPSHOT
- Maven Integration Test :: it0021
+ Maven Integration Test :: it0021
Test pom-level profile inclusion (this one is activated by system property).
diff --git a/its/core-it-suite/src/test/resources/it0023/pom.xml b/its/core-it-suite/src/test/resources/it0023/pom.xml
index db7988b09e..807eef2d92 100644
--- a/its/core-it-suite/src/test/resources/it0023/pom.xml
+++ b/its/core-it-suite/src/test/resources/it0023/pom.xml
@@ -24,9 +24,9 @@ under the License.
org.apache.maven.its.it0023
maven-it-it0023
- 1.0-SNAPSHOT
+ 1.0-SNAPSHOT
- Maven Integration Test :: it0023
+ Maven Integration Test :: it0023
Test profile inclusion from settings.xml (this one is activated by an id in the activeProfiles section).
diff --git a/its/core-it-suite/src/test/resources/it0023/settings.xml b/its/core-it-suite/src/test/resources/it0023/settings.xml
index 363bde0538..00554c94a0 100644
--- a/its/core-it-suite/src/test/resources/it0023/settings.xml
+++ b/its/core-it-suite/src/test/resources/it0023/settings.xml
@@ -23,7 +23,7 @@ under the License.
test-profile
-
+
test-profile
diff --git a/its/core-it-suite/src/test/resources/it0025/pom.xml b/its/core-it-suite/src/test/resources/it0025/pom.xml
index 6da5dc7460..23d39b8d48 100644
--- a/its/core-it-suite/src/test/resources/it0025/pom.xml
+++ b/its/core-it-suite/src/test/resources/it0025/pom.xml
@@ -1,6 +1,6 @@
4.0.0
- Maven Integration Test :: it0025
+ Maven Integration Test :: it0025
org.apache.maven.its.it0025
maven-it-it0025
Test multiple goal executions with different execution-level configs.
@@ -19,7 +19,7 @@
test.txt
-
+
touch
diff --git a/its/core-it-suite/src/test/resources/it0030/pom.xml b/its/core-it-suite/src/test/resources/it0030/pom.xml
index ccbf5896d6..305ada0d46 100644
--- a/its/core-it-suite/src/test/resources/it0030/pom.xml
+++ b/its/core-it-suite/src/test/resources/it0030/pom.xml
@@ -1,9 +1,9 @@
4.0.0
- Maven Integration Test :: it0030
+ Maven Integration Test :: it0030
org.apache.maven.its.it0030
maven-it-it0030
- Test for injection of dependencyManagement through parents of
+ Test for injection of dependencyManagement through parents of
dependency poms.
1.0-SNAPSHOT
pom
diff --git a/its/core-it-suite/src/test/resources/it0032/pom.xml b/its/core-it-suite/src/test/resources/it0032/pom.xml
index 247ff59e5d..cd203f8513 100644
--- a/its/core-it-suite/src/test/resources/it0032/pom.xml
+++ b/its/core-it-suite/src/test/resources/it0032/pom.xml
@@ -27,7 +27,7 @@ under the License.
1.0
jar
- Maven Integration Test :: it0032
+ Maven Integration Test :: it0032
Tests that a specified Maven version requirement that is lower doesn't cause any problems
diff --git a/its/core-it-suite/src/test/resources/it0036/pom.xml b/its/core-it-suite/src/test/resources/it0036/pom.xml
index c7a9d1d9ed..4fdd4701d2 100644
--- a/its/core-it-suite/src/test/resources/it0036/pom.xml
+++ b/its/core-it-suite/src/test/resources/it0036/pom.xml
@@ -27,7 +27,7 @@ under the License.
0.1
pom
- Maven Integration Test :: it0036
+ Maven Integration Test :: it0036
Test building from release-pom.xml when it's available
diff --git a/its/core-it-suite/src/test/resources/it0036/release-pom.xml b/its/core-it-suite/src/test/resources/it0036/release-pom.xml
index 0e3f363e85..2a9846e8da 100644
--- a/its/core-it-suite/src/test/resources/it0036/release-pom.xml
+++ b/its/core-it-suite/src/test/resources/it0036/release-pom.xml
@@ -27,7 +27,7 @@ under the License.
0.1
pom
- Maven Integration Test :: it0036
+ Maven Integration Test :: it0036
Test building from release-pom.xml when it's available
diff --git a/its/core-it-suite/src/test/resources/it0037/pom.xml b/its/core-it-suite/src/test/resources/it0037/pom.xml
index e430d822b1..9b25b36740 100644
--- a/its/core-it-suite/src/test/resources/it0037/pom.xml
+++ b/its/core-it-suite/src/test/resources/it0037/pom.xml
@@ -27,7 +27,7 @@ under the License.
0.1
jar
- Maven Integration Test :: it0037
+ Maven Integration Test :: it0037
Test building with alternate pom file using '-f'
diff --git a/its/core-it-suite/src/test/resources/it0037/pom2.xml b/its/core-it-suite/src/test/resources/it0037/pom2.xml
index 195c359a2a..59743ebd54 100644
--- a/its/core-it-suite/src/test/resources/it0037/pom2.xml
+++ b/its/core-it-suite/src/test/resources/it0037/pom2.xml
@@ -27,7 +27,7 @@ under the License.
0.1
jar
- Maven Integration Test :: it0037
+ Maven Integration Test :: it0037
Test building with alternate pom file using '-f'
diff --git a/its/core-it-suite/src/test/resources/it0038/pom.xml b/its/core-it-suite/src/test/resources/it0038/pom.xml
index f8e6501373..c912f1572a 100644
--- a/its/core-it-suite/src/test/resources/it0038/pom.xml
+++ b/its/core-it-suite/src/test/resources/it0038/pom.xml
@@ -27,7 +27,7 @@ under the License.
0.1
jar
- Maven Integration Test :: it0038
+ Maven Integration Test :: it0038
Test building project from outside the project directory using '-f' option
diff --git a/its/core-it-suite/src/test/resources/it0038/project/pom2.xml b/its/core-it-suite/src/test/resources/it0038/project/pom2.xml
index 3272f0ae8f..df32a8c8cb 100644
--- a/its/core-it-suite/src/test/resources/it0038/project/pom2.xml
+++ b/its/core-it-suite/src/test/resources/it0038/project/pom2.xml
@@ -27,7 +27,7 @@ under the License.
0.2
jar
- Maven Integration Test :: it0038
+ Maven Integration Test :: it0038
Test building project from outside the project directory using '-f' option
diff --git a/its/core-it-suite/src/test/resources/it0039/project/pom.xml b/its/core-it-suite/src/test/resources/it0039/project/pom.xml
index 00f730fbc6..c380e1233c 100644
--- a/its/core-it-suite/src/test/resources/it0039/project/pom.xml
+++ b/its/core-it-suite/src/test/resources/it0039/project/pom.xml
@@ -27,7 +27,7 @@ under the License.
0.1
jar
- Maven Integration Test :: it0039
+ Maven Integration Test :: it0039
Test that reactor uses release-pom.xml if available.
diff --git a/its/core-it-suite/src/test/resources/it0039/project/release-pom.xml b/its/core-it-suite/src/test/resources/it0039/project/release-pom.xml
index cb0183e21c..7938bce71e 100644
--- a/its/core-it-suite/src/test/resources/it0039/project/release-pom.xml
+++ b/its/core-it-suite/src/test/resources/it0039/project/release-pom.xml
@@ -27,7 +27,7 @@ under the License.
0.2
jar
- Maven Integration Test :: it0039
+ Maven Integration Test :: it0039
Test that reactor uses release-pom.xml if available.
diff --git a/its/core-it-suite/src/test/resources/it0039/project2/pom.xml b/its/core-it-suite/src/test/resources/it0039/project2/pom.xml
index a00bd01ce0..88a5067bc2 100644
--- a/its/core-it-suite/src/test/resources/it0039/project2/pom.xml
+++ b/its/core-it-suite/src/test/resources/it0039/project2/pom.xml
@@ -27,7 +27,7 @@ under the License.
0.1
jar
- Maven Integration Test :: it0039
+ Maven Integration Test :: it0039
Test that reactor uses release-pom.xml if available.
diff --git a/its/core-it-suite/src/test/resources/it0039/project2/release-pom.xml b/its/core-it-suite/src/test/resources/it0039/project2/release-pom.xml
index 9116cc116b..c615e901d2 100644
--- a/its/core-it-suite/src/test/resources/it0039/project2/release-pom.xml
+++ b/its/core-it-suite/src/test/resources/it0039/project2/release-pom.xml
@@ -27,7 +27,7 @@ under the License.
0.2
jar
- Maven Integration Test :: it0039
+ Maven Integration Test :: it0039
Test that reactor uses release-pom.xml if available.
diff --git a/its/core-it-suite/src/test/resources/it0040/pom.xml b/its/core-it-suite/src/test/resources/it0040/pom.xml
index 0b79e21ee3..e4201f0d05 100644
--- a/its/core-it-suite/src/test/resources/it0040/pom.xml
+++ b/its/core-it-suite/src/test/resources/it0040/pom.xml
@@ -1,12 +1,12 @@
4.0.0
- Maven Integration Test :: it0040
+ Maven Integration Test :: it0040
org.apache.maven.its.it0040
maven-it-it0040
Test the use of a packaging from a plugin
it-packaging
1.0
-
+
diff --git a/its/core-it-suite/src/test/resources/it0041/pom.xml b/its/core-it-suite/src/test/resources/it0041/pom.xml
index 52a36a44ac..5fb8a6e8c4 100644
--- a/its/core-it-suite/src/test/resources/it0041/pom.xml
+++ b/its/core-it-suite/src/test/resources/it0041/pom.xml
@@ -26,9 +26,9 @@ under the License.
test
1.0-SNAPSHOT
- Maven Integration Test :: it0041
+ Maven Integration Test :: it0041
Test the use of a new type from a plugin
-
+
org.apache.maven
diff --git a/its/core-it-suite/src/test/resources/it0051/pom.xml b/its/core-it-suite/src/test/resources/it0051/pom.xml
index 93ecd1fa41..58094499d0 100644
--- a/its/core-it-suite/src/test/resources/it0051/pom.xml
+++ b/its/core-it-suite/src/test/resources/it0051/pom.xml
@@ -27,9 +27,9 @@ under the License.
1.0
jar
- Maven Integration Test :: it0051
+ Maven Integration Test :: it0051
Test source attachment when -DperformRelease=true is specified.
-
+
diff --git a/its/core-it-suite/src/test/resources/it0052/pom.xml b/its/core-it-suite/src/test/resources/it0052/pom.xml
index ac4da04b86..85b7bd945b 100644
--- a/its/core-it-suite/src/test/resources/it0052/pom.xml
+++ b/its/core-it-suite/src/test/resources/it0052/pom.xml
@@ -27,7 +27,7 @@ under the License.
1.0
jar
- Maven Integration Test :: it0052
+ Maven Integration Test :: it0052
Test that source attachment doesn't take place when -DperformRelease=true is missing.
diff --git a/its/core-it-suite/src/test/resources/it0056/pom.xml b/its/core-it-suite/src/test/resources/it0056/pom.xml
index ab449c00de..3597990e03 100644
--- a/its/core-it-suite/src/test/resources/it0056/pom.xml
+++ b/its/core-it-suite/src/test/resources/it0056/pom.xml
@@ -27,7 +27,7 @@ under the License.
1.0
jar
- Maven Integration Test :: it0056
+ Maven Integration Test :: it0056
Test that multiple executions of a goal with different
parameter values will succeed.
diff --git a/its/core-it-suite/src/test/resources/it0063/pom.xml b/its/core-it-suite/src/test/resources/it0063/pom.xml
index b12cc70a7c..0d7b08a90c 100644
--- a/its/core-it-suite/src/test/resources/it0063/pom.xml
+++ b/its/core-it-suite/src/test/resources/it0063/pom.xml
@@ -27,7 +27,7 @@ under the License.
1.0
jar
- Maven Integration Test :: it0063
+ Maven Integration Test :: it0063
Test the use of a system scoped dependency to a (fake) tools.jar.
diff --git a/its/core-it-suite/src/test/resources/it0064/pom.xml b/its/core-it-suite/src/test/resources/it0064/pom.xml
index e67ed99edd..82345e4478 100644
--- a/its/core-it-suite/src/test/resources/it0064/pom.xml
+++ b/its/core-it-suite/src/test/resources/it0064/pom.xml
@@ -6,7 +6,7 @@
1.0
jar
- Maven Integration Test :: it0064
+ Maven Integration Test :: it0064
Test the use of a mojo that uses setters instead of private fields
for the population of configuration values.
diff --git a/its/core-it-suite/src/test/resources/it0071/pom.xml b/its/core-it-suite/src/test/resources/it0071/pom.xml
index 32e36edf51..799a349ede 100644
--- a/its/core-it-suite/src/test/resources/it0071/pom.xml
+++ b/its/core-it-suite/src/test/resources/it0071/pom.xml
@@ -6,7 +6,7 @@
1.0-SNAPSHOT
jar
- Maven Integration Test :: it0071
+ Maven Integration Test :: it0071
Verifies that dotted property references work within plugin configurations.
diff --git a/its/core-it-suite/src/test/resources/it0072/pom.xml b/its/core-it-suite/src/test/resources/it0072/pom.xml
index 0dd5d33b03..7cd953e41e 100644
--- a/its/core-it-suite/src/test/resources/it0072/pom.xml
+++ b/its/core-it-suite/src/test/resources/it0072/pom.xml
@@ -7,7 +7,7 @@
${m2.version}
jar
- Maven Integration Test :: it0072
+ Maven Integration Test :: it0072
Verifies that property references with dotted notation work within POM interpolation.
diff --git a/its/core-it-suite/src/test/resources/it0085/pom.xml b/its/core-it-suite/src/test/resources/it0085/pom.xml
index 88b547929f..d876a9c0a5 100644
--- a/its/core-it-suite/src/test/resources/it0085/pom.xml
+++ b/its/core-it-suite/src/test/resources/it0085/pom.xml
@@ -6,7 +6,7 @@
1.0
pom
- Maven Integration Test :: it0085
+ Maven Integration Test :: it0085
Verify that system-scoped dependencies get resolved with system scope
when they are resolved transitively via another (non-system)
diff --git a/its/core-it-suite/src/test/resources/it0086/pom.xml b/its/core-it-suite/src/test/resources/it0086/pom.xml
index 7ee7fb7c58..bfd0601421 100644
--- a/its/core-it-suite/src/test/resources/it0086/pom.xml
+++ b/its/core-it-suite/src/test/resources/it0086/pom.xml
@@ -26,12 +26,12 @@ under the License.
maven-it-it0086
1.0
- Maven Integration Test :: it0086
+ Maven Integration Test :: it0086
Verify that a plugin dependency class can be loaded from both the plugin classloader and the context classloader
available to the plugin.
-
+
diff --git a/its/core-it-suite/src/test/resources/it0087/pom.xml b/its/core-it-suite/src/test/resources/it0087/pom.xml
index 2525e9fbab..7d5f3a54ea 100644
--- a/its/core-it-suite/src/test/resources/it0087/pom.xml
+++ b/its/core-it-suite/src/test/resources/it0087/pom.xml
@@ -26,7 +26,7 @@ under the License.
maven-it-it0087
1.0
- Maven Integration Test :: it0087
+ Maven Integration Test :: it0087
Verify that a project-level plugin dependency class can be loaded from both the plugin classloader
and the context classloader available to the plugin.
diff --git a/its/core-it-suite/src/test/resources/it0090/pom.xml b/its/core-it-suite/src/test/resources/it0090/pom.xml
index bd1af5d6a3..173d82c848 100644
--- a/its/core-it-suite/src/test/resources/it0090/pom.xml
+++ b/its/core-it-suite/src/test/resources/it0090/pom.xml
@@ -26,7 +26,7 @@ under the License.
maven-it-it0090
1.0
- Maven Integration Test :: it0090
+ Maven Integration Test :: it0090
Test that ensures that envars are interpolated correctly into plugin
configurations.
diff --git a/its/core-it-suite/src/test/resources/it0116/pom.xml b/its/core-it-suite/src/test/resources/it0116/pom.xml
index bcbf46cbe0..bf611e718c 100644
--- a/its/core-it-suite/src/test/resources/it0116/pom.xml
+++ b/its/core-it-suite/src/test/resources/it0116/pom.xml
@@ -5,16 +5,16 @@
pom
1.0-SNAPSHOT
-
- bogus-profile
-
+
+ bogus-profile
+
- bogus-family
-
+ bogus-family
+
value
-
+
diff --git a/its/core-it-suite/src/test/resources/it0130/pom.xml b/its/core-it-suite/src/test/resources/it0130/pom.xml
index 7c3ffa18be..5aa9effd12 100644
--- a/its/core-it-suite/src/test/resources/it0130/pom.xml
+++ b/its/core-it-suite/src/test/resources/it0130/pom.xml
@@ -27,9 +27,9 @@ under the License.
1.0
jar
- Maven Integration Test :: it0130
+ Maven Integration Test :: it0130
Test default binding of goals for "clean" lifecycle.
-
+
diff --git a/its/core-it-suite/src/test/resources/it0131/pom.xml b/its/core-it-suite/src/test/resources/it0131/pom.xml
index 66d817e593..0cd9782851 100644
--- a/its/core-it-suite/src/test/resources/it0131/pom.xml
+++ b/its/core-it-suite/src/test/resources/it0131/pom.xml
@@ -27,9 +27,9 @@ under the License.
1.0
jar
- Maven Integration Test :: it0131
+ Maven Integration Test :: it0131
Test default binding of goals for "site" lifecycle.
-
+
diff --git a/its/core-it-suite/src/test/resources/it0132/pom.xml b/its/core-it-suite/src/test/resources/it0132/pom.xml
index ed0f43a2e6..731264c01d 100644
--- a/its/core-it-suite/src/test/resources/it0132/pom.xml
+++ b/its/core-it-suite/src/test/resources/it0132/pom.xml
@@ -27,9 +27,9 @@ under the License.
1.0
pom
- Maven Integration Test :: it0132
+ Maven Integration Test :: it0132
Test default binding of goals for "pom" lifecycle.
-
+
diff --git a/its/core-it-suite/src/test/resources/it0133/pom.xml b/its/core-it-suite/src/test/resources/it0133/pom.xml
index bd34e453d1..b6f92dbf43 100644
--- a/its/core-it-suite/src/test/resources/it0133/pom.xml
+++ b/its/core-it-suite/src/test/resources/it0133/pom.xml
@@ -27,9 +27,9 @@ under the License.
1.0
jar
- Maven Integration Test :: it0133
+ Maven Integration Test :: it0133
Test default binding of goals for "jar" lifecycle.
-
+
diff --git a/its/core-it-suite/src/test/resources/it0134/pom.xml b/its/core-it-suite/src/test/resources/it0134/pom.xml
index 3607cce836..02812a323b 100644
--- a/its/core-it-suite/src/test/resources/it0134/pom.xml
+++ b/its/core-it-suite/src/test/resources/it0134/pom.xml
@@ -27,9 +27,9 @@ under the License.
1.0
war
- Maven Integration Test :: it0134
+ Maven Integration Test :: it0134
Test default binding of goals for "war" lifecycle.
-
+
diff --git a/its/core-it-suite/src/test/resources/it0135/pom.xml b/its/core-it-suite/src/test/resources/it0135/pom.xml
index 2861790528..8d31a53f6d 100644
--- a/its/core-it-suite/src/test/resources/it0135/pom.xml
+++ b/its/core-it-suite/src/test/resources/it0135/pom.xml
@@ -27,9 +27,9 @@ under the License.
1.0
ejb
- Maven Integration Test :: it0135
+ Maven Integration Test :: it0135
Test default binding of goals for "ejb" lifecycle.
-
+
diff --git a/its/core-it-suite/src/test/resources/it0136/pom.xml b/its/core-it-suite/src/test/resources/it0136/pom.xml
index c007380226..d22440978f 100644
--- a/its/core-it-suite/src/test/resources/it0136/pom.xml
+++ b/its/core-it-suite/src/test/resources/it0136/pom.xml
@@ -27,9 +27,9 @@ under the License.
1.0
rar
- Maven Integration Test :: it0136
+ Maven Integration Test :: it0136
Test default binding of goals for "rar" lifecycle.
-
+
diff --git a/its/core-it-suite/src/test/resources/it0137/pom.xml b/its/core-it-suite/src/test/resources/it0137/pom.xml
index 029e5ee13f..a368062233 100644
--- a/its/core-it-suite/src/test/resources/it0137/pom.xml
+++ b/its/core-it-suite/src/test/resources/it0137/pom.xml
@@ -27,9 +27,9 @@ under the License.
1.0
ear
- Maven Integration Test :: it0137
+ Maven Integration Test :: it0137
Test default binding of goals for "ear" lifecycle.
-
+
diff --git a/its/core-it-suite/src/test/resources/it0138/pom.xml b/its/core-it-suite/src/test/resources/it0138/pom.xml
index 7754ed93d6..3785024827 100644
--- a/its/core-it-suite/src/test/resources/it0138/pom.xml
+++ b/its/core-it-suite/src/test/resources/it0138/pom.xml
@@ -27,9 +27,9 @@ under the License.
1.0
maven-plugin
- Maven Integration Test :: it0138
+ Maven Integration Test :: it0138
Test default binding of goals for "maven-plugin" lifecycle.
-
+
diff --git a/its/core-it-suite/src/test/resources/it0139/child/pom.xml b/its/core-it-suite/src/test/resources/it0139/child/pom.xml
index f566a34ed7..63960f93d3 100644
--- a/its/core-it-suite/src/test/resources/it0139/child/pom.xml
+++ b/its/core-it-suite/src/test/resources/it0139/child/pom.xml
@@ -114,5 +114,5 @@ under the License.
target/doc
-
+
diff --git a/its/core-it-suite/src/test/resources/it0139/pom.xml b/its/core-it-suite/src/test/resources/it0139/pom.xml
index 78ccdc8b79..7668790a81 100644
--- a/its/core-it-suite/src/test/resources/it0139/pom.xml
+++ b/its/core-it-suite/src/test/resources/it0139/pom.xml
@@ -27,7 +27,7 @@ under the License.
1.0
pom
- Maven Integration Test :: it0139
+ Maven Integration Test :: it0139
Test POM interpolation with expressions of the form $ { project.* }
diff --git a/its/core-it-suite/src/test/resources/it0140/child/pom.xml b/its/core-it-suite/src/test/resources/it0140/child/pom.xml
index 30230a3831..587125870a 100644
--- a/its/core-it-suite/src/test/resources/it0140/child/pom.xml
+++ b/its/core-it-suite/src/test/resources/it0140/child/pom.xml
@@ -114,5 +114,5 @@ under the License.
target/doc
-
+
diff --git a/its/core-it-suite/src/test/resources/it0140/pom.xml b/its/core-it-suite/src/test/resources/it0140/pom.xml
index 65252594c3..c5f150cae4 100644
--- a/its/core-it-suite/src/test/resources/it0140/pom.xml
+++ b/its/core-it-suite/src/test/resources/it0140/pom.xml
@@ -27,7 +27,7 @@ under the License.
1.0
pom
- Maven Integration Test :: it0140
+ Maven Integration Test :: it0140
Test POM interpolation with expressions of the form $ { pom.* }
diff --git a/its/core-it-suite/src/test/resources/it0143/pom-template.xml b/its/core-it-suite/src/test/resources/it0143/pom-template.xml
index 42f48436fc..b997355918 100644
--- a/its/core-it-suite/src/test/resources/it0143/pom-template.xml
+++ b/its/core-it-suite/src/test/resources/it0143/pom-template.xml
@@ -26,7 +26,7 @@ under the License.
consumer
0.1
- Maven Integration Test :: it0143
+ Maven Integration Test :: it0143
Test that the different scopes of transitive dependencies end up on the right class paths.
diff --git a/its/core-it-suite/src/test/resources/it0144/pom.xml b/its/core-it-suite/src/test/resources/it0144/pom.xml
index 31f77c3de5..a736fde437 100644
--- a/its/core-it-suite/src/test/resources/it0144/pom.xml
+++ b/its/core-it-suite/src/test/resources/it0144/pom.xml
@@ -27,11 +27,11 @@ under the License.
1.0
jar
- Maven Integration Test :: it0144
+ Maven Integration Test :: it0144
Test that the lifecycle phases execute in proper order.
-
+
diff --git a/its/core-it-suite/src/test/resources/mng-0095/pom.xml b/its/core-it-suite/src/test/resources/mng-0095/pom.xml
index 6a9d58b0c7..be4ad287e4 100644
--- a/its/core-it-suite/src/test/resources/mng-0095/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-0095/pom.xml
@@ -6,7 +6,7 @@
1.0
pom
- Maven Integration Test :: MNG-95
+ Maven Integration Test :: MNG-95
Test reactor failure modes fail-fast, fail-at-end and fail-never by forcing an exception in the first module and
checking the build output of the other modules.
@@ -23,7 +23,7 @@
-
+
subproject1
subproject2
diff --git a/its/core-it-suite/src/test/resources/mng-0095/subproject1/pom.xml b/its/core-it-suite/src/test/resources/mng-0095/subproject1/pom.xml
index 8329229dd6..3b0caf4626 100644
--- a/its/core-it-suite/src/test/resources/mng-0095/subproject1/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-0095/subproject1/pom.xml
@@ -10,7 +10,7 @@
subproject1
jar
- Maven Integration Test :: MNG-95 : Project 1
+ Maven Integration Test :: MNG-95 : Project 1
diff --git a/its/core-it-suite/src/test/resources/mng-0095/subproject2/pom.xml b/its/core-it-suite/src/test/resources/mng-0095/subproject2/pom.xml
index 9832268392..a07a659466 100644
--- a/its/core-it-suite/src/test/resources/mng-0095/subproject2/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-0095/subproject2/pom.xml
@@ -10,7 +10,7 @@
subproject2
jar
- Maven Integration Test :: MNG-95 : Project 2
+ Maven Integration Test :: MNG-95 : Project 2
diff --git a/its/core-it-suite/src/test/resources/mng-0095/subproject3/pom.xml b/its/core-it-suite/src/test/resources/mng-0095/subproject3/pom.xml
index 2d568092ae..4610907e23 100644
--- a/its/core-it-suite/src/test/resources/mng-0095/subproject3/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-0095/subproject3/pom.xml
@@ -10,7 +10,7 @@
subproject3
jar
- Maven Integration Test :: MNG-95 : Project 3
+ Maven Integration Test :: MNG-95 : Project 3
diff --git a/its/core-it-suite/src/test/resources/mng-0249/pom.xml b/its/core-it-suite/src/test/resources/mng-0249/pom.xml
index 3e22493623..68c6e2f941 100644
--- a/its/core-it-suite/src/test/resources/mng-0249/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-0249/pom.xml
@@ -27,7 +27,7 @@ under the License.
0.1
pom
- Maven Integration Test :: MNG-249
+ Maven Integration Test :: MNG-249
Test that the reactor can establish the artifact location of known projects for dependencies
diff --git a/its/core-it-suite/src/test/resources/mng-0282/pom.xml b/its/core-it-suite/src/test/resources/mng-0282/pom.xml
index 7cf6b0f99b..a7342c4197 100644
--- a/its/core-it-suite/src/test/resources/mng-0282/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-0282/pom.xml
@@ -1,6 +1,6 @@
4.0.0
- Maven Integration Test :: it0045
+ Maven Integration Test :: it0045
org.apache.maven.its.it0045
maven-it-it0045
Test non-reactor behavior when plugin declares "@requiresProject false"
@@ -18,7 +18,7 @@
-
+
subproject
diff --git a/its/core-it-suite/src/test/resources/mng-0294/global-settings.xml b/its/core-it-suite/src/test/resources/mng-0294/global-settings.xml
index ca69453c4e..8c7df09374 100644
--- a/its/core-it-suite/src/test/resources/mng-0294/global-settings.xml
+++ b/its/core-it-suite/src/test/resources/mng-0294/global-settings.xml
@@ -2,13 +2,13 @@
test-profile
-
+
includeProfile
-
+
test.txt
diff --git a/its/core-it-suite/src/test/resources/mng-0294/pom.xml b/its/core-it-suite/src/test/resources/mng-0294/pom.xml
index f9e00a714c..6c65bbda62 100644
--- a/its/core-it-suite/src/test/resources/mng-0294/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-0294/pom.xml
@@ -1,10 +1,10 @@
4.0.0
- Maven Integration Test :: it0026
+ Maven Integration Test :: it0026
org.apache.maven.its.it0026
maven-it-it0026
Test merging of global- and user-level settings.xml files.
- 1.0-SNAPSHOT
+ 1.0-SNAPSHOT
diff --git a/its/core-it-suite/src/test/resources/mng-0377/pom.xml b/its/core-it-suite/src/test/resources/mng-0377/pom.xml
index dcfbf56bfd..9b32899887 100644
--- a/its/core-it-suite/src/test/resources/mng-0377/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-0377/pom.xml
@@ -26,7 +26,7 @@ under the License.
maven-it-it0031
1.0-SNAPSHOT
- Maven Integration Test :: it0031
+ Maven Integration Test :: it0031
Test usage of plugins.xml mapping file on the repository to resolve
plugin artifactId from it's prefix using the pluginGroups in
diff --git a/its/core-it-suite/src/test/resources/mng-0469/test0/pom.xml b/its/core-it-suite/src/test/resources/mng-0469/test0/pom.xml
index 8c83f7418a..113200d933 100644
--- a/its/core-it-suite/src/test/resources/mng-0469/test0/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-0469/test0/pom.xml
@@ -31,7 +31,7 @@ under the License.
Test that reporting configuration applies to build plugins, too.
-
+
diff --git a/its/core-it-suite/src/test/resources/mng-0469/test1/pom.xml b/its/core-it-suite/src/test/resources/mng-0469/test1/pom.xml
index e0d42c4836..9226914631 100644
--- a/its/core-it-suite/src/test/resources/mng-0469/test1/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-0469/test1/pom.xml
@@ -31,7 +31,7 @@ under the License.
Test that reporting configuration does not override build configuration during build lifecycle.
-
+
@@ -45,7 +45,7 @@ under the License.
-
+
diff --git a/its/core-it-suite/src/test/resources/mng-0469/test2/pom.xml b/its/core-it-suite/src/test/resources/mng-0469/test2/pom.xml
index da48edbfda..b94ef5265f 100644
--- a/its/core-it-suite/src/test/resources/mng-0469/test2/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-0469/test2/pom.xml
@@ -27,11 +27,11 @@ under the License.
1.1
jar
- Maven Integration Test :: MNG-469
+ Maven Integration Test :: MNG-469
Test that build configuration does not affect report goals.
-
+
@@ -66,7 +66,7 @@ under the License.
-
+
diff --git a/its/core-it-suite/src/test/resources/mng-0471/pom.xml b/its/core-it-suite/src/test/resources/mng-0471/pom.xml
index 6bbf50ace1..c8d8d735a2 100644
--- a/its/core-it-suite/src/test/resources/mng-0471/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-0471/pom.xml
@@ -1,6 +1,6 @@
4.0.0
- Maven Integration Test :: it0027
+ Maven Integration Test :: it0027
org.apache.maven.its.it0027
maven-it-it0027
Test @execute with a custom lifecycle, including configuration
diff --git a/its/core-it-suite/src/test/resources/mng-0479/setup/pom.xml b/its/core-it-suite/src/test/resources/mng-0479/setup/pom.xml
index 1a4406a095..0c1b1d6fd0 100644
--- a/its/core-it-suite/src/test/resources/mng-0479/setup/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-0479/setup/pom.xml
@@ -21,12 +21,12 @@ under the License.
4.0.0
-
+
org.apache.maven.its.it0043
maven-it-it0043
1.0-SNAPSHOT
- Maven Integration Test :: it0043 setup
+ Maven Integration Test :: it0043 setup
Preparation project with non-overriden URL to central for plugin download.
diff --git a/its/core-it-suite/src/test/resources/mng-0479/test-1/pom.xml b/its/core-it-suite/src/test/resources/mng-0479/test-1/pom.xml
index c741bd91b0..a94e6e7a49 100644
--- a/its/core-it-suite/src/test/resources/mng-0479/test-1/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-0479/test-1/pom.xml
@@ -21,7 +21,7 @@ under the License.
4.0.0
-
+
org.apache.maven.its.mng0479
@@ -33,7 +33,7 @@ under the License.
test
0.1-SNAPSHOT
- Maven Integration Test :: MNG-479
+ Maven Integration Test :: MNG-479
Verify that using the same repo id allows to override "central". This project checks that the repo URL can be
changed and that snapshots can be enabled.
diff --git a/its/core-it-suite/src/test/resources/mng-0479/test-2/pom.xml b/its/core-it-suite/src/test/resources/mng-0479/test-2/pom.xml
index 811e58a97d..5bc922e4dd 100644
--- a/its/core-it-suite/src/test/resources/mng-0479/test-2/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-0479/test-2/pom.xml
@@ -21,7 +21,7 @@ under the License.
4.0.0
-
+
org.apache.maven.its.mng0479
@@ -33,7 +33,7 @@ under the License.
test
0.1-SNAPSHOT
- Maven Integration Test :: MNG-479
+ Maven Integration Test :: MNG-479
Verify that using the same repo id allows to override "central". This project checks that releases can be
disabled and that this policy is effective during resolution of parent POMs.
diff --git a/its/core-it-suite/src/test/resources/mng-0479/test-3/pom.xml b/its/core-it-suite/src/test/resources/mng-0479/test-3/pom.xml
index dc1d25571a..87bbba9b6d 100644
--- a/its/core-it-suite/src/test/resources/mng-0479/test-3/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-0479/test-3/pom.xml
@@ -26,7 +26,7 @@ under the License.
test
0.1-SNAPSHOT
- Maven Integration Test :: MNG-479
+ Maven Integration Test :: MNG-479
Verify that using the same repo id allows to override "central". This project checks that releases can be
disabled and this policy is effective during resolution of dependencies.
diff --git a/its/core-it-suite/src/test/resources/mng-0479/test-4/pom.xml b/its/core-it-suite/src/test/resources/mng-0479/test-4/pom.xml
index 2ee42fa3d0..edce8e4bea 100644
--- a/its/core-it-suite/src/test/resources/mng-0479/test-4/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-0479/test-4/pom.xml
@@ -26,7 +26,7 @@ under the License.
test
0.1-SNAPSHOT
- Maven Integration Test :: MNG-479
+ Maven Integration Test :: MNG-479
Verify that using the same repo id allows to override "central". This project checks that releases can be
disabled and this policy is effective during resolution of transitive dependencies.
diff --git a/its/core-it-suite/src/test/resources/mng-0479/test/pom.xml b/its/core-it-suite/src/test/resources/mng-0479/test/pom.xml
index 67f9ee6fc9..5c1dacab08 100644
--- a/its/core-it-suite/src/test/resources/mng-0479/test/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-0479/test/pom.xml
@@ -21,12 +21,12 @@ under the License.
4.0.0
-
+
org.apache.maven.its.it0043
maven-it-it0043
1.0-SNAPSHOT
- Maven Integration Test :: it0043
+ Maven Integration Test :: it0043
Test for repository inheritence - ensure using the same id overrides the defaults
diff --git a/its/core-it-suite/src/test/resources/mng-0505/pom.xml b/its/core-it-suite/src/test/resources/mng-0505/pom.xml
index 0c75f69df7..cad1dd4e96 100644
--- a/its/core-it-suite/src/test/resources/mng-0505/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-0505/pom.xml
@@ -26,7 +26,7 @@ under the License.
test
1.0
- Maven Integration Test :: MNG-505
+ Maven Integration Test :: MNG-505
Test version range support.
diff --git a/its/core-it-suite/src/test/resources/mng-0507/pom.xml b/its/core-it-suite/src/test/resources/mng-0507/pom.xml
index b93b4a11c1..a09c27242b 100644
--- a/its/core-it-suite/src/test/resources/mng-0507/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-0507/pom.xml
@@ -26,7 +26,7 @@ under the License.
test
1.0
- Maven Integration Test :: MNG-507
+ Maven Integration Test :: MNG-507
Test artifact relocation.
diff --git a/its/core-it-suite/src/test/resources/mng-0557/pom.xml b/its/core-it-suite/src/test/resources/mng-0557/pom.xml
index 79bce26c52..abf0ebb944 100644
--- a/its/core-it-suite/src/test/resources/mng-0557/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-0557/pom.xml
@@ -1,6 +1,6 @@
4.0.0
- Maven Integration Test :: it0044
+ Maven Integration Test :: it0044
org.apache.maven.its.it0044
maven-it-it0044
Test --settings CLI option
diff --git a/its/core-it-suite/src/test/resources/mng-0557/settings.xml b/its/core-it-suite/src/test/resources/mng-0557/settings.xml
index 6d6edbf30f..bb1e81e585 100644
--- a/its/core-it-suite/src/test/resources/mng-0557/settings.xml
+++ b/its/core-it-suite/src/test/resources/mng-0557/settings.xml
@@ -2,11 +2,11 @@
test-profile
-
+
test-profile
-
+
test.txt
diff --git a/its/core-it-suite/src/test/resources/mng-0557/src/main/java/org/apache/maven/it0044/Person.java b/its/core-it-suite/src/test/resources/mng-0557/src/main/java/org/apache/maven/it0044/Person.java
index a40f37ad25..b8d3ea3955 100644
--- a/its/core-it-suite/src/test/resources/mng-0557/src/main/java/org/apache/maven/it0044/Person.java
+++ b/its/core-it-suite/src/test/resources/mng-0557/src/main/java/org/apache/maven/it0044/Person.java
@@ -3,12 +3,12 @@ package org.apache.maven.it0044;
public class Person
{
private String name;
-
+
public void setName( String name )
{
this.name = name;
}
-
+
public String getName()
{
return name;
diff --git a/its/core-it-suite/src/test/resources/mng-0612/dependency/pom.xml b/its/core-it-suite/src/test/resources/mng-0612/dependency/pom.xml
index 1f652b7f52..9dd3f8f6a1 100644
--- a/its/core-it-suite/src/test/resources/mng-0612/dependency/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-0612/dependency/pom.xml
@@ -1,6 +1,6 @@
4.0.0
- Maven Integration Test Dependency :: it0125
+ Maven Integration Test Dependency :: it0125
org.apache.maven.its.it0125
maven-it-it0125-dependency
Project that brings in a newer version of maven-core-it-support.
diff --git a/its/core-it-suite/src/test/resources/mng-0612/plugin/pom.xml b/its/core-it-suite/src/test/resources/mng-0612/plugin/pom.xml
index 3163644da8..7f97a3d613 100644
--- a/its/core-it-suite/src/test/resources/mng-0612/plugin/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-0612/plugin/pom.xml
@@ -1,6 +1,6 @@
4.0.0
- Maven Integration Test Plugin :: it0125
+ Maven Integration Test Plugin :: it0125
org.apache.maven.its.it0125
maven-it-it0125-plugin
maven-plugin
diff --git a/its/core-it-suite/src/test/resources/mng-0612/plugin/src/main/java/org/apache/maven/its/it0125/DependenciesMojo.java b/its/core-it-suite/src/test/resources/mng-0612/plugin/src/main/java/org/apache/maven/its/it0125/DependenciesMojo.java
index 2f9802a180..0bb27d5285 100644
--- a/its/core-it-suite/src/test/resources/mng-0612/plugin/src/main/java/org/apache/maven/its/it0125/DependenciesMojo.java
+++ b/its/core-it-suite/src/test/resources/mng-0612/plugin/src/main/java/org/apache/maven/its/it0125/DependenciesMojo.java
@@ -50,19 +50,19 @@ public class DependenciesMojo extends AbstractMojo
* @parameter expression="${project.artifacts}"
*/
private Set artifacts;
-
+
/**
* @parameter expression="${project.build.directory}"
*/
private String buildDirectory;
-
+
/*
* @see org.apache.maven.plugin.Mojo#execute()
*/
public void execute() throws MojoExecutionException, MojoFailureException
{
File file = new File( buildDirectory, "dependencies.log" );
-
+
if ( !file.getParentFile().mkdirs() )
{
throw new MojoExecutionException( "Cannot create build directory" );
@@ -71,15 +71,15 @@ public class DependenciesMojo extends AbstractMojo
try
{
BufferedWriter writer = new BufferedWriter( new FileWriter( file ) );
-
+
for ( Iterator iterator = artifacts.iterator(); iterator.hasNext(); )
{
Artifact artifact = (Artifact) iterator.next();
-
+
writer.write( artifact.toString() );
writer.newLine();
}
-
+
writer.close();
}
catch ( IOException exception )
diff --git a/its/core-it-suite/src/test/resources/mng-0612/project/pom.xml b/its/core-it-suite/src/test/resources/mng-0612/project/pom.xml
index 0ad7d027dd..05707d7c16 100644
--- a/its/core-it-suite/src/test/resources/mng-0612/project/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-0612/project/pom.xml
@@ -1,6 +1,6 @@
4.0.0
- Maven Integration Test :: it0125
+ Maven Integration Test :: it0125
org.apache.maven.its.it0125
maven-it-it0125
Test that ensures the newest-wins conflict resolver is used.
diff --git a/its/core-it-suite/src/test/resources/mng-0624/parentBadPath/main/src/main/java/Hello.java b/its/core-it-suite/src/test/resources/mng-0624/parentBadPath/main/src/main/java/Hello.java
index 8ff698db1d..4b668d43dd 100644
--- a/its/core-it-suite/src/test/resources/mng-0624/parentBadPath/main/src/main/java/Hello.java
+++ b/its/core-it-suite/src/test/resources/mng-0624/parentBadPath/main/src/main/java/Hello.java
@@ -9,6 +9,6 @@ public class Hello
{
public void helloWorld()
{
- System.out.println("Hello World!");
+ System.out.println("Hello World!");
}
}
diff --git a/its/core-it-suite/src/test/resources/mng-0666/pom.xml b/its/core-it-suite/src/test/resources/mng-0666/pom.xml
index 171b3a3a5c..6e37565913 100644
--- a/its/core-it-suite/src/test/resources/mng-0666/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-0666/pom.xml
@@ -26,7 +26,7 @@ under the License.
test
1.0
- Maven Integration Test :: MNG-666
+ Maven Integration Test :: MNG-666
Verify that maven-1 POMs will be ignored but not stop the resolution process.
diff --git a/its/core-it-suite/src/test/resources/mng-0674/pom.xml b/its/core-it-suite/src/test/resources/mng-0674/pom.xml
index 13fe035b04..0ad6de4145 100644
--- a/its/core-it-suite/src/test/resources/mng-0674/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-0674/pom.xml
@@ -5,7 +5,7 @@
test
1.0-SNAPSHOT
- Maven Integration Test :: MNG-674
+ Maven Integration Test :: MNG-674
Test parameter alias usage.
diff --git a/its/core-it-suite/src/test/resources/mng-0680/pom.xml b/its/core-it-suite/src/test/resources/mng-0680/pom.xml
index 384534701e..72dfcdbbf5 100644
--- a/its/core-it-suite/src/test/resources/mng-0680/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-0680/pom.xml
@@ -27,7 +27,7 @@ under the License.
pom
1.0
- Maven Integration Test :: MNG-680
+ Maven Integration Test :: MNG-680
Test that the basedir of the parent is set correctly.
diff --git a/its/core-it-suite/src/test/resources/mng-0731/pom.xml b/its/core-it-suite/src/test/resources/mng-0731/pom.xml
index 32698e10d9..78558b8378 100644
--- a/its/core-it-suite/src/test/resources/mng-0731/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-0731/pom.xml
@@ -27,7 +27,7 @@ under the License.
1.0
jar
- Maven Integration Test :: it0061
+ Maven Integration Test :: it0061
Verify that deployment of artifacts to a legacy-layout repository
results in a groupId directory of 'the.full.group.id' instead of
diff --git a/its/core-it-suite/src/test/resources/mng-0761/pom.xml b/its/core-it-suite/src/test/resources/mng-0761/pom.xml
index 8858407dc3..0e708ef483 100644
--- a/its/core-it-suite/src/test/resources/mng-0761/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-0761/pom.xml
@@ -26,7 +26,7 @@ under the License.
test
1.0-SNAPSHOT
- Maven Integration Test :: MNG-761
+ Maven Integration Test :: MNG-761
Test that a deployment of a snapshot falls back to a non-snapshot repository if no snapshot repository is
specified.
diff --git a/its/core-it-suite/src/test/resources/mng-0768/pom.xml b/its/core-it-suite/src/test/resources/mng-0768/pom.xml
index 8f5f89127a..70c33db239 100644
--- a/its/core-it-suite/src/test/resources/mng-0768/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-0768/pom.xml
@@ -26,7 +26,7 @@ under the License.
test
1.0-SNAPSHOT
- Maven Integration Test :: MNG-768
+ Maven Integration Test :: MNG-768
Test offline mode.
diff --git a/its/core-it-suite/src/test/resources/mng-0773/pom.xml b/its/core-it-suite/src/test/resources/mng-0773/pom.xml
index b2908ad4b8..93fd0ff67b 100644
--- a/its/core-it-suite/src/test/resources/mng-0773/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-0773/pom.xml
@@ -27,7 +27,7 @@ under the License.
1.0
pom
- Maven Integration Test :: MNG-773
+ Maven Integration Test :: MNG-773
Verify that profiles from settings.xml do not pollute module lists across projects in a reactorized build.
diff --git a/its/core-it-suite/src/test/resources/mng-0781/pom.xml b/its/core-it-suite/src/test/resources/mng-0781/pom.xml
index 2d1320872d..1146475bb6 100644
--- a/its/core-it-suite/src/test/resources/mng-0781/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-0781/pom.xml
@@ -27,14 +27,14 @@ under the License.
maven-it-it0074
1.0
- Maven Integration Test :: it0074
+ Maven Integration Test :: it0074
Test that plugin-level configuration instances are not nullified by
execution-level configuration instances.
-
+
org.apache.maven.plugins
maven-resources-plugin
@@ -52,6 +52,6 @@ under the License.
-
+
diff --git a/its/core-it-suite/src/test/resources/mng-0786/pom.xml b/its/core-it-suite/src/test/resources/mng-0786/pom.xml
index 99c8347be7..b09fce627c 100644
--- a/its/core-it-suite/src/test/resources/mng-0786/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-0786/pom.xml
@@ -27,7 +27,7 @@ under the License.
1.0
pom
- Maven Integration Test :: it0075
+ Maven Integration Test :: it0075
Verify that direct invocation of a mojo from the command line still
results in the processing of modules included via profiles.
diff --git a/its/core-it-suite/src/test/resources/mng-0814/pom.xml b/its/core-it-suite/src/test/resources/mng-0814/pom.xml
index 96c2f0e5ad..6d1cf9724b 100644
--- a/its/core-it-suite/src/test/resources/mng-0814/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-0814/pom.xml
@@ -26,9 +26,9 @@ under the License.
test
1.0-SNAPSHOT
- Maven Integration Test :: MNG-814
+ Maven Integration Test :: MNG-814
Test activation of a profile from the command line.
-
+
test-profile
diff --git a/its/core-it-suite/src/test/resources/mng-0818/pom.xml b/its/core-it-suite/src/test/resources/mng-0818/pom.xml
index f77171ea68..fca5688c47 100644
--- a/its/core-it-suite/src/test/resources/mng-0818/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-0818/pom.xml
@@ -27,7 +27,7 @@ under the License.
0.1
ear
- Maven Integration Test :: it0080
+ Maven Integration Test :: it0080
Test that depending on a WAR doesn't also get its dependencies transitively.
diff --git a/its/core-it-suite/src/test/resources/mng-0823/pom.xml b/its/core-it-suite/src/test/resources/mng-0823/pom.xml
index 53568efc27..93d13af2f1 100644
--- a/its/core-it-suite/src/test/resources/mng-0823/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-0823/pom.xml
@@ -1,6 +1,6 @@
4.0.0
- Maven Integration Test :: it0073
+ Maven Integration Test :: it0073
org.apache.maven.its.it0073
maven-it-it0073
Tests context passing between mojos in the same plugin.
diff --git a/its/core-it-suite/src/test/resources/mng-0836/pom.xml b/its/core-it-suite/src/test/resources/mng-0836/pom.xml
index d4e77cfc88..a1d2811951 100644
--- a/its/core-it-suite/src/test/resources/mng-0836/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-0836/pom.xml
@@ -27,7 +27,7 @@ under the License.
test
1.0-SNAPSHOT
- Maven Integration Test :: MNG-836
+ Maven Integration Test :: MNG-836
Test that parent POMs referenced by a plugin POM can be resolved from ordinary repos, i.e. non-plugin repos.
As a motivation for this, imagine the plugin repository hosts only snapshots while the ordinary repository
diff --git a/its/core-it-suite/src/test/resources/mng-0848/pom.xml b/its/core-it-suite/src/test/resources/mng-0848/pom.xml
index fcae484778..62315c8c44 100644
--- a/its/core-it-suite/src/test/resources/mng-0848/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-0848/pom.xml
@@ -26,7 +26,7 @@ under the License.
test
1.0-SNAPSHOT
- Maven Integration Test :: MNG-848
+ Maven Integration Test :: MNG-848
Test that execution/system properties take precedence over default value of plugin parameters.
diff --git a/its/core-it-suite/src/test/resources/mng-0866/pom.xml b/its/core-it-suite/src/test/resources/mng-0866/pom.xml
index 61d8bf19b6..9becd08e51 100644
--- a/its/core-it-suite/src/test/resources/mng-0866/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-0866/pom.xml
@@ -26,7 +26,7 @@ under the License.
test
1.0-SNAPSHOT
- Maven Integration Test :: MNG-866
+ Maven Integration Test :: MNG-866
Test that expressions inside the default value of plugin parameters are evaluated.
diff --git a/its/core-it-suite/src/test/resources/mng-0870/plugin/pom.xml b/its/core-it-suite/src/test/resources/mng-0870/plugin/pom.xml
index d379de64c9..8023442225 100644
--- a/its/core-it-suite/src/test/resources/mng-0870/plugin/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-0870/plugin/pom.xml
@@ -33,7 +33,7 @@ under the License.
0.1-SNAPSHOT
maven-plugin
- Maven Integration Test :: MNG-870 :: Test Plugin
+ Maven Integration Test :: MNG-870 :: Test Plugin
Test that the reactor can resolve plugins that have just been built by a previous module and are not yet
installed to the local repo.
diff --git a/its/core-it-suite/src/test/resources/mng-0870/plugin/src/main/java/org/apache/maven/plugin/coreit/LoadMojo.java b/its/core-it-suite/src/test/resources/mng-0870/plugin/src/main/java/org/apache/maven/plugin/coreit/LoadMojo.java
index 5d18e2908e..505df0ac3e 100644
--- a/its/core-it-suite/src/test/resources/mng-0870/plugin/src/main/java/org/apache/maven/plugin/coreit/LoadMojo.java
+++ b/its/core-it-suite/src/test/resources/mng-0870/plugin/src/main/java/org/apache/maven/plugin/coreit/LoadMojo.java
@@ -30,10 +30,10 @@ import java.net.URL;
/**
* Creates a touch file if and only if a resource from the plugin dependency was successfully loaded, fails otherwise.
- *
+ *
* @goal load
* @phase validate
- *
+ *
* @author Benjamin Bentmann
*
*/
@@ -43,14 +43,14 @@ public class LoadMojo
/**
* The path to the output file, relative to the project base directory.
- *
+ *
* @parameter expression="${touch.file}" default-value="target/touch.txt"
*/
private File file;
/**
* Runs this mojo.
- *
+ *
* @throws MojoExecutionException If the output file could not be created.
* @throws MojoFailureException If the output file has not been set.
*/
diff --git a/its/core-it-suite/src/test/resources/mng-0870/pom.xml b/its/core-it-suite/src/test/resources/mng-0870/pom.xml
index 197ef119ac..cdbf46e2b6 100644
--- a/its/core-it-suite/src/test/resources/mng-0870/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-0870/pom.xml
@@ -27,7 +27,7 @@ under the License.
1-SNAPSHOT
pom
- Maven Integration Test :: MNG-870
+ Maven Integration Test :: MNG-870
Test that the reactor can resolve plugins that have just been built by a previous module and are not yet
installed to the local repo.
diff --git a/its/core-it-suite/src/test/resources/mng-0870/project/pom.xml b/its/core-it-suite/src/test/resources/mng-0870/project/pom.xml
index fad34b7d5c..c4a42e87e4 100644
--- a/its/core-it-suite/src/test/resources/mng-0870/project/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-0870/project/pom.xml
@@ -33,7 +33,7 @@ under the License.
0.2-SNAPSHOT
jar
- Maven Integration Test :: MNG-870 :: Plugin Consumer
+ Maven Integration Test :: MNG-870 :: Plugin Consumer
Test that the reactor can resolve plugins that have just been built by a previous module and are not yet
installed to the local repo.
diff --git a/its/core-it-suite/src/test/resources/mng-0947/pom.xml b/its/core-it-suite/src/test/resources/mng-0947/pom.xml
index 8f1d162b92..ce3f3e4859 100644
--- a/its/core-it-suite/src/test/resources/mng-0947/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-0947/pom.xml
@@ -26,7 +26,7 @@ under the License.
consumer
0.1
- Maven Integration Test :: MNG-947
+ Maven Integration Test :: MNG-947
Verify that direct optional dependencies are included in the project class paths while transitive optional
dependencies are excluded.
diff --git a/its/core-it-suite/src/test/resources/mng-0956/pom.xml b/its/core-it-suite/src/test/resources/mng-0956/pom.xml
index 6d57e991a4..313e16ac4d 100644
--- a/its/core-it-suite/src/test/resources/mng-0956/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-0956/pom.xml
@@ -27,7 +27,7 @@ under the License.
0.1
pom
- Maven Integration Test :: MNG-956
+ Maven Integration Test :: MNG-956
Test component injection from project-level plugin dependencies.
diff --git a/its/core-it-suite/src/test/resources/mng-0985/pom.xml b/its/core-it-suite/src/test/resources/mng-0985/pom.xml
index d5c9c6ec77..d76ac2d512 100644
--- a/its/core-it-suite/src/test/resources/mng-0985/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-0985/pom.xml
@@ -23,16 +23,16 @@ under the License.
4.0.0
org.apache.maven.its.it0076
- maven-it-it0076
+ maven-it-it0076
1.0-SNAPSHOT
pom
- Maven Integration Test :: it0076
+ Maven Integration Test :: it0076
Test that plugins in pluginManagement aren't included in the build
unless they are referenced by groupId/artifactId within the plugins
section of a pom.
-
+
diff --git a/its/core-it-suite/src/test/resources/mng-1021/pom.xml b/its/core-it-suite/src/test/resources/mng-1021/pom.xml
index fc5e7c83c7..1c30c475cb 100644
--- a/its/core-it-suite/src/test/resources/mng-1021/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-1021/pom.xml
@@ -26,7 +26,7 @@ under the License.
test
SNAPSHOT
- Maven Integration Test :: MNG-1021
+ Maven Integration Test :: MNG-1021
Test that attached artifacts have the same build number as the main
artifact when deployed.
diff --git a/its/core-it-suite/src/test/resources/mng-1052/pom.xml b/its/core-it-suite/src/test/resources/mng-1052/pom.xml
index e40e051f45..7ca0fa9589 100644
--- a/its/core-it-suite/src/test/resources/mng-1052/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-1052/pom.xml
@@ -27,7 +27,7 @@ under the License.
1.0
jar
- Maven Integration Test :: it0078
+ Maven Integration Test :: it0078
Test that configuration for a lifecycle-bound plugin is injected from
PluginManagement section even when it's not explicitly defined in the
diff --git a/its/core-it-suite/src/test/resources/mng-1088/client/pom.xml b/its/core-it-suite/src/test/resources/mng-1088/client/pom.xml
index ec8ef20d76..b8287de1a8 100644
--- a/its/core-it-suite/src/test/resources/mng-1088/client/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-1088/client/pom.xml
@@ -27,7 +27,7 @@ under the License.
0.2-SNAPSHOT
jar
- Maven Integration Test :: MNG-1088 :: Plugin Client
+ Maven Integration Test :: MNG-1088 :: Plugin Client
Test that the plugin manager falls back to resolution from the repository if a plugin is part of the reactor
(i.e. an active project artifact) but the lifecycle has not been executed far enough to produce a file for
diff --git a/its/core-it-suite/src/test/resources/mng-1088/plugin/pom.xml b/its/core-it-suite/src/test/resources/mng-1088/plugin/pom.xml
index 28360f7e9c..1169958666 100644
--- a/its/core-it-suite/src/test/resources/mng-1088/plugin/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-1088/plugin/pom.xml
@@ -27,7 +27,7 @@ under the License.
0.1-SNAPSHOT
maven-plugin
- Maven Integration Test :: MNG-1088 :: Plugin
+ Maven Integration Test :: MNG-1088 :: Plugin
Test that the plugin manager falls back to resolution from the repository if a plugin is part of the reactor
(i.e. an active project artifact) but the lifecycle has not been executed far enough to produce a file for
diff --git a/its/core-it-suite/src/test/resources/mng-1088/plugin/src/main/java/org/apache/maven/plugin/coreit/TouchMojo.java b/its/core-it-suite/src/test/resources/mng-1088/plugin/src/main/java/org/apache/maven/plugin/coreit/TouchMojo.java
index 28d10ec926..f1db14b433 100644
--- a/its/core-it-suite/src/test/resources/mng-1088/plugin/src/main/java/org/apache/maven/plugin/coreit/TouchMojo.java
+++ b/its/core-it-suite/src/test/resources/mng-1088/plugin/src/main/java/org/apache/maven/plugin/coreit/TouchMojo.java
@@ -27,10 +27,10 @@ import java.io.IOException;
/**
* Creates a text file.
- *
+ *
* @goal touch
* @phase validate
- *
+ *
* @author Benjamin Bentmann
*/
public class TouchMojo
@@ -39,14 +39,14 @@ public class TouchMojo
/**
* The path to the output file, relative to the project base directory.
- *
+ *
* @parameter expression="${touch.file}" default-value="target/touch.txt"
*/
private File file;
/**
* Runs this mojo.
- *
+ *
* @throws MojoExecutionException If the output file could not be created.
*/
public void execute()
diff --git a/its/core-it-suite/src/test/resources/mng-1088/pom.xml b/its/core-it-suite/src/test/resources/mng-1088/pom.xml
index e3e7ab926a..f95880b2bb 100644
--- a/its/core-it-suite/src/test/resources/mng-1088/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-1088/pom.xml
@@ -27,7 +27,7 @@ under the License.
0.1
pom
- Maven Integration Test :: MNG-1088
+ Maven Integration Test :: MNG-1088
Test that the plugin manager falls back to resolution from the repository if a plugin is part of the reactor
(i.e. an active project artifact) but the lifecycle has not been executed far enough to produce a file for
diff --git a/its/core-it-suite/src/test/resources/mng-1323/a/pom.xml b/its/core-it-suite/src/test/resources/mng-1323/a/pom.xml
index 92e4935c2a..d0767bdab2 100644
--- a/its/core-it-suite/src/test/resources/mng-1323/a/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-1323/a/pom.xml
@@ -30,7 +30,7 @@ under the License.
a
- Maven Integration Test :: MNG-1323 :: Module A
+ Maven Integration Test :: MNG-1323 :: Module A
diff --git a/its/core-it-suite/src/test/resources/mng-1323/b/pom.xml b/its/core-it-suite/src/test/resources/mng-1323/b/pom.xml
index 60df01911c..dc79be99a7 100644
--- a/its/core-it-suite/src/test/resources/mng-1323/b/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-1323/b/pom.xml
@@ -30,7 +30,7 @@ under the License.
b
- Maven Integration Test :: MNG-1323 :: Module B
+ Maven Integration Test :: MNG-1323 :: Module B
diff --git a/its/core-it-suite/src/test/resources/mng-1323/c/pom.xml b/its/core-it-suite/src/test/resources/mng-1323/c/pom.xml
index 8a9ada77a5..ef196d55d7 100644
--- a/its/core-it-suite/src/test/resources/mng-1323/c/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-1323/c/pom.xml
@@ -30,7 +30,7 @@ under the License.
c
- Maven Integration Test :: MNG-1323 :: Module C
+ Maven Integration Test :: MNG-1323 :: Module C
diff --git a/its/core-it-suite/src/test/resources/mng-1323/pom.xml b/its/core-it-suite/src/test/resources/mng-1323/pom.xml
index f5e2f55ee8..23892c5c8a 100644
--- a/its/core-it-suite/src/test/resources/mng-1323/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-1323/pom.xml
@@ -27,7 +27,7 @@ under the License.
pom
1.0-SNAPSHOT
- Maven Integration Test :: MNG-1323 :: Parent
+ Maven Integration Test :: MNG-1323 :: Parent
Verify that project-level plugin dependencies actually apply to the current project only and not the entire reactor.
diff --git a/its/core-it-suite/src/test/resources/mng-1349/pom.xml b/its/core-it-suite/src/test/resources/mng-1349/pom.xml
index 97ed2f577b..6fb09d1f37 100644
--- a/its/core-it-suite/src/test/resources/mng-1349/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-1349/pom.xml
@@ -27,7 +27,7 @@ under the License.
jar
1
- Maven Integration Test :: MNG-1349
+ Maven Integration Test :: MNG-1349
Tests that different checksum formats are supported.
diff --git a/its/core-it-suite/src/test/resources/mng-1412/pom.xml b/its/core-it-suite/src/test/resources/mng-1412/pom.xml
index 39b0309f95..ca9fd6944a 100644
--- a/its/core-it-suite/src/test/resources/mng-1412/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-1412/pom.xml
@@ -26,7 +26,7 @@ under the License.
test
0.1-SNAPSHOT
- Maven Integration Test :: MNG-1412
+ Maven Integration Test :: MNG-1412
Check that dependencies are available in classpath in same order as declared in POM.
diff --git a/its/core-it-suite/src/test/resources/mng-1415/pom.xml b/its/core-it-suite/src/test/resources/mng-1415/pom.xml
index 1b0395d5cf..9df32be207 100644
--- a/its/core-it-suite/src/test/resources/mng-1415/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-1415/pom.xml
@@ -26,7 +26,7 @@ under the License.
test
1
- Maven Integration Test :: MNG-1415
+ Maven Integration Test :: MNG-1415
Test that quoted system properties are processed correctly.
diff --git a/its/core-it-suite/src/test/resources/mng-1701/pom.xml b/its/core-it-suite/src/test/resources/mng-1701/pom.xml
index 409e669aee..85334e7e3c 100644
--- a/its/core-it-suite/src/test/resources/mng-1701/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-1701/pom.xml
@@ -27,11 +27,11 @@ under the License.
1.0
pom
- Maven Integration Test :: MNG-1701
+ Maven Integration Test :: MNG-1701
Verify that duplicate plugin declarations cause a warning/error.
-
+
diff --git a/its/core-it-suite/src/test/resources/mng-1703/child/pom.xml b/its/core-it-suite/src/test/resources/mng-1703/child/pom.xml
index 6c75acf6ed..227e2fb95b 100644
--- a/its/core-it-suite/src/test/resources/mng-1703/child/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-1703/child/pom.xml
@@ -30,7 +30,7 @@ under the License.
maven-it-mng1703
- Maven Integration Test :: MNG-1703
+ Maven Integration Test :: MNG-1703
Verify that a project-level plugin dependency class inherited from the parent can be loaded from both the plugin classloader
and the context classloader available to the plugin.
diff --git a/its/core-it-suite/src/test/resources/mng-1703/pom.xml b/its/core-it-suite/src/test/resources/mng-1703/pom.xml
index e58ac8100f..8d743f8824 100644
--- a/its/core-it-suite/src/test/resources/mng-1703/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-1703/pom.xml
@@ -27,7 +27,7 @@ under the License.
1.0
pom
- Maven Integration Test :: MNG-1703
+ Maven Integration Test :: MNG-1703
Verify that a project-level plugin dependency class inherited from the parent can be loaded from both the plugin classloader
and the context classloader available to the plugin.
@@ -36,7 +36,7 @@ under the License.
child
-
+
diff --git a/its/core-it-suite/src/test/resources/mng-1830/pom.xml b/its/core-it-suite/src/test/resources/mng-1830/pom.xml
index c29e254c00..f3ecf3c748 100644
--- a/its/core-it-suite/src/test/resources/mng-1830/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-1830/pom.xml
@@ -1,6 +1,6 @@
4.0.0
- Maven Integration Test :: MNG-1830
+ Maven Integration Test :: MNG-1830
org.apache.maven.its.mng1830
maven-it-mng-1830
Test -v
diff --git a/its/core-it-suite/src/test/resources/mng-1908/pom.xml b/its/core-it-suite/src/test/resources/mng-1908/pom.xml
index 4314f0fc7d..894c852ef8 100644
--- a/its/core-it-suite/src/test/resources/mng-1908/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-1908/pom.xml
@@ -26,7 +26,7 @@ under the License.
test
1.0
- Maven Integration Test :: MNG-1908
+ Maven Integration Test :: MNG-1908
Test that legacy repositories with legacy snapshots download correctly.
diff --git a/its/core-it-suite/src/test/resources/mng-1995/pom.xml b/its/core-it-suite/src/test/resources/mng-1995/pom.xml
index 98dc8ef0fb..992eac1eb2 100644
--- a/its/core-it-suite/src/test/resources/mng-1995/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-1995/pom.xml
@@ -26,7 +26,7 @@ under the License.
test1
1.0
- Maven Integration Test :: MNG-1995
+ Maven Integration Test :: MNG-1995
Verify that POM fields that are of type boolean can be interpolated with expressions.
@@ -53,7 +53,7 @@ under the License.
src/main/resources
${filter.resources}
-
+
diff --git a/its/core-it-suite/src/test/resources/mng-1999/child1/pom.xml b/its/core-it-suite/src/test/resources/mng-1999/child1/pom.xml
index 5de9e40418..657092971a 100644
--- a/its/core-it-suite/src/test/resources/mng-1999/child1/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-1999/child1/pom.xml
@@ -30,7 +30,7 @@ under the License.
child1
- Maven Integration Test :: MNG-1999
+ Maven Integration Test :: MNG-1999
Verify that default reports can be suppressed via inheritance from the parent.
diff --git a/its/core-it-suite/src/test/resources/mng-1999/child2/pom.xml b/its/core-it-suite/src/test/resources/mng-1999/child2/pom.xml
index ead5362962..b59feb87e1 100644
--- a/its/core-it-suite/src/test/resources/mng-1999/child2/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-1999/child2/pom.xml
@@ -30,7 +30,7 @@ under the License.
child2
- Maven Integration Test :: MNG-1999
+ Maven Integration Test :: MNG-1999
Verify that children can re-enable default reports if suppressed via inheritance from the parent.
diff --git a/its/core-it-suite/src/test/resources/mng-1999/pom.xml b/its/core-it-suite/src/test/resources/mng-1999/pom.xml
index 46e4499d65..c7ab62e680 100644
--- a/its/core-it-suite/src/test/resources/mng-1999/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-1999/pom.xml
@@ -27,7 +27,7 @@ under the License.
1.0
pom
- Maven Integration Test :: MNG-1999
+ Maven Integration Test :: MNG-1999
Verify that default reports can be suppressed via inheritance from the parent unless children explicitly re-enable
default reports.
diff --git a/its/core-it-suite/src/test/resources/mng-2006/parent/pom.xml b/its/core-it-suite/src/test/resources/mng-2006/parent/pom.xml
index 00a4a349b3..f8b069f82e 100644
--- a/its/core-it-suite/src/test/resources/mng-2006/parent/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-2006/parent/pom.xml
@@ -27,7 +27,7 @@ under the License.
0.1
pom
- Maven Integration Test :: MNG-2006
+ Maven Integration Test :: MNG-2006
Test that inheritance of those URLs which automatically append the child's artifact id take the child's
relative location to the parent into account.
diff --git a/its/core-it-suite/src/test/resources/mng-2045/pom.xml b/its/core-it-suite/src/test/resources/mng-2045/pom.xml
index af9f871612..497327ae06 100644
--- a/its/core-it-suite/src/test/resources/mng-2045/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-2045/pom.xml
@@ -27,7 +27,7 @@ under the License.
0.1-SNAPSHOT
pom
- Maven Integration Test :: MNG-2045
+ Maven Integration Test :: MNG-2045
Verify that during a multi-module build up to phase "install" the (compile) class path of a module that
depends on another module's test JAR actually points to the test classes/JAR and not the main classes.
diff --git a/its/core-it-suite/src/test/resources/mng-2045/test-jar/pom.xml b/its/core-it-suite/src/test/resources/mng-2045/test-jar/pom.xml
index 63191f2d56..59a222d2f0 100644
--- a/its/core-it-suite/src/test/resources/mng-2045/test-jar/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-2045/test-jar/pom.xml
@@ -32,7 +32,7 @@ under the License.
test-jar
0.1-SNAPSHOT
- Maven Integration Test :: MNG-2045 :: Test JAR Producer
+ Maven Integration Test :: MNG-2045 :: Test JAR Producer
Verify that during a multi-module build up to phase "install" the (compile) class path of a module that
depends on another module's test JAR actually points to the test classes/JAR and not the main classes.
diff --git a/its/core-it-suite/src/test/resources/mng-2045/test-user/pom.xml b/its/core-it-suite/src/test/resources/mng-2045/test-user/pom.xml
index cf84991f0e..f4cd4936dc 100644
--- a/its/core-it-suite/src/test/resources/mng-2045/test-user/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-2045/test-user/pom.xml
@@ -32,7 +32,7 @@ under the License.
test-user
0.1-SNAPSHOT
- Maven Integration Test :: MNG-2045 :: Test JAR Consumer
+ Maven Integration Test :: MNG-2045 :: Test JAR Consumer
Verify that during a multi-module build up to phase "install" the (compile) class path of a module that
depends on another module's test JAR actually points to the test classes/JAR and not the main classes.
diff --git a/its/core-it-suite/src/test/resources/mng-2052/pom.xml b/its/core-it-suite/src/test/resources/mng-2052/pom.xml
index 6f3ac8f665..c9efd08b1c 100644
--- a/its/core-it-suite/src/test/resources/mng-2052/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-2052/pom.xml
@@ -26,7 +26,7 @@ under the License.
test
1.0
- Maven Integration Test :: MNG-2052
+ Maven Integration Test :: MNG-2052
Test that properties defined in an active profile in the user's
settings are available for interpolation of systemPath in a dependency.
diff --git a/its/core-it-suite/src/test/resources/mng-2054/pom.xml b/its/core-it-suite/src/test/resources/mng-2054/pom.xml
index 12100b2add..06687efd33 100644
--- a/its/core-it-suite/src/test/resources/mng-2054/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-2054/pom.xml
@@ -27,7 +27,7 @@ under the License.
1
pom
- Maven Integration Test :: MNG-2054
+ Maven Integration Test :: MNG-2054
Test that plugin executions from >1 step of inheritance don't run multiple times.
diff --git a/its/core-it-suite/src/test/resources/mng-2054/project/project-level2/project-level3/project-jar/src/main/java/com/stchome/mavenTest/App.java b/its/core-it-suite/src/test/resources/mng-2054/project/project-level2/project-level3/project-jar/src/main/java/com/stchome/mavenTest/App.java
index 1840d732f3..3d3f7bfac1 100644
--- a/its/core-it-suite/src/test/resources/mng-2054/project/project-level2/project-level3/project-jar/src/main/java/com/stchome/mavenTest/App.java
+++ b/its/core-it-suite/src/test/resources/mng-2054/project/project-level2/project-level3/project-jar/src/main/java/com/stchome/mavenTest/App.java
@@ -4,7 +4,7 @@ package com.stchome.mavenTest.it0096;
* Hello world!
*
*/
-public class App
+public class App
{
public static void main( String[] args )
{
diff --git a/its/core-it-suite/src/test/resources/mng-2054/project/project-level2/project-level3/project-jar/src/test/java/com/stchome/mavenTest/AppTest.java b/its/core-it-suite/src/test/resources/mng-2054/project/project-level2/project-level3/project-jar/src/test/java/com/stchome/mavenTest/AppTest.java
index c0559fd596..1c8ac9911c 100644
--- a/its/core-it-suite/src/test/resources/mng-2054/project/project-level2/project-level3/project-jar/src/test/java/com/stchome/mavenTest/AppTest.java
+++ b/its/core-it-suite/src/test/resources/mng-2054/project/project-level2/project-level3/project-jar/src/test/java/com/stchome/mavenTest/AppTest.java
@@ -7,7 +7,7 @@ import junit.framework.TestSuite;
/**
* Unit test for simple App.
*/
-public class AppTest
+public class AppTest
extends TestCase
{
/**
diff --git a/its/core-it-suite/src/test/resources/mng-2068/test-1/parent/child/pom.xml b/its/core-it-suite/src/test/resources/mng-2068/test-1/parent/child/pom.xml
index cdf10fc075..d9b7070f20 100644
--- a/its/core-it-suite/src/test/resources/mng-2068/test-1/parent/child/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-2068/test-1/parent/child/pom.xml
@@ -32,5 +32,5 @@ under the License.
child
jar
- Maven Integration Test :: MNG-2068 :: Child
+ Maven Integration Test :: MNG-2068 :: Child
diff --git a/its/core-it-suite/src/test/resources/mng-2068/test-1/parent/pom.xml b/its/core-it-suite/src/test/resources/mng-2068/test-1/parent/pom.xml
index b5415c23b6..36a9b25304 100644
--- a/its/core-it-suite/src/test/resources/mng-2068/test-1/parent/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-2068/test-1/parent/pom.xml
@@ -32,7 +32,7 @@ under the License.
parent
pom
- Maven Integration Test :: MNG-2068 :: Parent
+ Maven Integration Test :: MNG-2068 :: Parent
child
diff --git a/its/core-it-suite/src/test/resources/mng-2068/test-1/pom.xml b/its/core-it-suite/src/test/resources/mng-2068/test-1/pom.xml
index fc0109bacf..365b3594ad 100644
--- a/its/core-it-suite/src/test/resources/mng-2068/test-1/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-2068/test-1/pom.xml
@@ -24,8 +24,8 @@ under the License.
org.apache.maven.its.mng2068
grand-parent
- 2.2-SNAPSHOT
+ 2.2-SNAPSHOT
pom
- Maven Integration Test :: MNG-2068 :: Grand Parent
+ Maven Integration Test :: MNG-2068 :: Grand Parent
diff --git a/its/core-it-suite/src/test/resources/mng-2068/test-2/parent/child/pom.xml b/its/core-it-suite/src/test/resources/mng-2068/test-2/parent/child/pom.xml
index 23c0893115..37dad3edc9 100644
--- a/its/core-it-suite/src/test/resources/mng-2068/test-2/parent/child/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-2068/test-2/parent/child/pom.xml
@@ -33,5 +33,5 @@ under the License.
child
1
- Maven Integration Test :: MNG-2068 :: Child
+ Maven Integration Test :: MNG-2068 :: Child
diff --git a/its/core-it-suite/src/test/resources/mng-2068/test-2/parent/pom.xml b/its/core-it-suite/src/test/resources/mng-2068/test-2/parent/pom.xml
index 308587c66a..b6611ee5e2 100644
--- a/its/core-it-suite/src/test/resources/mng-2068/test-2/parent/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-2068/test-2/parent/pom.xml
@@ -34,7 +34,7 @@ under the License.
1
pom
- Maven Integration Test :: MNG-2068 :: Parent
+ Maven Integration Test :: MNG-2068 :: Parent
child
diff --git a/its/core-it-suite/src/test/resources/mng-2068/test-2/pom.xml b/its/core-it-suite/src/test/resources/mng-2068/test-2/pom.xml
index 8bce96d12a..f7832c3996 100644
--- a/its/core-it-suite/src/test/resources/mng-2068/test-2/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-2068/test-2/pom.xml
@@ -27,7 +27,7 @@ under the License.
1
pom
- Maven Integration Test :: MNG-2068 :: Grand Parent
+ Maven Integration Test :: MNG-2068 :: Grand Parent
parent
diff --git a/its/core-it-suite/src/test/resources/mng-2068/test-3/pom.xml b/its/core-it-suite/src/test/resources/mng-2068/test-3/pom.xml
index 68e0af2aba..abbd16a890 100644
--- a/its/core-it-suite/src/test/resources/mng-2068/test-3/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-2068/test-3/pom.xml
@@ -6,7 +6,7 @@
1
pom
- Maven Integration Test :: MNG-2068
+ Maven Integration Test :: MNG-2068
Test that the implied relative path for the parent POM works, even two levels deep.
diff --git a/its/core-it-suite/src/test/resources/mng-2123/pom.xml b/its/core-it-suite/src/test/resources/mng-2123/pom.xml
index 0165dcfc06..cbd055939c 100644
--- a/its/core-it-suite/src/test/resources/mng-2123/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-2123/pom.xml
@@ -27,7 +27,7 @@ under the License.
0.1-SNAPSHOT
jar
- Maven Integration Test :: MNG-2123
+ Maven Integration Test :: MNG-2123
Verify that conflicts between a soft version and a version range are properly resolved.
diff --git a/its/core-it-suite/src/test/resources/mng-2124/parent/child/pom.xml b/its/core-it-suite/src/test/resources/mng-2124/parent/child/pom.xml
index 2e6531cbd4..b54b8e76b4 100644
--- a/its/core-it-suite/src/test/resources/mng-2124/parent/child/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-2124/parent/child/pom.xml
@@ -57,5 +57,5 @@ under the License.
-
+
diff --git a/its/core-it-suite/src/test/resources/mng-2124/pom.xml b/its/core-it-suite/src/test/resources/mng-2124/pom.xml
index ab80ad8d15..08d081522a 100644
--- a/its/core-it-suite/src/test/resources/mng-2124/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-2124/pom.xml
@@ -27,7 +27,7 @@ under the License.
1.0
pom
- Maven Integration Test :: it0100
+ Maven Integration Test :: it0100
Test that ${parent.artifactId} resolves correctly. [MNG-2124]
diff --git a/its/core-it-suite/src/test/resources/mng-2130/pom.xml b/its/core-it-suite/src/test/resources/mng-2130/pom.xml
index 0cca8ba012..21c7bbdf54 100644
--- a/its/core-it-suite/src/test/resources/mng-2130/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-2130/pom.xml
@@ -6,12 +6,12 @@
1
pom
- Maven Integration Test :: MNG-2130
+ Maven Integration Test :: MNG-2130
Test that parent-POMs cached during a build are available as parents
to other POMs in the multimodule build.
-
+
child
diff --git a/its/core-it-suite/src/test/resources/mng-2136/pom.xml b/its/core-it-suite/src/test/resources/mng-2136/pom.xml
index 671d9695f5..9f2d7d470d 100644
--- a/its/core-it-suite/src/test/resources/mng-2136/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-2136/pom.xml
@@ -27,7 +27,7 @@ under the License.
1.0
pom
- Maven Integration Test :: it0102
+ Maven Integration Test :: it0102
Test that <activeByDefault/> calculations for profile activation only
use profiles defined in the POM. [MNG-2136]
diff --git a/its/core-it-suite/src/test/resources/mng-2174/pom.xml b/its/core-it-suite/src/test/resources/mng-2174/pom.xml
index 118861a34a..e283bb09be 100644
--- a/its/core-it-suite/src/test/resources/mng-2174/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-2174/pom.xml
@@ -27,7 +27,7 @@ under the License.
1.0-SNAPSHOT
pom
- Maven Integration Test :: MNG-2174
+ Maven Integration Test :: MNG-2174
Verify that plugin dependencies defined by plugin management of a parent profile are not lost when the
parent's main plugin management section is also present.
diff --git a/its/core-it-suite/src/test/resources/mng-2174/sub/pom.xml b/its/core-it-suite/src/test/resources/mng-2174/sub/pom.xml
index 9c06879520..3614e30527 100644
--- a/its/core-it-suite/src/test/resources/mng-2174/sub/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-2174/sub/pom.xml
@@ -32,7 +32,7 @@ under the License.
child
1.0-SNAPSHOT
- Maven Integration Test :: MNG-2174
+ Maven Integration Test :: MNG-2174
Verify that plugin dependencies defined by plugin management of a parent profile are not lost when the
parent's main plugin management section is also present.
diff --git a/its/core-it-suite/src/test/resources/mng-2196/pom.xml b/its/core-it-suite/src/test/resources/mng-2196/pom.xml
index 6e6b067a2d..dfe2fc923f 100644
--- a/its/core-it-suite/src/test/resources/mng-2196/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-2196/pom.xml
@@ -6,7 +6,7 @@
1
pom
- Maven Integration Test :: MNG-2196
+ Maven Integration Test :: MNG-2196
Verify that multimodule builds where one project references another as
a parent can build, even if that parent is not correctly referenced by
diff --git a/its/core-it-suite/src/test/resources/mng-2222/mod-a/pom.xml b/its/core-it-suite/src/test/resources/mng-2222/mod-a/pom.xml
index 743d48d395..08d3a46e60 100644
--- a/its/core-it-suite/src/test/resources/mng-2222/mod-a/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-2222/mod-a/pom.xml
@@ -31,7 +31,7 @@ under the License.
mod-a
1
- Maven Integration Test :: MNG-2222 :: Module A
+ Maven Integration Test :: MNG-2222 :: Module A
Test that dependencies on reactor projects can be satisfied by their output directories even if those do not
exist (e.g. due to non-existing sources). This ensures consistent build results for "mvn compile" and
diff --git a/its/core-it-suite/src/test/resources/mng-2222/mod-b/pom.xml b/its/core-it-suite/src/test/resources/mng-2222/mod-b/pom.xml
index 1ec98dad7b..05c66f8212 100644
--- a/its/core-it-suite/src/test/resources/mng-2222/mod-b/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-2222/mod-b/pom.xml
@@ -31,7 +31,7 @@ under the License.
mod-b
1
- Maven Integration Test :: MNG-2222 :: Module B
+ Maven Integration Test :: MNG-2222 :: Module B
Test that dependencies on reactor projects can be satisfied by their output directories even if those do not
exist (e.g. due to non-existing sources). This ensures consistent build results for "mvn compile" and
diff --git a/its/core-it-suite/src/test/resources/mng-2222/pom.xml b/its/core-it-suite/src/test/resources/mng-2222/pom.xml
index 561df55b38..2f54d0e369 100644
--- a/its/core-it-suite/src/test/resources/mng-2222/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-2222/pom.xml
@@ -27,13 +27,13 @@ under the License.
1
pom
- Maven Integration Test :: MNG-2222
+ Maven Integration Test :: MNG-2222
Test that dependencies on reactor projects can be satisfied by their output directories even if those do not
exist (e.g. due to non-existing sources). This ensures consistent build results for "mvn compile" and
"mvn package".
-
+
mod-a
mod-b
diff --git a/its/core-it-suite/src/test/resources/mng-2228/pom.xml b/its/core-it-suite/src/test/resources/mng-2228/pom.xml
index 98d62da13a..724f7ea288 100644
--- a/its/core-it-suite/src/test/resources/mng-2228/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-2228/pom.xml
@@ -26,10 +26,10 @@ under the License.
test
1.0
- Maven Integration Test :: MNG-2228
+ Maven Integration Test :: MNG-2228
Verify that components injected into plugins are actually assignment-compatible with the corresponding mojo
- fields in case the field type is both provided by a plugin dependency and by a build extension.
+ fields in case the field type is both provided by a plugin dependency and by a build extension.
diff --git a/its/core-it-suite/src/test/resources/mng-2234/pom.xml b/its/core-it-suite/src/test/resources/mng-2234/pom.xml
index d5f0b59efa..b6c5b32ad7 100644
--- a/its/core-it-suite/src/test/resources/mng-2234/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-2234/pom.xml
@@ -5,7 +5,7 @@
test
1.0-SNAPSHOT
- Maven Integration Test :: MNG-2234
+ Maven Integration Test :: MNG-2234
Verify that the activeProfile section from the settings.xml can also activate profiles specified in the POM,
i.e. outside of the settings.xml.
diff --git a/its/core-it-suite/src/test/resources/mng-2254/latin-1/pom.xml b/its/core-it-suite/src/test/resources/mng-2254/latin-1/pom.xml
index f9bb573ac8..8e31ee2fc0 100644
--- a/its/core-it-suite/src/test/resources/mng-2254/latin-1/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-2254/latin-1/pom.xml
@@ -37,6 +37,6 @@ NOTE: This POM's XML declaration intentionally declares Latin-1 encoding.
0.1-SNAPSHOT
pom
- Maven Integration Test :: MNG-2254 :: Latin-1
+ Maven Integration Test :: MNG-2254 :: Latin-1
TEST-CHARS: ÄÖÜäöüß
diff --git a/its/core-it-suite/src/test/resources/mng-2254/pom.xml b/its/core-it-suite/src/test/resources/mng-2254/pom.xml
index 2a2e552d82..9740c1fe56 100644
--- a/its/core-it-suite/src/test/resources/mng-2254/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-2254/pom.xml
@@ -27,7 +27,7 @@ under the License.
0.1-SNAPSHOT
pom
- Maven Integration Test :: MNG-2254
+ Maven Integration Test :: MNG-2254
Verify that the encoding declaration of the POM is respected.
diff --git a/its/core-it-suite/src/test/resources/mng-2254/utf-8/pom.xml b/its/core-it-suite/src/test/resources/mng-2254/utf-8/pom.xml
index 625042ccd2..580a4d04f4 100644
--- a/its/core-it-suite/src/test/resources/mng-2254/utf-8/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-2254/utf-8/pom.xml
@@ -37,6 +37,6 @@ NOTE: This POM's XML declaration specified no encoding which should therefore de
0.1-SNAPSHOT
pom
- Maven Integration Test :: MNG-2254 :: UTF-8
+ Maven Integration Test :: MNG-2254 :: UTF-8
TEST-CHARS: ßıΣЯ×€
diff --git a/its/core-it-suite/src/test/resources/mng-2276/pom.xml b/its/core-it-suite/src/test/resources/mng-2276/pom.xml
index af4759de4d..fd8c5d89a7 100644
--- a/its/core-it-suite/src/test/resources/mng-2276/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-2276/pom.xml
@@ -27,7 +27,7 @@ under the License.
0.1
jar
- Maven Integration Test :: MNG-2276
+ Maven Integration Test :: MNG-2276
Test that profiles in the POM can be activated by properties declared in active profiles from the settings.
diff --git a/its/core-it-suite/src/test/resources/mng-2277/pom.xml b/its/core-it-suite/src/test/resources/mng-2277/pom.xml
index 47d38e5061..97b09410c3 100644
--- a/its/core-it-suite/src/test/resources/mng-2277/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-2277/pom.xml
@@ -17,7 +17,7 @@
-
+
assembly
test
diff --git a/its/core-it-suite/src/test/resources/mng-2289/issue/pom.xml b/its/core-it-suite/src/test/resources/mng-2289/issue/pom.xml
index da2b497a47..837a1f54e2 100644
--- a/its/core-it-suite/src/test/resources/mng-2289/issue/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-2289/issue/pom.xml
@@ -15,12 +15,12 @@
Issue 2289
SNAPSHOT
-
+
commons-logging
commons-logging
-
+
diff --git a/its/core-it-suite/src/test/resources/mng-2289/parent/pom1.xml b/its/core-it-suite/src/test/resources/mng-2289/parent/pom1.xml
index 2f8ffe1733..ef6d1f6015 100644
--- a/its/core-it-suite/src/test/resources/mng-2289/parent/pom1.xml
+++ b/its/core-it-suite/src/test/resources/mng-2289/parent/pom1.xml
@@ -39,7 +39,7 @@
file:///tmp/repo-m2-snapshot
-
+
diff --git a/its/core-it-suite/src/test/resources/mng-2289/parent/pom2.xml b/its/core-it-suite/src/test/resources/mng-2289/parent/pom2.xml
index bb2e2252f1..59df0fadbf 100644
--- a/its/core-it-suite/src/test/resources/mng-2289/parent/pom2.xml
+++ b/its/core-it-suite/src/test/resources/mng-2289/parent/pom2.xml
@@ -15,7 +15,7 @@
-
+
@@ -40,7 +40,7 @@
file:///tmp/repo-m2-snapshot
-
+
diff --git a/its/core-it-suite/src/test/resources/mng-2293/pom.xml b/its/core-it-suite/src/test/resources/mng-2293/pom.xml
index ad5ec95892..92016ad084 100644
--- a/its/core-it-suite/src/test/resources/mng-2293/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-2293/pom.xml
@@ -6,7 +6,7 @@
3.8.1
pom
- Maven Integration Test :: MNG-2293
+ Maven Integration Test :: MNG-2293
Verify that default implementation of an implementation for a complex object works as expected.
diff --git a/its/core-it-suite/src/test/resources/mng-2309/pom.xml b/its/core-it-suite/src/test/resources/mng-2309/pom.xml
index aa83ec4fde..63ad804769 100644
--- a/its/core-it-suite/src/test/resources/mng-2309/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-2309/pom.xml
@@ -27,7 +27,7 @@ under the License.
1.0-SNAPSHOT
jar
- Maven Integration Test :: MNG-2309
+ Maven Integration Test :: MNG-2309
Test that profiles are injected in declaration order, with the last profile being the most dominant.
diff --git a/its/core-it-suite/src/test/resources/mng-2339/a/pom.xml b/its/core-it-suite/src/test/resources/mng-2339/a/pom.xml
index 66a575f7de..14ede1ba73 100644
--- a/its/core-it-suite/src/test/resources/mng-2339/a/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-2339/a/pom.xml
@@ -4,9 +4,9 @@
bad-project-interpolation
1.0-SNAPSHOT
-
diff --git a/its/core-it-suite/src/test/resources/mng-2387/pom.xml b/its/core-it-suite/src/test/resources/mng-2387/pom.xml
index e69d1b42be..31f3cf0b35 100644
--- a/its/core-it-suite/src/test/resources/mng-2387/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-2387/pom.xml
@@ -26,7 +26,7 @@ under the License.
test-1
0.1
- Maven Integration Test :: MNG-2387
+ Maven Integration Test :: MNG-2387
Test that no proxy is used if none of the configured proxies is actually set as active.
diff --git a/its/core-it-suite/src/test/resources/mng-2432/pom.xml b/its/core-it-suite/src/test/resources/mng-2432/pom.xml
index 07f11a01ef..0512e1327e 100644
--- a/its/core-it-suite/src/test/resources/mng-2432/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-2432/pom.xml
@@ -26,7 +26,7 @@ under the License.
test
0.1
- Maven Integration Test :: MNG-2432
+ Maven Integration Test :: MNG-2432
Verify that when resolving plugin prefixes the plugins from the POM are searched before the plugin groups
from the settings.
diff --git a/its/core-it-suite/src/test/resources/mng-2539/pom.xml b/its/core-it-suite/src/test/resources/mng-2539/pom.xml
index a286c47bb4..ad04cbd7c5 100644
--- a/its/core-it-suite/src/test/resources/mng-2539/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-2539/pom.xml
@@ -6,7 +6,7 @@
mng-2539
1.0-SNAPSHOT
- Maven Integration Test :: MNG-2539
+ Maven Integration Test :: MNG-2539
Verify that dependencies specified in plugins are also retrieved from ordinary/non-plugin repositories.
diff --git a/its/core-it-suite/src/test/resources/mng-2562/custom/pom.xml b/its/core-it-suite/src/test/resources/mng-2562/custom/pom.xml
index e3f951cce4..51ce13ea27 100644
--- a/its/core-it-suite/src/test/resources/mng-2562/custom/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-2562/custom/pom.xml
@@ -26,7 +26,7 @@ under the License.
pom
1.0
- Maven Integration Test :: MNG-2562
+ Maven Integration Test :: MNG-2562
Verify that the format of the timestamp can be customized via maven.build.timestamp.format.
diff --git a/its/core-it-suite/src/test/resources/mng-2562/default/pom.xml b/its/core-it-suite/src/test/resources/mng-2562/default/pom.xml
index 5d67ce6e57..5d10947ce9 100644
--- a/its/core-it-suite/src/test/resources/mng-2562/default/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-2562/default/pom.xml
@@ -26,7 +26,7 @@ under the License.
pom
1.0
- Maven Integration Test :: MNG-2562
+ Maven Integration Test :: MNG-2562
Verify that the property build.timestamp is available for POM interpolation.
diff --git a/its/core-it-suite/src/test/resources/mng-2562/reactor/child-1/pom.xml b/its/core-it-suite/src/test/resources/mng-2562/reactor/child-1/pom.xml
index 5d5bce463b..022d907d50 100644
--- a/its/core-it-suite/src/test/resources/mng-2562/reactor/child-1/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-2562/reactor/child-1/pom.xml
@@ -32,7 +32,7 @@ under the License.
1.0
jar
- Maven Integration Test :: MNG-2562 :: Child 1
+ Maven Integration Test :: MNG-2562 :: Child 1
Verify that the timestamp is the same for all modules of a reactor build.
diff --git a/its/core-it-suite/src/test/resources/mng-2562/reactor/child-2/pom.xml b/its/core-it-suite/src/test/resources/mng-2562/reactor/child-2/pom.xml
index b582780d79..5479d2bb79 100644
--- a/its/core-it-suite/src/test/resources/mng-2562/reactor/child-2/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-2562/reactor/child-2/pom.xml
@@ -32,7 +32,7 @@ under the License.
1.0
jar
- Maven Integration Test :: MNG-2562 :: Child 2
+ Maven Integration Test :: MNG-2562 :: Child 2
Verify that the timestamp is the same for all modules of a reactor build.
diff --git a/its/core-it-suite/src/test/resources/mng-2562/reactor/child-3/pom.xml b/its/core-it-suite/src/test/resources/mng-2562/reactor/child-3/pom.xml
index bb20901695..7e22335523 100644
--- a/its/core-it-suite/src/test/resources/mng-2562/reactor/child-3/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-2562/reactor/child-3/pom.xml
@@ -32,7 +32,7 @@ under the License.
1.0
jar
- Maven Integration Test :: MNG-2562 :: Child 3
+ Maven Integration Test :: MNG-2562 :: Child 3
Verify that the timestamp is the same for all modules of a reactor build.
diff --git a/its/core-it-suite/src/test/resources/mng-2562/reactor/pom.xml b/its/core-it-suite/src/test/resources/mng-2562/reactor/pom.xml
index feee18f677..124c61a1e3 100644
--- a/its/core-it-suite/src/test/resources/mng-2562/reactor/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-2562/reactor/pom.xml
@@ -26,7 +26,7 @@ under the License.
pom
1.0
- Maven Integration Test :: MNG-2562
+ Maven Integration Test :: MNG-2562
Verify that the timestamp is the same for all modules of a reactor build.
diff --git a/its/core-it-suite/src/test/resources/mng-2591/no-profile/pom.xml b/its/core-it-suite/src/test/resources/mng-2591/no-profile/pom.xml
index 52fb468dc2..60180d5135 100644
--- a/its/core-it-suite/src/test/resources/mng-2591/no-profile/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-2591/no-profile/pom.xml
@@ -27,7 +27,7 @@ under the License.
1.0
pom
- Maven Integration Test :: MNG-2591
+ Maven Integration Test :: MNG-2591
Test aggregation of list configuration items for build plugins when using
'combine.children=append' attribute.
diff --git a/its/core-it-suite/src/test/resources/mng-2591/with-profile/pom.xml b/its/core-it-suite/src/test/resources/mng-2591/with-profile/pom.xml
index 48a8d393ba..72ab3f4525 100644
--- a/its/core-it-suite/src/test/resources/mng-2591/with-profile/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-2591/with-profile/pom.xml
@@ -27,7 +27,7 @@ under the License.
1.0
pom
- Maven Integration Test :: MNG-2591
+ Maven Integration Test :: MNG-2591
Test aggregation of list configuration items for build plugins when using
'combine.children=append' attribute.
diff --git a/its/core-it-suite/src/test/resources/mng-2605/pom.xml b/its/core-it-suite/src/test/resources/mng-2605/pom.xml
index 870bf71b26..a3439d49c3 100644
--- a/its/core-it-suite/src/test/resources/mng-2605/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-2605/pom.xml
@@ -26,7 +26,7 @@ under the License.
child
0.1
- Maven Integration Test :: MNG-2605
+ Maven Integration Test :: MNG-2605
Test that profiles are not accidentally activated when they have no activation element at all and
the user did not request their activation via id.
diff --git a/its/core-it-suite/src/test/resources/mng-2668/pom.xml b/its/core-it-suite/src/test/resources/mng-2668/pom.xml
index 87eb162672..ecf2306fb7 100644
--- a/its/core-it-suite/src/test/resources/mng-2668/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-2668/pom.xml
@@ -7,7 +7,7 @@
1.0-SNAPSHOT
pom
- Maven Integration Test :: MNG-2539
+ Maven Integration Test :: MNG-2539
Verify that dependencies of plugins are considered by the project sorter for a reactor build.
diff --git a/its/core-it-suite/src/test/resources/mng-2668/project/pom.xml b/its/core-it-suite/src/test/resources/mng-2668/project/pom.xml
index d3cf8a597a..d609a2b2bf 100644
--- a/its/core-it-suite/src/test/resources/mng-2668/project/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-2668/project/pom.xml
@@ -10,7 +10,7 @@
project
- Maven Integration Test :: MNG-2539 :: Plugin Dependency Consumer
+ Maven Integration Test :: MNG-2539 :: Plugin Dependency Consumer
Verify that dependencies of plugins are considered by the project sorter for a reactor build.
diff --git a/its/core-it-suite/src/test/resources/mng-2668/tools/pom.xml b/its/core-it-suite/src/test/resources/mng-2668/tools/pom.xml
index 17acec129f..d046da9219 100644
--- a/its/core-it-suite/src/test/resources/mng-2668/tools/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-2668/tools/pom.xml
@@ -10,7 +10,7 @@
tools
- Maven Integration Test :: MNG-2539 :: Plugin Dependency Provider
+ Maven Integration Test :: MNG-2539 :: Plugin Dependency Provider
Verify that dependencies of plugins are considered by the project sorter for a reactor build.
diff --git a/its/core-it-suite/src/test/resources/mng-2690/mojo-complookup/pom.xml b/its/core-it-suite/src/test/resources/mng-2690/mojo-complookup/pom.xml
index 2918f35f2a..c0f4580c61 100644
--- a/its/core-it-suite/src/test/resources/mng-2690/mojo-complookup/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-2690/mojo-complookup/pom.xml
@@ -5,7 +5,7 @@
mng-2690-mojo-complookup
1
pom
-
+
diff --git a/its/core-it-suite/src/test/resources/mng-2690/noclassdef-mojo/pom.xml b/its/core-it-suite/src/test/resources/mng-2690/noclassdef-mojo/pom.xml
index 0f0b0b002a..0a2697df4e 100644
--- a/its/core-it-suite/src/test/resources/mng-2690/noclassdef-mojo/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-2690/noclassdef-mojo/pom.xml
@@ -5,7 +5,7 @@
mng-2690-noclassdef-mojo
1
pom
-
+
diff --git a/its/core-it-suite/src/test/resources/mng-2690/noclassdef-param/pom.xml b/its/core-it-suite/src/test/resources/mng-2690/noclassdef-param/pom.xml
index 5ea22c3041..b7744d9bb7 100644
--- a/its/core-it-suite/src/test/resources/mng-2690/noclassdef-param/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-2690/noclassdef-param/pom.xml
@@ -5,7 +5,7 @@
mng-2690-noclassdef-param
1
pom
-
+
diff --git a/its/core-it-suite/src/test/resources/mng-2690/requirement-complookup/pom.xml b/its/core-it-suite/src/test/resources/mng-2690/requirement-complookup/pom.xml
index fa022b31ff..59a58d89aa 100644
--- a/its/core-it-suite/src/test/resources/mng-2690/requirement-complookup/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-2690/requirement-complookup/pom.xml
@@ -5,7 +5,7 @@
mng-2690-requirement-complookup
1
pom
-
+
diff --git a/its/core-it-suite/src/test/resources/mng-2693/pom.xml b/its/core-it-suite/src/test/resources/mng-2693/pom.xml
index d2355723ab..b13c51af51 100644
--- a/its/core-it-suite/src/test/resources/mng-2693/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-2693/pom.xml
@@ -26,11 +26,11 @@ under the License.
test
1.0
- Maven Integration Test :: MNG-2693
+ Maven Integration Test :: MNG-2693
Verify that a plugin class/resource can be loaded from the plugin realm, also during the site lifecycle.
-
+
diff --git a/its/core-it-suite/src/test/resources/mng-2695/pom.xml b/its/core-it-suite/src/test/resources/mng-2695/pom.xml
index e7bade0566..b1d2cd9ca9 100644
--- a/its/core-it-suite/src/test/resources/mng-2695/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-2695/pom.xml
@@ -26,7 +26,7 @@ under the License.
test1
1.0-SNAPSHOT
- Maven Integration Test :: MNG-2695
+ Maven Integration Test :: MNG-2695
Verify that snapshot plugins which are scheduled for an update don't fail the build when in offline mode.
diff --git a/its/core-it-suite/src/test/resources/mng-2720/child1/pom.xml b/its/core-it-suite/src/test/resources/mng-2720/child1/pom.xml
index 8d585fbd24..33bfc68b64 100644
--- a/its/core-it-suite/src/test/resources/mng-2720/child1/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-2720/child1/pom.xml
@@ -7,9 +7,9 @@
project-hierarchy
1
-
+
child1
-
+
MNG-2720 Project Hierarchy 1 Child 1
diff --git a/its/core-it-suite/src/test/resources/mng-2720/child2/pom.xml b/its/core-it-suite/src/test/resources/mng-2720/child2/pom.xml
index 22b68242b0..46363e4eac 100644
--- a/its/core-it-suite/src/test/resources/mng-2720/child2/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-2720/child2/pom.xml
@@ -7,9 +7,9 @@
project-hierarchy
1
-
+
child2
-
+
MNG-2720 Project Hierarchy 1 Child 2
diff --git a/its/core-it-suite/src/test/resources/mng-2720/child3/pom.xml b/its/core-it-suite/src/test/resources/mng-2720/child3/pom.xml
index 81fd344236..3eae416106 100644
--- a/its/core-it-suite/src/test/resources/mng-2720/child3/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-2720/child3/pom.xml
@@ -7,9 +7,9 @@
project-hierarchy
1
-
+
child3
-
+
MNG-2720 Project Hierarchy 1 Child 3
diff --git a/its/core-it-suite/src/test/resources/mng-2720/pom.xml b/its/core-it-suite/src/test/resources/mng-2720/pom.xml
index 87506c0a8b..17d133c874 100644
--- a/its/core-it-suite/src/test/resources/mng-2720/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-2720/pom.xml
@@ -8,13 +8,13 @@
pom
MNG-2720 Project Hierarchy
-
+
child1
child2
child3
-
+
diff --git a/its/core-it-suite/src/test/resources/mng-2741/pom.xml b/its/core-it-suite/src/test/resources/mng-2741/pom.xml
index 4f7fd5f548..4a7789ceaa 100644
--- a/its/core-it-suite/src/test/resources/mng-2741/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-2741/pom.xml
@@ -27,7 +27,7 @@ under the License.
jar
1
- Maven Integration Test :: MNG-2741
+ Maven Integration Test :: MNG-2741
Tests that plugin prefix/version metadata resolution errors tell the underlying transport issue.
diff --git a/its/core-it-suite/src/test/resources/mng-2744/pom.xml b/its/core-it-suite/src/test/resources/mng-2744/pom.xml
index 95288d596e..efa575636c 100644
--- a/its/core-it-suite/src/test/resources/mng-2744/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-2744/pom.xml
@@ -27,7 +27,7 @@ under the License.
jar
1
- Maven Integration Test :: MNG-2744
+ Maven Integration Test :: MNG-2744
Tests that hex digits of checksums are compared without regard to case.
diff --git a/its/core-it-suite/src/test/resources/mng-2749/pom.xml b/its/core-it-suite/src/test/resources/mng-2749/pom.xml
index bd0b915454..9a75d52756 100644
--- a/its/core-it-suite/src/test/resources/mng-2749/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-2749/pom.xml
@@ -26,7 +26,7 @@ under the License.
maven-it-mng2749
1.0
- Maven Integration Test :: MNG-2749
+ Maven Integration Test :: MNG-2749
Verify that plugins can load classes/resources from a build extension.
diff --git a/its/core-it-suite/src/test/resources/mng-2771/extension/pom.xml b/its/core-it-suite/src/test/resources/mng-2771/extension/pom.xml
index 9497d36ef6..dfa7b8adc1 100644
--- a/its/core-it-suite/src/test/resources/mng-2771/extension/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-2771/extension/pom.xml
@@ -1,6 +1,6 @@
4.0.0
- Maven Integration Test :: it0124
+ Maven Integration Test :: it0124
org.apache.maven.its.it0124
maven-it-it0124-extension
Project that provides an alternative ArtifactFactory implementation for testing.
diff --git a/its/core-it-suite/src/test/resources/mng-2771/extension/src/main/java/org/apache/maven/its/it0124/CustomArtifactFactory.java b/its/core-it-suite/src/test/resources/mng-2771/extension/src/main/java/org/apache/maven/its/it0124/CustomArtifactFactory.java
index 4f938638ba..222b6332e9 100644
--- a/its/core-it-suite/src/test/resources/mng-2771/extension/src/main/java/org/apache/maven/its/it0124/CustomArtifactFactory.java
+++ b/its/core-it-suite/src/test/resources/mng-2771/extension/src/main/java/org/apache/maven/its/it0124/CustomArtifactFactory.java
@@ -23,7 +23,7 @@ import org.apache.maven.artifact.factory.DefaultArtifactFactory;
/**
* Simple alternative artifact factory implementation for testing.
- *
+ *
* @author Mark Hobson
*/
public class CustomArtifactFactory
diff --git a/its/core-it-suite/src/test/resources/mng-2771/plugin/pom.xml b/its/core-it-suite/src/test/resources/mng-2771/plugin/pom.xml
index 9eafb2357a..cef06ce559 100644
--- a/its/core-it-suite/src/test/resources/mng-2771/plugin/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-2771/plugin/pom.xml
@@ -1,6 +1,6 @@
4.0.0
- Maven Integration Test :: it0124
+ Maven Integration Test :: it0124
org.apache.maven.its.it0124
maven-it-it0124-plugin
maven-plugin
diff --git a/its/core-it-suite/src/test/resources/mng-2771/plugin/src/main/java/org/apache/maven/its/it0124/LookupMojo.java b/its/core-it-suite/src/test/resources/mng-2771/plugin/src/main/java/org/apache/maven/its/it0124/LookupMojo.java
index 2c22f73c90..325283cc13 100644
--- a/its/core-it-suite/src/test/resources/mng-2771/plugin/src/main/java/org/apache/maven/its/it0124/LookupMojo.java
+++ b/its/core-it-suite/src/test/resources/mng-2771/plugin/src/main/java/org/apache/maven/its/it0124/LookupMojo.java
@@ -46,19 +46,19 @@ public class LookupMojo extends AbstractMojo
* @component
*/
private ArtifactFactory artifactFactory;
-
+
/**
* @parameter expression="${project.build.directory}"
*/
private String buildDirectory;
-
+
/*
* @see org.apache.maven.plugin.Mojo#execute()
*/
public void execute() throws MojoExecutionException, MojoFailureException
{
File file = new File( buildDirectory, "lookup.log" );
-
+
if ( !file.getParentFile().mkdirs() )
{
throw new MojoExecutionException( "Cannot create build directory" );
diff --git a/its/core-it-suite/src/test/resources/mng-2771/project/pom.xml b/its/core-it-suite/src/test/resources/mng-2771/project/pom.xml
index 657f7923b6..7e887262aa 100644
--- a/its/core-it-suite/src/test/resources/mng-2771/project/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-2771/project/pom.xml
@@ -1,6 +1,6 @@
4.0.0
- Maven Integration Test :: it0124
+ Maven Integration Test :: it0124
org.apache.maven.its.it0124
maven-it-it0124
Test that ensures the POM extensions can override default component implementations.
diff --git a/its/core-it-suite/src/test/resources/mng-2790/pom.xml b/its/core-it-suite/src/test/resources/mng-2790/pom.xml
index ecaabe1f35..3ed5e5a98c 100644
--- a/its/core-it-suite/src/test/resources/mng-2790/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-2790/pom.xml
@@ -27,11 +27,11 @@ under the License.
1.0-SNAPSHOT
- Maven Integration Test :: MNG-2790
+ Maven Integration Test :: MNG-2790
Verify that the field lastUpdated of existing local repo metadata is updated upon install of new a snapshot.
-
+
diff --git a/its/core-it-suite/src/test/resources/mng-2831/pom.xml b/its/core-it-suite/src/test/resources/mng-2831/pom.xml
index c68044d1b1..c0e577a0ea 100644
--- a/its/core-it-suite/src/test/resources/mng-2831/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-2831/pom.xml
@@ -28,7 +28,7 @@ under the License.
it-packaging
- Maven Integration Test :: MNG-2831
+ Maven Integration Test :: MNG-2831
Test the use of a custom lifecycle from a plugin that is defined as a build extension.
diff --git a/its/core-it-suite/src/test/resources/mng-2843/pom.xml b/its/core-it-suite/src/test/resources/mng-2843/pom.xml
index 01eb250728..c8ae1cbf53 100644
--- a/its/core-it-suite/src/test/resources/mng-2843/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-2843/pom.xml
@@ -26,7 +26,7 @@ under the License.
parent
1.0-SNAPSHOT
- Maven Integration Test :: MNG-2843
+ Maven Integration Test :: MNG-2843
Test that plugins can have the project properties injected via ${project.properties}.
@@ -45,11 +45,11 @@ under the License.
-
+
PASSED
-
+
diff --git a/its/core-it-suite/src/test/resources/mng-2848/pom.xml b/its/core-it-suite/src/test/resources/mng-2848/pom.xml
index 0e24bbca4f..46a927a3d6 100644
--- a/its/core-it-suite/src/test/resources/mng-2848/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-2848/pom.xml
@@ -26,11 +26,11 @@ under the License.
test
1.0-SNAPSHOT
- Maven Integration Test :: MNG-2848
+ Maven Integration Test :: MNG-2848
Test activation of a profile via environment variables.
-
+
test
diff --git a/its/core-it-suite/src/test/resources/mng-2865/central/pom.xml b/its/core-it-suite/src/test/resources/mng-2865/central/pom.xml
index 82f93b1a59..cc0a9a6f6a 100644
--- a/its/core-it-suite/src/test/resources/mng-2865/central/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-2865/central/pom.xml
@@ -26,7 +26,7 @@ under the License.
test-2
0.1
- Maven Integration Test :: MNG-2865
+ Maven Integration Test :: MNG-2865
Test that the mirror wildcard * matches any repo, in particular central.
diff --git a/its/core-it-suite/src/test/resources/mng-2865/external/pom.xml b/its/core-it-suite/src/test/resources/mng-2865/external/pom.xml
index 79ae4484f3..175653eee8 100644
--- a/its/core-it-suite/src/test/resources/mng-2865/external/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-2865/external/pom.xml
@@ -26,7 +26,7 @@ under the License.
test-1c
0.1
- Maven Integration Test :: MNG-2865 :: C
+ Maven Integration Test :: MNG-2865 :: C
Test that the mirror wildcard * matches any repo.
diff --git a/its/core-it-suite/src/test/resources/mng-2865/file/pom.xml b/its/core-it-suite/src/test/resources/mng-2865/file/pom.xml
index 6b69e0cbaa..4db02c19c3 100644
--- a/its/core-it-suite/src/test/resources/mng-2865/file/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-2865/file/pom.xml
@@ -26,7 +26,7 @@ under the License.
test-1a
0.1
- Maven Integration Test :: MNG-2865 :: A
+ Maven Integration Test :: MNG-2865 :: A
Test that the mirror wildcard * matches any repo.
diff --git a/its/core-it-suite/src/test/resources/mng-2865/localhost/pom.xml b/its/core-it-suite/src/test/resources/mng-2865/localhost/pom.xml
index bb66b89240..9da7043094 100644
--- a/its/core-it-suite/src/test/resources/mng-2865/localhost/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-2865/localhost/pom.xml
@@ -26,7 +26,7 @@ under the License.
test-1b
0.1
- Maven Integration Test :: MNG-2865 :: B
+ Maven Integration Test :: MNG-2865 :: B
Test that the mirror wildcard * matches any repo.
diff --git a/its/core-it-suite/src/test/resources/mng-2871/consumer/pom.xml b/its/core-it-suite/src/test/resources/mng-2871/consumer/pom.xml
index d3a3daab3f..9c8432681e 100644
--- a/its/core-it-suite/src/test/resources/mng-2871/consumer/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-2871/consumer/pom.xml
@@ -31,7 +31,7 @@ under the License.
consumer
jar
- Maven Integration Test :: MNG-2871 :: Dependency Consumer
+ Maven Integration Test :: MNG-2871 :: Dependency Consumer
diff --git a/its/core-it-suite/src/test/resources/mng-2871/ejbs/pom.xml b/its/core-it-suite/src/test/resources/mng-2871/ejbs/pom.xml
index c563c9fdf6..408eebb0f8 100644
--- a/its/core-it-suite/src/test/resources/mng-2871/ejbs/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-2871/ejbs/pom.xml
@@ -31,7 +31,7 @@ under the License.
ejbs
ejb
- Maven Integration Test :: MNG-2871 :: EJB Client JAR Provider
+ Maven Integration Test :: MNG-2871 :: EJB Client JAR Provider
diff --git a/its/core-it-suite/src/test/resources/mng-2871/pom.xml b/its/core-it-suite/src/test/resources/mng-2871/pom.xml
index 6d4a2ff482..4a0ca564d2 100644
--- a/its/core-it-suite/src/test/resources/mng-2871/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-2871/pom.xml
@@ -27,7 +27,7 @@ under the License.
1.0-SNAPSHOT
pom
- Maven Integration Test :: MNG-2871 :: Parent
+ Maven Integration Test :: MNG-2871 :: Parent
Verify that dependencies on not-yet-packaged sub artifacts in build phases prior to package can be satisfied
from a module's output directory, i.e. with the loose class files.
diff --git a/its/core-it-suite/src/test/resources/mng-2878/pom.xml b/its/core-it-suite/src/test/resources/mng-2878/pom.xml
index e46f8ae44e..1fee750871 100644
--- a/its/core-it-suite/src/test/resources/mng-2878/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-2878/pom.xml
@@ -26,11 +26,11 @@ under the License.
test1
1.0
- Maven Integration Test :: MNG-2878
+ Maven Integration Test :: MNG-2878
Verify that a plugin can load default-report.xml from the core.
-
+
diff --git a/its/core-it-suite/src/test/resources/mng-2883/dependency/pom.xml b/its/core-it-suite/src/test/resources/mng-2883/dependency/pom.xml
index cb967d3931..e69f2af523 100644
--- a/its/core-it-suite/src/test/resources/mng-2883/dependency/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-2883/dependency/pom.xml
@@ -5,7 +5,7 @@
dependency-user
jar
1.0-SNAPSHOT
-
+
org.apache.maven.its.mng2883
@@ -13,7 +13,7 @@
1.0-SNAPSHOT
-
+
diff --git a/its/core-it-suite/src/test/resources/mng-2883/dependency/repo/org.apache.maven.its.mng2883/poms/dep-1.0-SNAPSHOT.pom b/its/core-it-suite/src/test/resources/mng-2883/dependency/repo/org.apache.maven.its.mng2883/poms/dep-1.0-SNAPSHOT.pom
index 340a7bec67..e0a50fd9e2 100644
--- a/its/core-it-suite/src/test/resources/mng-2883/dependency/repo/org.apache.maven.its.mng2883/poms/dep-1.0-SNAPSHOT.pom
+++ b/its/core-it-suite/src/test/resources/mng-2883/dependency/repo/org.apache.maven.its.mng2883/poms/dep-1.0-SNAPSHOT.pom
@@ -5,7 +5,7 @@
dep
jar
1.0-SNAPSHOT
-
+
junit
diff --git a/its/core-it-suite/src/test/resources/mng-2883/parent/pom.xml b/its/core-it-suite/src/test/resources/mng-2883/parent/pom.xml
index f30ff4deba..dec9be6679 100644
--- a/its/core-it-suite/src/test/resources/mng-2883/parent/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-2883/parent/pom.xml
@@ -1,13 +1,13 @@
4.0.0
-
+
org.apache.maven.its.mng2883
1.0-SNAPSHOT
parent
-
+
snapshot-offline-parent-legacyRepo
diff --git a/its/core-it-suite/src/test/resources/mng-2883/parent/repo/org.apache.maven.its.mng2883/poms/parent-1.0-SNAPSHOT.pom b/its/core-it-suite/src/test/resources/mng-2883/parent/repo/org.apache.maven.its.mng2883/poms/parent-1.0-SNAPSHOT.pom
index 0d72387627..3ce2a2b1e9 100644
--- a/its/core-it-suite/src/test/resources/mng-2883/parent/repo/org.apache.maven.its.mng2883/poms/parent-1.0-SNAPSHOT.pom
+++ b/its/core-it-suite/src/test/resources/mng-2883/parent/repo/org.apache.maven.its.mng2883/poms/parent-1.0-SNAPSHOT.pom
@@ -1,11 +1,11 @@
4.0.0
-
+
org.apache.maven.its.mng2883
1.0-SNAPSHOT
parent
-
+
pom
diff --git a/its/core-it-suite/src/test/resources/mng-2883/plugin/repo/org.apache.maven.its.mng2883/poms/plugin-1.0-SNAPSHOT.pom b/its/core-it-suite/src/test/resources/mng-2883/plugin/repo/org.apache.maven.its.mng2883/poms/plugin-1.0-SNAPSHOT.pom
index 0376a4ab30..1741e18ebc 100644
--- a/its/core-it-suite/src/test/resources/mng-2883/plugin/repo/org.apache.maven.its.mng2883/poms/plugin-1.0-SNAPSHOT.pom
+++ b/its/core-it-suite/src/test/resources/mng-2883/plugin/repo/org.apache.maven.its.mng2883/poms/plugin-1.0-SNAPSHOT.pom
@@ -5,7 +5,7 @@
plugin
jar
1.0-SNAPSHOT
-
+
junit
diff --git a/its/core-it-suite/src/test/resources/mng-2892/pom.xml b/its/core-it-suite/src/test/resources/mng-2892/pom.xml
index 4b235a5d42..945529a43a 100644
--- a/its/core-it-suite/src/test/resources/mng-2892/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-2892/pom.xml
@@ -26,11 +26,11 @@ under the License.
test
1.0
- Maven Integration Test :: MNG-2892
+ Maven Integration Test :: MNG-2892
Verify that plugins can use their own version of plexus-utils and are not bound to the version bundled in the core.
-
+
diff --git a/its/core-it-suite/src/test/resources/mng-2921/consumer/pom.xml b/its/core-it-suite/src/test/resources/mng-2921/consumer/pom.xml
index 38dafd9c32..6c089ce3fb 100644
--- a/its/core-it-suite/src/test/resources/mng-2921/consumer/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-2921/consumer/pom.xml
@@ -31,7 +31,7 @@ under the License.
consumer
jar
- Maven Integration Test :: MNG-2921 :: Dependency Consumer
+ Maven Integration Test :: MNG-2921 :: Dependency Consumer
diff --git a/its/core-it-suite/src/test/resources/mng-3099/settings-template.xml b/its/core-it-suite/src/test/resources/mng-3099/settings-template.xml
index d0340a4805..b6abadb641 100644
--- a/its/core-it-suite/src/test/resources/mng-3099/settings-template.xml
+++ b/its/core-it-suite/src/test/resources/mng-3099/settings-template.xml
@@ -1,9 +1,9 @@
-
-
+
diff --git a/its/core-it-suite/src/test/resources/mng-3401/without-mgmt/pom.xml b/its/core-it-suite/src/test/resources/mng-3401/without-mgmt/pom.xml
index d066e756b8..57e1aad6a4 100644
--- a/its/core-it-suite/src/test/resources/mng-3401/without-mgmt/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-3401/without-mgmt/pom.xml
@@ -12,7 +12,7 @@
Test that the configuration of an execution block with the id "default-cli" applies to direct CLI
invocations of a goal as well.
-
+
diff --git a/its/core-it-suite/src/test/resources/mng-3461/test-1/pom.xml b/its/core-it-suite/src/test/resources/mng-3461/test-1/pom.xml
index 58136eeecb..dc741be236 100644
--- a/its/core-it-suite/src/test/resources/mng-3461/test-1/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-3461/test-1/pom.xml
@@ -26,7 +26,7 @@ under the License.
test-1
0.1
- Maven Integration Test :: MNG-3461
+ Maven Integration Test :: MNG-3461
Test that mirror definitions are properly evaluated. In particular, an exact match by id should always
win over wildcard matches.
diff --git a/its/core-it-suite/src/test/resources/mng-3461/test-2/pom.xml b/its/core-it-suite/src/test/resources/mng-3461/test-2/pom.xml
index 77ac509acb..4bb6c5aaa6 100644
--- a/its/core-it-suite/src/test/resources/mng-3461/test-2/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-3461/test-2/pom.xml
@@ -26,7 +26,7 @@ under the License.
test-3
0.1
- Maven Integration Test :: MNG-3461
+ Maven Integration Test :: MNG-3461
Test that mirror definitions are properly evaluated. In particular, the wildcard external:* should not
match file:// and localhost repos but only external repos.
diff --git a/its/core-it-suite/src/test/resources/mng-3461/test-3/pom.xml b/its/core-it-suite/src/test/resources/mng-3461/test-3/pom.xml
index 2403c307d4..d8ba0c64e5 100644
--- a/its/core-it-suite/src/test/resources/mng-3461/test-3/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-3461/test-3/pom.xml
@@ -26,7 +26,7 @@ under the License.
test-3
0.1
- Maven Integration Test :: MNG-3461
+ Maven Integration Test :: MNG-3461
Test that mirror definitions are properly evaluated. In particular, the wildcards within a single mirrorOf
spec should not be greedy.
diff --git a/its/core-it-suite/src/test/resources/mng-3475/pom.xml b/its/core-it-suite/src/test/resources/mng-3475/pom.xml
index 7c5a2b2096..5e6d2688f7 100644
--- a/its/core-it-suite/src/test/resources/mng-3475/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-3475/pom.xml
@@ -27,7 +27,7 @@ under the License.
1.0
pom
- Maven Integration Test :: MNG-3475
+ Maven Integration Test :: MNG-3475
Verify that project directories are basedir aligned when queried by plugin parameter expressions.
diff --git a/its/core-it-suite/src/test/resources/mng-3477/pom.xml b/its/core-it-suite/src/test/resources/mng-3477/pom.xml
index e3ee767702..37edc4cd4b 100644
--- a/its/core-it-suite/src/test/resources/mng-3477/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-3477/pom.xml
@@ -27,7 +27,7 @@ under the License.
jar
1
- Maven Integration Test :: MNG-3477
+ Maven Integration Test :: MNG-3477
Tests that dependency resolution errors tell the underlying transport issue.
diff --git a/its/core-it-suite/src/test/resources/mng-3482/pom.xml b/its/core-it-suite/src/test/resources/mng-3482/pom.xml
index 482c1ac19d..0c6fc55cd6 100644
--- a/its/core-it-suite/src/test/resources/mng-3482/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-3482/pom.xml
@@ -4,14 +4,14 @@
mng-3482
jar
2
-
+
Integration Test Project for MNG-3482
This project verifies that MNG-3482 is fixed. It is controlled by a JUnit test called org.apache.maven.it.MNG3482Test
-
+
https://issues.apache.org/jira/browse/MNG-3482
-
+
org.apache.maven.its.mng3482
diff --git a/its/core-it-suite/src/test/resources/mng-3482/repo/org/apache/maven/its/mng3482/dep/1/dep-1.pom b/its/core-it-suite/src/test/resources/mng-3482/repo/org/apache/maven/its/mng3482/dep/1/dep-1.pom
index 973bc02f3f..bad90fbe1d 100644
--- a/its/core-it-suite/src/test/resources/mng-3482/repo/org/apache/maven/its/mng3482/dep/1/dep-1.pom
+++ b/its/core-it-suite/src/test/resources/mng-3482/repo/org/apache/maven/its/mng3482/dep/1/dep-1.pom
@@ -3,7 +3,7 @@
org.apache.maven.its.mng3482
dep
1
-
+
org.apache.maven.its.mng3482
diff --git a/its/core-it-suite/src/test/resources/mng-3482/repo/org/apache/maven/its/mng3482/dep2/1/dep2-1.pom b/its/core-it-suite/src/test/resources/mng-3482/repo/org/apache/maven/its/mng3482/dep2/1/dep2-1.pom
index 091ed2ac5c..ef1b7121c9 100644
--- a/its/core-it-suite/src/test/resources/mng-3482/repo/org/apache/maven/its/mng3482/dep2/1/dep2-1.pom
+++ b/its/core-it-suite/src/test/resources/mng-3482/repo/org/apache/maven/its/mng3482/dep2/1/dep2-1.pom
@@ -3,5 +3,5 @@
org.apache.maven.its.mng3482
dep2
1
-
+
\ No newline at end of file
diff --git a/its/core-it-suite/src/test/resources/mng-3485/src/main/java/org/apache/maven/its/mng3485/App.java b/its/core-it-suite/src/test/resources/mng-3485/src/main/java/org/apache/maven/its/mng3485/App.java
index faac444283..7ae62ede72 100644
--- a/its/core-it-suite/src/test/resources/mng-3485/src/main/java/org/apache/maven/its/mng3485/App.java
+++ b/its/core-it-suite/src/test/resources/mng-3485/src/main/java/org/apache/maven/its/mng3485/App.java
@@ -4,7 +4,7 @@ package org.apache.maven.its.mng3485;
* Hello world!
*
*/
-public class App
+public class App
{
public static void main( String[] args )
{
diff --git a/its/core-it-suite/src/test/resources/mng-3485/src/test/java/org/apache/maven/its/mng3485/AppTest.java b/its/core-it-suite/src/test/resources/mng-3485/src/test/java/org/apache/maven/its/mng3485/AppTest.java
index 6416ae8c17..03e13b2539 100644
--- a/its/core-it-suite/src/test/resources/mng-3485/src/test/java/org/apache/maven/its/mng3485/AppTest.java
+++ b/its/core-it-suite/src/test/resources/mng-3485/src/test/java/org/apache/maven/its/mng3485/AppTest.java
@@ -7,7 +7,7 @@ import junit.framework.TestSuite;
/**
* Unit test for simple App.
*/
-public class AppTest
+public class AppTest
extends TestCase
{
/**
diff --git a/its/core-it-suite/src/test/resources/mng-3498/mng-3498-project/pom.xml b/its/core-it-suite/src/test/resources/mng-3498/mng-3498-project/pom.xml
index 4bd76aac9a..3f54243220 100644
--- a/its/core-it-suite/src/test/resources/mng-3498/mng-3498-project/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-3498/mng-3498-project/pom.xml
@@ -25,7 +25,7 @@ under the License.
mng-3498-project
jar
1
-
+
diff --git a/its/core-it-suite/src/test/resources/mng-3506/mng-3506.1/pom.xml b/its/core-it-suite/src/test/resources/mng-3506/mng-3506.1/pom.xml
index be51cf6304..eb739074ba 100644
--- a/its/core-it-suite/src/test/resources/mng-3506/mng-3506.1/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-3506/mng-3506.1/pom.xml
@@ -27,7 +27,7 @@ under the License.
1
mng-3506.1
-
+
coreit-1
diff --git a/its/core-it-suite/src/test/resources/mng-3506/mng-3506.1/src/main/java/org/apache/maven/its/mng3506/App.java b/its/core-it-suite/src/test/resources/mng-3506/mng-3506.1/src/main/java/org/apache/maven/its/mng3506/App.java
index 2e519cba97..027cdbd617 100644
--- a/its/core-it-suite/src/test/resources/mng-3506/mng-3506.1/src/main/java/org/apache/maven/its/mng3506/App.java
+++ b/its/core-it-suite/src/test/resources/mng-3506/mng-3506.1/src/main/java/org/apache/maven/its/mng3506/App.java
@@ -22,7 +22,7 @@ package org.apache.maven.its.mng3506;
* Hello world!
*
*/
-public class App
+public class App
{
public static void main( String[] args )
{
diff --git a/its/core-it-suite/src/test/resources/mng-3506/mng-3506.1/src/test/java/org/apache/maven/its/mng3506/AppTest.java b/its/core-it-suite/src/test/resources/mng-3506/mng-3506.1/src/test/java/org/apache/maven/its/mng3506/AppTest.java
index 07b7f5f8ea..d2f3c7f838 100644
--- a/its/core-it-suite/src/test/resources/mng-3506/mng-3506.1/src/test/java/org/apache/maven/its/mng3506/AppTest.java
+++ b/its/core-it-suite/src/test/resources/mng-3506/mng-3506.1/src/test/java/org/apache/maven/its/mng3506/AppTest.java
@@ -25,7 +25,7 @@ import junit.framework.TestSuite;
/**
* Unit test for simple App.
*/
-public class AppTest
+public class AppTest
extends TestCase
{
/**
diff --git a/its/core-it-suite/src/test/resources/mng-3506/mng-3506.2/pom.xml b/its/core-it-suite/src/test/resources/mng-3506/mng-3506.2/pom.xml
index a59d0cda67..ee7f4b6a0b 100644
--- a/its/core-it-suite/src/test/resources/mng-3506/mng-3506.2/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-3506/mng-3506.2/pom.xml
@@ -37,14 +37,14 @@ under the License.
test
-
+
org.apache.maven.its.plugins
maven-it-plugin-extension2
2.1-SNAPSHOT
-
+
true
diff --git a/its/core-it-suite/src/test/resources/mng-3506/mng-3506.2/src/main/java/org/apache/maven/its/mng3506/App.java b/its/core-it-suite/src/test/resources/mng-3506/mng-3506.2/src/main/java/org/apache/maven/its/mng3506/App.java
index 2e519cba97..027cdbd617 100644
--- a/its/core-it-suite/src/test/resources/mng-3506/mng-3506.2/src/main/java/org/apache/maven/its/mng3506/App.java
+++ b/its/core-it-suite/src/test/resources/mng-3506/mng-3506.2/src/main/java/org/apache/maven/its/mng3506/App.java
@@ -22,7 +22,7 @@ package org.apache.maven.its.mng3506;
* Hello world!
*
*/
-public class App
+public class App
{
public static void main( String[] args )
{
diff --git a/its/core-it-suite/src/test/resources/mng-3506/mng-3506.2/src/test/java/org/apache/maven/its/mng3506/AppTest.java b/its/core-it-suite/src/test/resources/mng-3506/mng-3506.2/src/test/java/org/apache/maven/its/mng3506/AppTest.java
index 07b7f5f8ea..d2f3c7f838 100644
--- a/its/core-it-suite/src/test/resources/mng-3506/mng-3506.2/src/test/java/org/apache/maven/its/mng3506/AppTest.java
+++ b/its/core-it-suite/src/test/resources/mng-3506/mng-3506.2/src/test/java/org/apache/maven/its/mng3506/AppTest.java
@@ -25,7 +25,7 @@ import junit.framework.TestSuite;
/**
* Unit test for simple App.
*/
-public class AppTest
+public class AppTest
extends TestCase
{
/**
diff --git a/its/core-it-suite/src/test/resources/mng-3506/pom.xml b/its/core-it-suite/src/test/resources/mng-3506/pom.xml
index 88d6bf9b96..2922c6c4b9 100644
--- a/its/core-it-suite/src/test/resources/mng-3506/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-3506/pom.xml
@@ -28,14 +28,14 @@ under the License.
mng-3506.1
mng-3506.2
-
+
org.apache.maven.its.plugins
maven-it-plugin-extension1
2.1-SNAPSHOT
-
+
true
diff --git a/its/core-it-suite/src/test/resources/mng-3530/build-path/project/pom.xml b/its/core-it-suite/src/test/resources/mng-3530/build-path/project/pom.xml
index e9d3e5d6fd..379d4b60b6 100644
--- a/its/core-it-suite/src/test/resources/mng-3530/build-path/project/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-3530/build-path/project/pom.xml
@@ -15,7 +15,7 @@
test
-
+
diff --git a/its/core-it-suite/src/test/resources/mng-3530/build-path/project/src/main/java/tests/App.java b/its/core-it-suite/src/test/resources/mng-3530/build-path/project/src/main/java/tests/App.java
index 53e46ad9e0..b25f5c2b2e 100644
--- a/its/core-it-suite/src/test/resources/mng-3530/build-path/project/src/main/java/tests/App.java
+++ b/its/core-it-suite/src/test/resources/mng-3530/build-path/project/src/main/java/tests/App.java
@@ -4,7 +4,7 @@ package tests;
* Hello world!
*
*/
-public class App
+public class App
{
public static void main( String[] args )
{
diff --git a/its/core-it-suite/src/test/resources/mng-3530/build-path/project/src/test/java/tests/AppTest.java b/its/core-it-suite/src/test/resources/mng-3530/build-path/project/src/test/java/tests/AppTest.java
index c378ad2cd5..7bf277a3c7 100644
--- a/its/core-it-suite/src/test/resources/mng-3530/build-path/project/src/test/java/tests/AppTest.java
+++ b/its/core-it-suite/src/test/resources/mng-3530/build-path/project/src/test/java/tests/AppTest.java
@@ -7,7 +7,7 @@ import junit.framework.TestSuite;
/**
* Unit test for simple App.
*/
-public class AppTest
+public class AppTest
extends TestCase
{
/**
diff --git a/its/core-it-suite/src/test/resources/mng-3530/pom-property/project/pom.xml b/its/core-it-suite/src/test/resources/mng-3530/pom-property/project/pom.xml
index 7bb29c4763..fe119aefaa 100644
--- a/its/core-it-suite/src/test/resources/mng-3530/pom-property/project/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-3530/pom-property/project/pom.xml
@@ -15,11 +15,11 @@
test
-
+
something
-
+
diff --git a/its/core-it-suite/src/test/resources/mng-3530/pom-property/project/src/main/java/tests/App.java b/its/core-it-suite/src/test/resources/mng-3530/pom-property/project/src/main/java/tests/App.java
index 53e46ad9e0..b25f5c2b2e 100644
--- a/its/core-it-suite/src/test/resources/mng-3530/pom-property/project/src/main/java/tests/App.java
+++ b/its/core-it-suite/src/test/resources/mng-3530/pom-property/project/src/main/java/tests/App.java
@@ -4,7 +4,7 @@ package tests;
* Hello world!
*
*/
-public class App
+public class App
{
public static void main( String[] args )
{
diff --git a/its/core-it-suite/src/test/resources/mng-3530/pom-property/project/src/test/java/tests/AppTest.java b/its/core-it-suite/src/test/resources/mng-3530/pom-property/project/src/test/java/tests/AppTest.java
index c378ad2cd5..7bf277a3c7 100644
--- a/its/core-it-suite/src/test/resources/mng-3530/pom-property/project/src/test/java/tests/AppTest.java
+++ b/its/core-it-suite/src/test/resources/mng-3530/pom-property/project/src/test/java/tests/AppTest.java
@@ -7,7 +7,7 @@ import junit.framework.TestSuite;
/**
* Unit test for simple App.
*/
-public class AppTest
+public class AppTest
extends TestCase
{
/**
diff --git a/its/core-it-suite/src/test/resources/mng-3530/resource-object/project/pom.xml b/its/core-it-suite/src/test/resources/mng-3530/resource-object/project/pom.xml
index 29da1377dd..ac3620db27 100644
--- a/its/core-it-suite/src/test/resources/mng-3530/resource-object/project/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-3530/resource-object/project/pom.xml
@@ -15,11 +15,11 @@
test
-
+
something
-
+
diff --git a/its/core-it-suite/src/test/resources/mng-3530/resource-object/project/src/main/java/tests/App.java b/its/core-it-suite/src/test/resources/mng-3530/resource-object/project/src/main/java/tests/App.java
index 53e46ad9e0..b25f5c2b2e 100644
--- a/its/core-it-suite/src/test/resources/mng-3530/resource-object/project/src/main/java/tests/App.java
+++ b/its/core-it-suite/src/test/resources/mng-3530/resource-object/project/src/main/java/tests/App.java
@@ -4,7 +4,7 @@ package tests;
* Hello world!
*
*/
-public class App
+public class App
{
public static void main( String[] args )
{
diff --git a/its/core-it-suite/src/test/resources/mng-3530/resource-object/project/src/test/java/tests/AppTest.java b/its/core-it-suite/src/test/resources/mng-3530/resource-object/project/src/test/java/tests/AppTest.java
index c378ad2cd5..7bf277a3c7 100644
--- a/its/core-it-suite/src/test/resources/mng-3530/resource-object/project/src/test/java/tests/AppTest.java
+++ b/its/core-it-suite/src/test/resources/mng-3530/resource-object/project/src/test/java/tests/AppTest.java
@@ -7,7 +7,7 @@ import junit.framework.TestSuite;
/**
* Unit test for simple App.
*/
-public class AppTest
+public class AppTest
extends TestCase
{
/**
diff --git a/its/core-it-suite/src/test/resources/mng-3536/plugin/src/main/java/plugin/Mojo3563.java b/its/core-it-suite/src/test/resources/mng-3536/plugin/src/main/java/plugin/Mojo3563.java
index ef3b37f139..4b1ffcedea 100644
--- a/its/core-it-suite/src/test/resources/mng-3536/plugin/src/main/java/plugin/Mojo3563.java
+++ b/its/core-it-suite/src/test/resources/mng-3536/plugin/src/main/java/plugin/Mojo3563.java
@@ -45,18 +45,18 @@ public class Mojo3563
throw new MojoExecutionException("Test file does not exist: File = " + testFile.getAbsolutePath() + "Property = " + property);
}
getLog().info("Property = " + property);
-
+
File f = new File( project.getBuild().getOutputDirectory(), "foo.txt" );
getLog().info( "Creating test file using project.getBuild().getDirectory(): " + f );
-
+
String testValue = "" + System.currentTimeMillis();
-
+
FileWriter w = null;
try
{
f.getParentFile().mkdirs();
w = new FileWriter( f );
-
+
w.write( testValue );
}
catch ( IOException e )
@@ -67,7 +67,7 @@ public class Mojo3563
{
IOUtil.close( w );
}
-
+
getLog().info( "Attempting to read test file using path from plugin parameter: " + foo );
BufferedReader r = null;
try
diff --git a/its/core-it-suite/src/test/resources/mng-3575/pom.xml b/its/core-it-suite/src/test/resources/mng-3575/pom.xml
index 81bb82d7d9..6241a566f2 100644
--- a/its/core-it-suite/src/test/resources/mng-3575/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-3575/pom.xml
@@ -26,7 +26,7 @@ under the License.
test
1
- Maven Integration Test :: MNG-3575
+ Maven Integration Test :: MNG-3575
Verify that numeric plugin parameters can be configured using hexadecimal/octal notation.
diff --git a/its/core-it-suite/src/test/resources/mng-3586/test-1/pom.xml b/its/core-it-suite/src/test/resources/mng-3586/test-1/pom.xml
index 42d15befde..7daaa68a20 100644
--- a/its/core-it-suite/src/test/resources/mng-3586/test-1/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-3586/test-1/pom.xml
@@ -26,7 +26,7 @@ under the License.
test1
1.0
- Maven Integration Test :: MNG-3586
+ Maven Integration Test :: MNG-3586
Test that plugin dependencies with scope system are part of the plugin class realm.
diff --git a/its/core-it-suite/src/test/resources/mng-3586/test-2/pom.xml b/its/core-it-suite/src/test/resources/mng-3586/test-2/pom.xml
index 8c4303549c..89c4af6e9e 100644
--- a/its/core-it-suite/src/test/resources/mng-3586/test-2/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-3586/test-2/pom.xml
@@ -26,7 +26,7 @@ under the License.
test2
1.0
- Maven Integration Test :: MNG-3586
+ Maven Integration Test :: MNG-3586
Test that plugin dependencies with scope system are part of the plugin class realm.
diff --git a/its/core-it-suite/src/test/resources/mng-3607/pom.xml b/its/core-it-suite/src/test/resources/mng-3607/pom.xml
index 3b4011477c..2018a3bbf8 100644
--- a/its/core-it-suite/src/test/resources/mng-3607/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-3607/pom.xml
@@ -26,7 +26,7 @@ under the License.
test
1.0
- Maven Integration Test :: MNG-3607
+ Maven Integration Test :: MNG-3607
Test that class loaders created by Maven employ valid URLs, e.g. properly encode characters like spaces.
diff --git a/its/core-it-suite/src/test/resources/mng-3641/child1/pom.xml b/its/core-it-suite/src/test/resources/mng-3641/child1/pom.xml
index 06c8a24c1c..9bdc10aafe 100644
--- a/its/core-it-suite/src/test/resources/mng-3641/child1/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-3641/child1/pom.xml
@@ -36,5 +36,5 @@ under the License.
mng-3641-it-provided-profile-child
-
+
diff --git a/its/core-it-suite/src/test/resources/mng-3641/pom.xml b/its/core-it-suite/src/test/resources/mng-3641/pom.xml
index 9c84c2a480..b98c7ec89f 100644
--- a/its/core-it-suite/src/test/resources/mng-3641/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-3641/pom.xml
@@ -33,7 +33,7 @@ under the License.
mng-3641-it-provided-profile
-
+
child1
diff --git a/its/core-it-suite/src/test/resources/mng-3652/test-plugin/src/main/java/org/apache/maven/its/mng3652/MyMojo.java b/its/core-it-suite/src/test/resources/mng-3652/test-plugin/src/main/java/org/apache/maven/its/mng3652/MyMojo.java
index 684ff72374..6b649504f7 100644
--- a/its/core-it-suite/src/test/resources/mng-3652/test-plugin/src/main/java/org/apache/maven/its/mng3652/MyMojo.java
+++ b/its/core-it-suite/src/test/resources/mng-3652/test-plugin/src/main/java/org/apache/maven/its/mng3652/MyMojo.java
@@ -29,64 +29,64 @@ import org.codehaus.plexus.util.IOUtil;
* a file in the output directory, for comparison in the unit tests assertions.
*
* @goal touch
- *
+ *
* @phase validate
*/
public class MyMojo
extends AbstractMojo
{
-
+
private static final String LS = System.getProperty( "line.separator" );
-
+
/**
* @parameter default-value="${project.build.directory}/touch.txt"
*/
private File touchFile;
-
+
/**
* @component
*/
private ArtifactResolver resolver;
-
+
/**
* @component
*/
private ArtifactFactory artifactFactory;
-
+
/**
* @component
*/
private ArtifactRepositoryFactory repositoryFactory;
-
+
/**
* @component
*/
private ArtifactRepositoryLayout layout;
-
+
/**
* @component
*/
private RuntimeInformation runtimeInformation;
-
+
/**
* @parameter expression="${testProtocol}" default-value="http"
* @required
*/
private String testProtocol;
-
+
/**
* @parameter expression="${testPort}"
* @required
*/
private String testPort;
-
+
/**
* @parameter default-value="${project.build.directory}/local-repo"
* @required
* @readonly
*/
private File localRepoDir;
-
+
public void execute()
throws MojoExecutionException
{
@@ -98,7 +98,7 @@ public class MyMojo
ArtifactRepository remote =
repositoryFactory.createArtifactRepository( "test", testProtocol + "://localhost:" + testPort, layout,
policy, policy );
-
+
Artifact artifact = artifactFactory.createArtifact( "bad.group", "missing-artifact", "1", null, "jar" );
try
@@ -108,7 +108,7 @@ public class MyMojo
ArtifactRepository local =
repositoryFactory.createArtifactRepository( "local", localRepoDir.toURL().toExternalForm(), layout,
null, null );
-
+
getLog().info( "Retrieving " + artifact + " from " + remote + " to " + local );
resolver.resolveAlways( artifact, Collections.singletonList( remote ), local );
@@ -132,7 +132,7 @@ public class MyMojo
{
throw new MojoExecutionException( e.getMessage(), e );
}
-
+
String artifactVersion;
InputStream resourceAsStream = null;
try
@@ -159,13 +159,13 @@ public class MyMojo
{
IOUtil.close( resourceAsStream );
}
-
+
FileWriter w = null;
try
{
touchFile.getParentFile().mkdirs();
w = new FileWriter( touchFile );
-
+
w.write( runtimeInformation.getApplicationVersion().toString() );
w.write( LS );
w.write( System.getProperty( "java.version" ) );
diff --git a/its/core-it-suite/src/test/resources/mng-3652/test-project/settings-no-config.xml b/its/core-it-suite/src/test/resources/mng-3652/test-project/settings-no-config.xml
index ef29ddc0e9..18b0e4050c 100644
--- a/its/core-it-suite/src/test/resources/mng-3652/test-project/settings-no-config.xml
+++ b/its/core-it-suite/src/test/resources/mng-3652/test-project/settings-no-config.xml
@@ -8,4 +8,4 @@
-
+
diff --git a/its/core-it-suite/src/test/resources/mng-3652/test-project/settings.xml b/its/core-it-suite/src/test/resources/mng-3652/test-project/settings.xml
index bb720a4b89..fe28b647b0 100644
--- a/its/core-it-suite/src/test/resources/mng-3652/test-project/settings.xml
+++ b/its/core-it-suite/src/test/resources/mng-3652/test-project/settings.xml
@@ -17,4 +17,4 @@
-
+
diff --git a/its/core-it-suite/src/test/resources/mng-3671/pom.xml b/its/core-it-suite/src/test/resources/mng-3671/pom.xml
index df948ca4dc..b9dafc4496 100644
--- a/its/core-it-suite/src/test/resources/mng-3671/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-3671/pom.xml
@@ -14,7 +14,7 @@
test
-
+
diff --git a/its/core-it-suite/src/test/resources/mng-3671/src/main/java/testing/App.java b/its/core-it-suite/src/test/resources/mng-3671/src/main/java/testing/App.java
index 217a19b5d0..65ade62846 100644
--- a/its/core-it-suite/src/test/resources/mng-3671/src/main/java/testing/App.java
+++ b/its/core-it-suite/src/test/resources/mng-3671/src/main/java/testing/App.java
@@ -4,7 +4,7 @@ package testing;
* Hello world!
*
*/
-public class App
+public class App
{
public static void main( String[] args )
{
diff --git a/its/core-it-suite/src/test/resources/mng-3671/src/test/java/testing/AppTest.java b/its/core-it-suite/src/test/resources/mng-3671/src/test/java/testing/AppTest.java
index 3a8780ff89..d9c8ff0f94 100644
--- a/its/core-it-suite/src/test/resources/mng-3671/src/test/java/testing/AppTest.java
+++ b/its/core-it-suite/src/test/resources/mng-3671/src/test/java/testing/AppTest.java
@@ -7,7 +7,7 @@ import junit.framework.TestSuite;
/**
* Unit test for simple App.
*/
-public class AppTest
+public class AppTest
extends TestCase
{
/**
diff --git a/its/core-it-suite/src/test/resources/mng-3680/pom.xml b/its/core-it-suite/src/test/resources/mng-3680/pom.xml
index 2387558747..49d876420c 100644
--- a/its/core-it-suite/src/test/resources/mng-3680/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-3680/pom.xml
@@ -7,7 +7,7 @@
jar
1
- Maven Integration Test :: MNG-3680
+ Maven Integration Test :: MNG-3680
Verify that dependencies with invalid POMs can still be used without failing the build.
@@ -20,7 +20,7 @@
0.1
-
+
diff --git a/its/core-it-suite/src/test/resources/mng-3684/maven-mng3684-plugin/src/main/java/plugin/MyMojo.java b/its/core-it-suite/src/test/resources/mng-3684/maven-mng3684-plugin/src/main/java/plugin/MyMojo.java
index 27a11cbca1..5a5977a684 100644
--- a/its/core-it-suite/src/test/resources/mng-3684/maven-mng3684-plugin/src/main/java/plugin/MyMojo.java
+++ b/its/core-it-suite/src/test/resources/mng-3684/maven-mng3684-plugin/src/main/java/plugin/MyMojo.java
@@ -55,16 +55,16 @@ public class MyMojo
Map failedComparisons = new HashMap();
check( "project.build.directory", projectBuild.getDirectory(), build.getDirectory(), failedComparisons );
-
+
check( "project.build.outputDirectory", projectBuild.getOutputDirectory(), build.getOutputDirectory(),
failedComparisons );
-
+
check( "project.build.sourceDirectory", projectBuild.getSourceDirectory(), build.getSourceDirectory(),
failedComparisons );
-
+
check( "project.build.testSourceDirectory", projectBuild.getTestSourceDirectory(),
build.getTestSourceDirectory(), failedComparisons );
-
+
check( "project.build.scriptSourceDirectory", projectBuild.getScriptSourceDirectory(),
build.getScriptSourceDirectory(), failedComparisons );
@@ -80,7 +80,7 @@ public class MyMojo
check( "project.build.resources[" + i + "].directory", projectRes.getDirectory(),
buildRes.getDirectory(), failedComparisons );
-
+
check( "project.build.resources[" + i + "].targetPath", projectRes.getTargetPath(),
buildRes.getTargetPath(), failedComparisons );
}
@@ -103,7 +103,7 @@ public class MyMojo
buffer.append( "\n\tShould be: \'" ).append( value[0] );
buffer.append( "\'\n\t Was: \'" ).append( value[1] ).append( "\'\n" );
}
-
+
throw new MojoExecutionException( buffer.toString() );
}
}
diff --git a/its/core-it-suite/src/test/resources/mng-3684/maven-mng3684-plugin/src/main/java/plugin/MyReport.java b/its/core-it-suite/src/test/resources/mng-3684/maven-mng3684-plugin/src/main/java/plugin/MyReport.java
index 0fc758894a..ea6ccf121d 100644
--- a/its/core-it-suite/src/test/resources/mng-3684/maven-mng3684-plugin/src/main/java/plugin/MyReport.java
+++ b/its/core-it-suite/src/test/resources/mng-3684/maven-mng3684-plugin/src/main/java/plugin/MyReport.java
@@ -57,16 +57,16 @@ public class MyReport
Map failedComparisons = new HashMap();
check( "project.build.directory", projectBuild.getDirectory(), build.getDirectory(), failedComparisons );
-
+
check( "project.build.outputDirectory", projectBuild.getOutputDirectory(), build.getOutputDirectory(),
failedComparisons );
-
+
check( "project.build.sourceDirectory", projectBuild.getSourceDirectory(), build.getSourceDirectory(),
failedComparisons );
-
+
check( "project.build.testSourceDirectory", projectBuild.getTestSourceDirectory(),
build.getTestSourceDirectory(), failedComparisons );
-
+
check( "project.build.scriptSourceDirectory", projectBuild.getScriptSourceDirectory(),
build.getScriptSourceDirectory(), failedComparisons );
@@ -82,7 +82,7 @@ public class MyReport
check( "project.build.resources[" + i + "].directory", projectRes.getDirectory(),
buildRes.getDirectory(), failedComparisons );
-
+
check( "project.build.resources[" + i + "].targetPath", projectRes.getTargetPath(),
buildRes.getTargetPath(), failedComparisons );
}
@@ -105,7 +105,7 @@ public class MyReport
buffer.append( "\n\tShould be: \'" ).append( value[0] );
buffer.append( "\'\n\t Was: \'" ).append( value[1] ).append( "\'\n" );
}
-
+
throw new MavenReportException( buffer.toString() );
}
}
diff --git a/its/core-it-suite/src/test/resources/mng-3684/project/pom.xml b/its/core-it-suite/src/test/resources/mng-3684/project/pom.xml
index d62c49b367..c836081dc0 100644
--- a/its/core-it-suite/src/test/resources/mng-3684/project/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-3684/project/pom.xml
@@ -5,7 +5,7 @@
mng3684-project
jar
1
-
+
@@ -32,7 +32,7 @@
-
+
true
diff --git a/its/core-it-suite/src/test/resources/mng-3693/maven-mng3693-plugin/src/main/java/plugin/MyMojo.java b/its/core-it-suite/src/test/resources/mng-3693/maven-mng3693-plugin/src/main/java/plugin/MyMojo.java
index eb2f6e9a6f..4ddca61ec7 100644
--- a/its/core-it-suite/src/test/resources/mng-3693/maven-mng3693-plugin/src/main/java/plugin/MyMojo.java
+++ b/its/core-it-suite/src/test/resources/mng-3693/maven-mng3693-plugin/src/main/java/plugin/MyMojo.java
@@ -41,10 +41,10 @@ public class MyMojo
throws MojoExecutionException
{
File pomFile = project.getFile();
-
+
File movedPomFile = new File( project.getBuild().getDirectory(), "pom.xml" );
movedPomFile.getParentFile().mkdirs();
-
+
try
{
FileUtils.copyFile( pomFile, movedPomFile );
@@ -53,7 +53,7 @@ public class MyMojo
{
throw new MojoExecutionException( "Failed to copy pom file: " + pomFile + " to: " + movedPomFile, e );
}
-
+
project.setFile( movedPomFile );
}
}
diff --git a/its/core-it-suite/src/test/resources/mng-3693/projects/app/src/main/java/tests/app/App.java b/its/core-it-suite/src/test/resources/mng-3693/projects/app/src/main/java/tests/app/App.java
index 6c2b4490bb..292f49b01e 100644
--- a/its/core-it-suite/src/test/resources/mng-3693/projects/app/src/main/java/tests/app/App.java
+++ b/its/core-it-suite/src/test/resources/mng-3693/projects/app/src/main/java/tests/app/App.java
@@ -6,7 +6,7 @@ import tests.dep.Dep;
* Hello world!
*
*/
-public class App
+public class App
{
public static void main( String[] args )
{
diff --git a/its/core-it-suite/src/test/resources/mng-3693/projects/dep/pom.xml b/its/core-it-suite/src/test/resources/mng-3693/projects/dep/pom.xml
index 311efa9e29..c9fc72f5a7 100644
--- a/its/core-it-suite/src/test/resources/mng-3693/projects/dep/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-3693/projects/dep/pom.xml
@@ -15,7 +15,7 @@
org.apache.maven.its.mng3693
mavenit-mng3693-plugin
1
-
+
move-pom
diff --git a/its/core-it-suite/src/test/resources/mng-3693/projects/dep/src/main/java/tests/dep/Dep.java b/its/core-it-suite/src/test/resources/mng-3693/projects/dep/src/main/java/tests/dep/Dep.java
index 7ccec18f08..94baa54685 100644
--- a/its/core-it-suite/src/test/resources/mng-3693/projects/dep/src/main/java/tests/dep/Dep.java
+++ b/its/core-it-suite/src/test/resources/mng-3693/projects/dep/src/main/java/tests/dep/Dep.java
@@ -4,7 +4,7 @@ package tests.dep;
* Hello world!
*
*/
-public class Dep
+public class Dep
{
public static void main( String[] args )
{
diff --git a/its/core-it-suite/src/test/resources/mng-3694/maven-mng3694-plugin/src/main/java/plugin/MyMojo.java b/its/core-it-suite/src/test/resources/mng-3694/maven-mng3694-plugin/src/main/java/plugin/MyMojo.java
index 3c5c02db9c..250f37caa3 100644
--- a/its/core-it-suite/src/test/resources/mng-3694/maven-mng3694-plugin/src/main/java/plugin/MyMojo.java
+++ b/its/core-it-suite/src/test/resources/mng-3694/maven-mng3694-plugin/src/main/java/plugin/MyMojo.java
@@ -55,15 +55,15 @@ public class MyMojo
for ( Iterator it = reactorProjects.iterator(); it.hasNext(); )
{
MavenProject project = (MavenProject) it.next();
-
+
String basedir = project.getBasedir().getAbsolutePath();
List compileSourceRoots = project.getCompileSourceRoots();
-
+
System.out.println( " Compile-source roots for project: " + project + " are: " + project.getCompileSourceRoots() );
for ( Iterator srcIt = compileSourceRoots.iterator(); srcIt.hasNext(); )
{
String srcRoot = (String) srcIt.next();
-
+
if ( !srcRoot.startsWith( basedir ) )
{
throw new MojoExecutionException( "Source root: " + srcRoot + " doesn't begin with project basedir: " + basedir );
diff --git a/its/core-it-suite/src/test/resources/mng-3694/projects/not-used/src/main/java/tests/App.java b/its/core-it-suite/src/test/resources/mng-3694/projects/not-used/src/main/java/tests/App.java
index 53e46ad9e0..b25f5c2b2e 100644
--- a/its/core-it-suite/src/test/resources/mng-3694/projects/not-used/src/main/java/tests/App.java
+++ b/its/core-it-suite/src/test/resources/mng-3694/projects/not-used/src/main/java/tests/App.java
@@ -4,7 +4,7 @@ package tests;
* Hello world!
*
*/
-public class App
+public class App
{
public static void main( String[] args )
{
diff --git a/its/core-it-suite/src/test/resources/mng-3694/projects/not-used/src/test/java/tests/AppTest.java b/its/core-it-suite/src/test/resources/mng-3694/projects/not-used/src/test/java/tests/AppTest.java
index c378ad2cd5..7bf277a3c7 100644
--- a/its/core-it-suite/src/test/resources/mng-3694/projects/not-used/src/test/java/tests/AppTest.java
+++ b/its/core-it-suite/src/test/resources/mng-3694/projects/not-used/src/test/java/tests/AppTest.java
@@ -7,7 +7,7 @@ import junit.framework.TestSuite;
/**
* Unit test for simple App.
*/
-public class AppTest
+public class AppTest
extends TestCase
{
/**
diff --git a/its/core-it-suite/src/test/resources/mng-3694/projects/project/pom.xml b/its/core-it-suite/src/test/resources/mng-3694/projects/project/pom.xml
index ae306c6144..3966468d71 100644
--- a/its/core-it-suite/src/test/resources/mng-3694/projects/project/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-3694/projects/project/pom.xml
@@ -14,7 +14,7 @@
test
-
+
diff --git a/its/core-it-suite/src/test/resources/mng-3694/projects/project/src/main/java/tests/App.java b/its/core-it-suite/src/test/resources/mng-3694/projects/project/src/main/java/tests/App.java
index 53e46ad9e0..b25f5c2b2e 100644
--- a/its/core-it-suite/src/test/resources/mng-3694/projects/project/src/main/java/tests/App.java
+++ b/its/core-it-suite/src/test/resources/mng-3694/projects/project/src/main/java/tests/App.java
@@ -4,7 +4,7 @@ package tests;
* Hello world!
*
*/
-public class App
+public class App
{
public static void main( String[] args )
{
diff --git a/its/core-it-suite/src/test/resources/mng-3694/projects/project/src/test/java/tests/AppTest.java b/its/core-it-suite/src/test/resources/mng-3694/projects/project/src/test/java/tests/AppTest.java
index c378ad2cd5..7bf277a3c7 100644
--- a/its/core-it-suite/src/test/resources/mng-3694/projects/project/src/test/java/tests/AppTest.java
+++ b/its/core-it-suite/src/test/resources/mng-3694/projects/project/src/test/java/tests/AppTest.java
@@ -7,7 +7,7 @@ import junit.framework.TestSuite;
/**
* Unit test for simple App.
*/
-public class AppTest
+public class AppTest
extends TestCase
{
/**
diff --git a/its/core-it-suite/src/test/resources/mng-3701/pom.xml b/its/core-it-suite/src/test/resources/mng-3701/pom.xml
index a8a5ea0a27..d8dad0f695 100644
--- a/its/core-it-suite/src/test/resources/mng-3701/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-3701/pom.xml
@@ -27,7 +27,7 @@ under the License.
1.0-SNAPSHOT
pom
- Maven Integration Test :: MNG-3701
+ Maven Integration Test :: MNG-3701
Verify that profiles without explicit id get a default id and in particular don't cause NPEs when
they are active by default.
diff --git a/its/core-it-suite/src/test/resources/mng-3703/maven-mng3703-plugin/src/main/java/jar/AbstractCheckMojo.java b/its/core-it-suite/src/test/resources/mng-3703/maven-mng3703-plugin/src/main/java/jar/AbstractCheckMojo.java
index 8937ea6b10..e2b9a86aed 100644
--- a/its/core-it-suite/src/test/resources/mng-3703/maven-mng3703-plugin/src/main/java/jar/AbstractCheckMojo.java
+++ b/its/core-it-suite/src/test/resources/mng-3703/maven-mng3703-plugin/src/main/java/jar/AbstractCheckMojo.java
@@ -28,16 +28,16 @@ import org.apache.maven.project.MavenProject;
public abstract class AbstractCheckMojo
extends AbstractMojo
{
-
+
protected static boolean forkHasRun = false;
-
+
/**
* @parameter default-value="${project}"
* @required
* @readonly
*/
private MavenProject project;
-
+
/**
* @parameter default-value="${executedProject}"
* @required
@@ -52,23 +52,23 @@ public abstract class AbstractCheckMojo
{
throw new MojoExecutionException( "Basedir is null on the main project instance." );
}
-
+
if ( getTestProject().getBasedir() == null )
{
throw new MojoExecutionException( "Basedir is null on the " + getTestProjectLabel() + " instance (during mojo execution)." );
}
-
+
String executionBasedir = getTestProject().getBasedir().getAbsolutePath();
-
+
Map failedPaths = new LinkedHashMap();
-
+
checkListOfPaths( getTestProject().getCompileSourceRoots(), executionBasedir, "compileSourceRoots", failedPaths );
checkListOfPaths( getTestProject().getTestCompileSourceRoots(), executionBasedir, "testCompileSourceRoots", failedPaths );
// MNG-3741: Don't worry about relative paths in scriptSourceRoots.
// checkListOfPaths( getTestProject().getScriptSourceRoots(), executionBasedir, "scriptSourceRoots", failedPaths );
-
-
+
+
if ( !failedPaths.isEmpty() )
{
StringBuffer buffer = new StringBuffer();
@@ -76,28 +76,28 @@ public abstract class AbstractCheckMojo
for ( Iterator it = failedPaths.entrySet().iterator(); it.hasNext(); )
{
Map.Entry entry = (Map.Entry) it.next();
-
+
buffer.append( "\n- " ).append( entry.getKey() ).append( ": '" ).append( entry.getValue() ).append( "'" );
}
-
+
throw new MojoExecutionException( buffer.toString() );
}
-
+
forkHasRun = true;
}
-
+
protected MavenProject getMainProject()
{
return project;
}
-
+
protected MavenProject getExecutionProject()
{
return executionProject;
}
-
+
protected abstract MavenProject getTestProject();
-
+
protected abstract String getTestProjectLabel();
private void checkListOfPaths( List paths, String base, String label, Map failedPaths )
diff --git a/its/core-it-suite/src/test/resources/mng-3703/maven-mng3703-plugin/src/main/java/jar/CheckMojo.java b/its/core-it-suite/src/test/resources/mng-3703/maven-mng3703-plugin/src/main/java/jar/CheckMojo.java
index a81f6f6ec5..9db0c2ba52 100644
--- a/its/core-it-suite/src/test/resources/mng-3703/maven-mng3703-plugin/src/main/java/jar/CheckMojo.java
+++ b/its/core-it-suite/src/test/resources/mng-3703/maven-mng3703-plugin/src/main/java/jar/CheckMojo.java
@@ -25,12 +25,12 @@ import org.apache.maven.project.MavenProject;
public class CheckMojo
extends AbstractCheckMojo
{
-
+
protected MavenProject getTestProject()
{
return getExecutionProject();
}
-
+
protected String getTestProjectLabel()
{
return "forked project";
diff --git a/its/core-it-suite/src/test/resources/mng-3703/maven-mng3703-plugin/src/main/java/jar/RunMojo.java b/its/core-it-suite/src/test/resources/mng-3703/maven-mng3703-plugin/src/main/java/jar/RunMojo.java
index a4107e3bad..180f0ebd59 100644
--- a/its/core-it-suite/src/test/resources/mng-3703/maven-mng3703-plugin/src/main/java/jar/RunMojo.java
+++ b/its/core-it-suite/src/test/resources/mng-3703/maven-mng3703-plugin/src/main/java/jar/RunMojo.java
@@ -26,7 +26,7 @@ import org.apache.maven.project.MavenProject;
public class RunMojo
extends AbstractCheckMojo
{
-
+
public void execute()
throws MojoExecutionException
{
@@ -35,7 +35,7 @@ public class RunMojo
getLog().info( "Not running inside a forked execution; skipping this mojo's execution." );
return;
}
-
+
super.execute();
}
@@ -48,6 +48,6 @@ public class RunMojo
{
return "main-project";
}
-
-
+
+
}
diff --git a/its/core-it-suite/src/test/resources/mng-3703/project/pom.xml b/its/core-it-suite/src/test/resources/mng-3703/project/pom.xml
index d5490aa592..fde24d1682 100644
--- a/its/core-it-suite/src/test/resources/mng-3703/project/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-3703/project/pom.xml
@@ -13,7 +13,7 @@
test
-
+
diff --git a/its/core-it-suite/src/test/resources/mng-3703/project/src/main/java/jar/App.java b/its/core-it-suite/src/test/resources/mng-3703/project/src/main/java/jar/App.java
index 9772ca4786..ab568abea2 100644
--- a/its/core-it-suite/src/test/resources/mng-3703/project/src/main/java/jar/App.java
+++ b/its/core-it-suite/src/test/resources/mng-3703/project/src/main/java/jar/App.java
@@ -4,7 +4,7 @@ package jar;
* Hello world!
*
*/
-public class App
+public class App
{
public static void main( String[] args )
{
diff --git a/its/core-it-suite/src/test/resources/mng-3704/maven-mng3704-plugin/src/main/java/org/apache/maven/lifecycle/MyMojo.java b/its/core-it-suite/src/test/resources/mng-3704/maven-mng3704-plugin/src/main/java/org/apache/maven/lifecycle/MyMojo.java
index 93e49ffd43..d70821f2b2 100644
--- a/its/core-it-suite/src/test/resources/mng-3704/maven-mng3704-plugin/src/main/java/org/apache/maven/lifecycle/MyMojo.java
+++ b/its/core-it-suite/src/test/resources/mng-3704/maven-mng3704-plugin/src/main/java/org/apache/maven/lifecycle/MyMojo.java
@@ -39,7 +39,7 @@ import org.codehaus.plexus.util.dag.CycleDetectedException;
/**
* Tests that the lifecycle executor with the out-of-date component configuration (missing some new component
* requirements) will still work...
- *
+ *
* @goal run
* @phase validate
*/
@@ -91,7 +91,7 @@ public class MyMojo
List tasks = new ArrayList();
tasks.add( "compile" );
-
+
ReactorManager rm;
try
{
@@ -105,7 +105,7 @@ public class MyMojo
{
throw new MojoExecutionException( "Failed to construct ReactorManager instance prior to lifecycle execution.", e );
}
-
+
MavenSession s =
new MavenSession( session.getContainer(), session.getSettings(), session.getLocalRepository(),
new DefaultEventDispatcher(), rm, tasks, session.getExecutionRootDirectory(),
diff --git a/its/core-it-suite/src/test/resources/mng-3704/maven-mng3704-plugin/src/main/resources/META-INF/plexus/components.xml b/its/core-it-suite/src/test/resources/mng-3704/maven-mng3704-plugin/src/main/resources/META-INF/plexus/components.xml
index ef24167965..dc9322dea1 100644
--- a/its/core-it-suite/src/test/resources/mng-3704/maven-mng3704-plugin/src/main/resources/META-INF/plexus/components.xml
+++ b/its/core-it-suite/src/test/resources/mng-3704/maven-mng3704-plugin/src/main/resources/META-INF/plexus/components.xml
@@ -14,7 +14,7 @@
org.apache.maven.artifact.handler.manager.ArtifactHandlerManager
-
relative
diff --git a/its/core-it-suite/src/test/resources/mng-3748/pom.xml b/its/core-it-suite/src/test/resources/mng-3748/pom.xml
index b249098aea..f875e327a9 100644
--- a/its/core-it-suite/src/test/resources/mng-3748/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-3748/pom.xml
@@ -4,11 +4,11 @@
mng-3748
pom
1
-
+
Integration Test Project for MNG-3748
This project verifies that MNG-3748 is fixed. It is controlled by a JUnit test called org.apache.maven.integrationtests.MNG3748Test
-
+
https://issues.apache.org/jira/browse/MNG-3748
diff --git a/its/core-it-suite/src/test/resources/mng-3760/pom.xml b/its/core-it-suite/src/test/resources/mng-3760/pom.xml
index 6adb554e92..4e8ef4d2bc 100644
--- a/its/core-it-suite/src/test/resources/mng-3760/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-3760/pom.xml
@@ -26,7 +26,7 @@ under the License.
child
0.1
- Maven Integration Test :: MNG-3760
+ Maven Integration Test :: MNG-3760
Test project.baseUri property.
diff --git a/its/core-it-suite/src/test/resources/mng-3766/pom.xml b/its/core-it-suite/src/test/resources/mng-3766/pom.xml
index e9219ba4c8..cf1686cc7d 100644
--- a/its/core-it-suite/src/test/resources/mng-3766/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-3766/pom.xml
@@ -26,7 +26,7 @@ under the License.
test
1.0-SNAPSHOT
- Maven Integration Test :: MNG-3766
+ Maven Integration Test :: MNG-3766
Test toolchain discovery from build extensions.
diff --git a/its/core-it-suite/src/test/resources/mng-3769/pom.xml b/its/core-it-suite/src/test/resources/mng-3769/pom.xml
index c2eca8af22..a42e2acbac 100644
--- a/its/core-it-suite/src/test/resources/mng-3769/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-3769/pom.xml
@@ -26,7 +26,7 @@ under the License.
test
1.0
- Maven Integration Test :: MNG-3769
+ Maven Integration Test :: MNG-3769
Verify that dependency resolution considers dependency management also for relocated artifacts.
diff --git a/its/core-it-suite/src/test/resources/mng-3796/pom.xml b/its/core-it-suite/src/test/resources/mng-3796/pom.xml
index 1a088e3c9c..3740a5255f 100644
--- a/its/core-it-suite/src/test/resources/mng-3796/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-3796/pom.xml
@@ -26,11 +26,11 @@ under the License.
project
1.0
- Maven Integration Test :: MNG-3796
+ Maven Integration Test :: MNG-3796
Verify that classes shared with the Maven core realm are properly imported into the plugin realm.
-
+
diff --git a/its/core-it-suite/src/test/resources/mng-3805/pom.xml b/its/core-it-suite/src/test/resources/mng-3805/pom.xml
index 22dcd1302c..68c6f954b5 100644
--- a/its/core-it-suite/src/test/resources/mng-3805/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-3805/pom.xml
@@ -26,12 +26,12 @@ under the License.
project
1.0
- Maven Integration Test :: MNG-3805
+ Maven Integration Test :: MNG-3805
Verify that the extension manager respects the ordering of the extension's dependencies when setting up the
class realm.
-
+
@@ -91,7 +91,7 @@ under the License.
maven-core-it-a
-
diff --git a/its/core-it-suite/src/test/resources/mng-3979/pom.xml b/its/core-it-suite/src/test/resources/mng-3979/pom.xml
index ed95efb09d..4db43cd413 100644
--- a/its/core-it-suite/src/test/resources/mng-3979/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-3979/pom.xml
@@ -27,7 +27,7 @@ under the License.
0.1
pom
- Maven Integration Test :: MNG-3979
+ Maven Integration Test :: MNG-3979
Test that during inheritance the merging/joining of sub trees with equal identifier doesn't crash if the parent
POM has a non-empty element and the child POM has an empty element to join.
diff --git a/its/core-it-suite/src/test/resources/mng-3979/sub/pom.xml b/its/core-it-suite/src/test/resources/mng-3979/sub/pom.xml
index d6e261bab3..42e74479a7 100644
--- a/its/core-it-suite/src/test/resources/mng-3979/sub/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-3979/sub/pom.xml
@@ -30,7 +30,7 @@ under the License.
child
- Maven Integration Test :: MNG-3979
+ Maven Integration Test :: MNG-3979
Test that during inheritance the merging/joining of sub trees with equal identifier doesn't crash if the parent
POM has a non-empty element and the child POM has an empty element to join.
diff --git a/its/core-it-suite/src/test/resources/mng-3983/test-1/pom.xml b/its/core-it-suite/src/test/resources/mng-3983/test-1/pom.xml
index 09c1020be5..743a612bfc 100644
--- a/its/core-it-suite/src/test/resources/mng-3983/test-1/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-3983/test-1/pom.xml
@@ -26,7 +26,7 @@ under the License.
test
0.1
- Maven Integration Test :: MNG-3983
+ Maven Integration Test :: MNG-3983
Test that plugins can be resolved from remote plugin repositories defined by (active) profiles in the POM.
diff --git a/its/core-it-suite/src/test/resources/mng-3983/test-2/pom.xml b/its/core-it-suite/src/test/resources/mng-3983/test-2/pom.xml
index c770269a4e..3af19be043 100644
--- a/its/core-it-suite/src/test/resources/mng-3983/test-2/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-3983/test-2/pom.xml
@@ -26,7 +26,7 @@ under the License.
test
0.2
- Maven Integration Test :: MNG-3983
+ Maven Integration Test :: MNG-3983
Test that plugins can be resolved from remote plugin repositories defined by (active) profiles in profiles.xml.
diff --git a/its/core-it-suite/src/test/resources/mng-3983/test-3/pom.xml b/its/core-it-suite/src/test/resources/mng-3983/test-3/pom.xml
index e811b1ea51..759300eca0 100644
--- a/its/core-it-suite/src/test/resources/mng-3983/test-3/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-3983/test-3/pom.xml
@@ -26,7 +26,7 @@ under the License.
test
0.3
- Maven Integration Test :: MNG-3983
+ Maven Integration Test :: MNG-3983
Test that plugins can be resolved from remote plugin repositories defined by (active) profiles in settings.xml.
diff --git a/its/core-it-suite/src/test/resources/mng-3998/pom.xml b/its/core-it-suite/src/test/resources/mng-3998/pom.xml
index a0d1f85c9d..ffb5f31279 100644
--- a/its/core-it-suite/src/test/resources/mng-3998/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-3998/pom.xml
@@ -26,7 +26,7 @@ under the License.
test
0.1
- Maven Integration Test :: MNG-3998
+ Maven Integration Test :: MNG-3998
Test that multiple plugin executions do not lose their configuration when plugin management is used.
diff --git a/its/core-it-suite/src/test/resources/mng-4000/test-1/pom.xml b/its/core-it-suite/src/test/resources/mng-4000/test-1/pom.xml
index 9fcf91b16d..7910084f74 100644
--- a/its/core-it-suite/src/test/resources/mng-4000/test-1/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-4000/test-1/pom.xml
@@ -26,7 +26,7 @@ under the License.
test1
0.1
- Maven Integration Test :: MNG-4000
+ Maven Integration Test :: MNG-4000
Test that plugin executions without id are not lost among other plugin executions.
diff --git a/its/core-it-suite/src/test/resources/mng-4000/test-2/pom.xml b/its/core-it-suite/src/test/resources/mng-4000/test-2/pom.xml
index 4cbab22e5b..fbae181f66 100644
--- a/its/core-it-suite/src/test/resources/mng-4000/test-2/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-4000/test-2/pom.xml
@@ -26,7 +26,7 @@ under the License.
test2
0.1
- Maven Integration Test :: MNG-4000
+ Maven Integration Test :: MNG-4000
Test that plugin executions without id are not lost among other plugin executions.
diff --git a/its/core-it-suite/src/test/resources/mng-4007/pom.xml b/its/core-it-suite/src/test/resources/mng-4007/pom.xml
index fb82f294e6..8eff462284 100644
--- a/its/core-it-suite/src/test/resources/mng-4007/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-4007/pom.xml
@@ -27,7 +27,7 @@ under the License.
1.0
jar
- Maven Integration Test :: MNG-4007
+ Maven Integration Test :: MNG-4007
Verify that paths to project directories use the platform-specific file separator.
diff --git a/its/core-it-suite/src/test/resources/mng-4008/pom.xml b/its/core-it-suite/src/test/resources/mng-4008/pom.xml
index bd15b7774f..6f4df9acd8 100644
--- a/its/core-it-suite/src/test/resources/mng-4008/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-4008/pom.xml
@@ -27,7 +27,7 @@ under the License.
1.0
pom
- Maven Integration Test :: MNG-4008
+ Maven Integration Test :: MNG-4008
Verify that filter definitions are properly merged.
diff --git a/its/core-it-suite/src/test/resources/mng-4008/sub/pom.xml b/its/core-it-suite/src/test/resources/mng-4008/sub/pom.xml
index 7d11e4f132..12310c539d 100644
--- a/its/core-it-suite/src/test/resources/mng-4008/sub/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-4008/sub/pom.xml
@@ -33,7 +33,7 @@ under the License.
1.0
jar
- Maven Integration Test :: MNG-4008
+ Maven Integration Test :: MNG-4008
Verify that filter definitions are properly merged.
diff --git a/its/core-it-suite/src/test/resources/mng-4009/pom.xml b/its/core-it-suite/src/test/resources/mng-4009/pom.xml
index 225622d7d7..a68d8afcec 100644
--- a/its/core-it-suite/src/test/resources/mng-4009/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-4009/pom.xml
@@ -27,7 +27,7 @@ under the License.
1.0
pom
- Maven Integration Test :: MNG-4009
+ Maven Integration Test :: MNG-4009
Verify that the effects of profiles on a parent are inherited by children.
diff --git a/its/core-it-suite/src/test/resources/mng-4009/sub/pom.xml b/its/core-it-suite/src/test/resources/mng-4009/sub/pom.xml
index b4422d0bd9..33ccd8534d 100644
--- a/its/core-it-suite/src/test/resources/mng-4009/sub/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-4009/sub/pom.xml
@@ -33,7 +33,7 @@ under the License.
1.0
jar
- Maven Integration Test :: MNG-4009
+ Maven Integration Test :: MNG-4009
Verify that the effects of profiles on a parent are inherited by children.
diff --git a/its/core-it-suite/src/test/resources/mng-4016/pom.xml b/its/core-it-suite/src/test/resources/mng-4016/pom.xml
index 28f84d27c3..8bcb27d05c 100644
--- a/its/core-it-suite/src/test/resources/mng-4016/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-4016/pom.xml
@@ -27,7 +27,7 @@ under the License.
0.1
pom
- Maven Integration Test :: MNG-4016
+ Maven Integration Test :: MNG-4016
Test that expressions with the special prefixes "project.", "pom." and "env." can be interpolated from
properties that include the prefix.
diff --git a/its/core-it-suite/src/test/resources/mng-4022/pom.xml b/its/core-it-suite/src/test/resources/mng-4022/pom.xml
index 86c7e1201a..e604556e47 100644
--- a/its/core-it-suite/src/test/resources/mng-4022/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-4022/pom.xml
@@ -26,7 +26,7 @@ under the License.
test
1
- Maven Integration Test :: MNG-4022
+ Maven Integration Test :: MNG-4022
Test that merging of equal plugin configuration is idempotent. This is especially interesting for lists with
empty elements.
diff --git a/its/core-it-suite/src/test/resources/mng-4023/pom.xml b/its/core-it-suite/src/test/resources/mng-4023/pom.xml
index 5dbac6ab5c..96b8de43f5 100644
--- a/its/core-it-suite/src/test/resources/mng-4023/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-4023/pom.xml
@@ -27,7 +27,7 @@ under the License.
1.0-SNAPSHOT
pom
- Maven Integration Test :: MNG-4023
+ Maven Integration Test :: MNG-4023
Verify that profiles in a parent are only injected once during a reactor build that include the parent
itself. The parent being part of the reactor makes it subject to project caching and proper use of the
diff --git a/its/core-it-suite/src/test/resources/mng-4023/sub/pom.xml b/its/core-it-suite/src/test/resources/mng-4023/sub/pom.xml
index 6a1690a495..01cf1206ff 100644
--- a/its/core-it-suite/src/test/resources/mng-4023/sub/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-4023/sub/pom.xml
@@ -32,7 +32,7 @@ under the License.
child
1.0-SNAPSHOT
- Maven Integration Test :: MNG-4023
+ Maven Integration Test :: MNG-4023
Verify that profiles in a parent are only injected once during a reactor build that include the parent
itself. The parent being part of the reactor makes it subject to project caching and proper use of the
diff --git a/its/core-it-suite/src/test/resources/mng-4034/pom.xml b/its/core-it-suite/src/test/resources/mng-4034/pom.xml
index b3305c76bd..88c9813af9 100644
--- a/its/core-it-suite/src/test/resources/mng-4034/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-4034/pom.xml
@@ -27,7 +27,7 @@ under the License.
1.0-SNAPSHOT
pom
- Maven Integration Test :: MNG-4034
+ Maven Integration Test :: MNG-4034
Verify that dependencies defined in profiles are subject to the dependency management of the parent.
diff --git a/its/core-it-suite/src/test/resources/mng-4034/sub/pom.xml b/its/core-it-suite/src/test/resources/mng-4034/sub/pom.xml
index 219597e180..a77069ba8d 100644
--- a/its/core-it-suite/src/test/resources/mng-4034/sub/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-4034/sub/pom.xml
@@ -32,7 +32,7 @@ under the License.
child
1.0-SNAPSHOT
- Maven Integration Test :: MNG-4034
+ Maven Integration Test :: MNG-4034
Verify that dependencies defined in profiles are subject to the dependency management of the parent.
diff --git a/its/core-it-suite/src/test/resources/mng-4040/pom.xml b/its/core-it-suite/src/test/resources/mng-4040/pom.xml
index 6bff784a9d..116bc6f3c5 100644
--- a/its/core-it-suite/src/test/resources/mng-4040/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-4040/pom.xml
@@ -27,7 +27,7 @@ under the License.
1.0-SNAPSHOT
pom
- Maven Integration Test :: MNG-4040
+ Maven Integration Test :: MNG-4040
Verify that modules inside profiles are not accidentally inherited by the children.
diff --git a/its/core-it-suite/src/test/resources/mng-4040/sub/pom.xml b/its/core-it-suite/src/test/resources/mng-4040/sub/pom.xml
index 7c4c670af6..acfdd2b618 100644
--- a/its/core-it-suite/src/test/resources/mng-4040/sub/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-4040/sub/pom.xml
@@ -32,7 +32,7 @@ under the License.
child
1.0-SNAPSHOT
- Maven Integration Test :: MNG-4040
+ Maven Integration Test :: MNG-4040
Verify that modules inside profiles are not accidentally inherited by the children.
diff --git a/its/core-it-suite/src/test/resources/mng-4048/pom.xml b/its/core-it-suite/src/test/resources/mng-4048/pom.xml
index 112d145c2c..da2f676262 100644
--- a/its/core-it-suite/src/test/resources/mng-4048/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-4048/pom.xml
@@ -27,7 +27,7 @@ under the License.
1.0-SNAPSHOT
pom
- Maven Integration Test :: MNG-4048
+ Maven Integration Test :: MNG-4048
Verify that dependencies using version ranges can be resolved from the reactor.
diff --git a/its/core-it-suite/src/test/resources/mng-4048/sub-1/pom.xml b/its/core-it-suite/src/test/resources/mng-4048/sub-1/pom.xml
index 9280d15ffc..10ebaf29b6 100644
--- a/its/core-it-suite/src/test/resources/mng-4048/sub-1/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-4048/sub-1/pom.xml
@@ -32,7 +32,7 @@ under the License.
sub-1
1.1-SNAPSHOT
- Maven Integration Test :: MNG-4048
+ Maven Integration Test :: MNG-4048
Verify that dependencies using version ranges can be resolved from the reactor.
diff --git a/its/core-it-suite/src/test/resources/mng-4048/sub-2/pom.xml b/its/core-it-suite/src/test/resources/mng-4048/sub-2/pom.xml
index 4695fc7193..29e3e22fb4 100644
--- a/its/core-it-suite/src/test/resources/mng-4048/sub-2/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-4048/sub-2/pom.xml
@@ -32,7 +32,7 @@ under the License.
sub-2
1.0-SNAPSHOT
- Maven Integration Test :: MNG-4048
+ Maven Integration Test :: MNG-4048
Verify that dependencies using version ranges can be resolved from the reactor.
diff --git a/its/core-it-suite/src/test/resources/mng-4053/test-1/pom.xml b/its/core-it-suite/src/test/resources/mng-4053/test-1/pom.xml
index 628fe09f82..373a66d7fb 100644
--- a/its/core-it-suite/src/test/resources/mng-4053/test-1/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-4053/test-1/pom.xml
@@ -26,7 +26,7 @@ under the License.
test1
1.0-SNAPSHOT
- Maven Integration Test :: MNG-4053
+ Maven Integration Test :: MNG-4053
Verify that attributes in plugin configuration elements are not erroneously duplicated to other elements when
no plugin management is used.
diff --git a/its/core-it-suite/src/test/resources/mng-4053/test-2/pom.xml b/its/core-it-suite/src/test/resources/mng-4053/test-2/pom.xml
index 404fc2aeae..a16f60d100 100644
--- a/its/core-it-suite/src/test/resources/mng-4053/test-2/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-4053/test-2/pom.xml
@@ -26,7 +26,7 @@ under the License.
test2
1.0-SNAPSHOT
- Maven Integration Test :: MNG-4053
+ Maven Integration Test :: MNG-4053
Verify that attributes in plugin configuration elements are not erroneously duplicated to other elements when
plugin management is used.
diff --git a/its/core-it-suite/src/test/resources/mng-4053/test-3/pom.xml b/its/core-it-suite/src/test/resources/mng-4053/test-3/pom.xml
index 7b9edcd0ee..0d957aadf6 100644
--- a/its/core-it-suite/src/test/resources/mng-4053/test-3/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-4053/test-3/pom.xml
@@ -26,7 +26,7 @@ under the License.
test3
1.0-SNAPSHOT
- Maven Integration Test :: MNG-4053
+ Maven Integration Test :: MNG-4053
Verify that attributes in plugin configuration elements are not erroneously duplicated to other elements when
plugin management and a profile are used.
diff --git a/its/core-it-suite/src/test/resources/mng-4068/pom.xml b/its/core-it-suite/src/test/resources/mng-4068/pom.xml
index 3874d95e80..6b49621693 100644
--- a/its/core-it-suite/src/test/resources/mng-4068/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-4068/pom.xml
@@ -27,7 +27,7 @@ under the License.
1.0
jar
- Maven Integration Test :: MNG-4068
+ Maven Integration Test :: MNG-4068
Test that downloading of release/snapshot artifacts from an authenticated mirror works. This basically
boils down to using the proper id for the mirrored repository when looking up the credentials.
diff --git a/its/core-it-suite/src/test/resources/mng-4070/sub/pom.xml b/its/core-it-suite/src/test/resources/mng-4070/sub/pom.xml
index 8953cc1489..1a5cc83a36 100644
--- a/its/core-it-suite/src/test/resources/mng-4070/sub/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-4070/sub/pom.xml
@@ -33,7 +33,7 @@ under the License.
1.0
jar
- Maven Integration Test :: MNG-4070 :: Child
+ Maven Integration Test :: MNG-4070 :: Child
Test that whitespace around artifact coordinates does not change artifact identity.
diff --git a/its/core-it-suite/src/test/resources/mng-4072/pom-template.xml b/its/core-it-suite/src/test/resources/mng-4072/pom-template.xml
index 3e1011f0bc..32d1ce7987 100644
--- a/its/core-it-suite/src/test/resources/mng-4072/pom-template.xml
+++ b/its/core-it-suite/src/test/resources/mng-4072/pom-template.xml
@@ -27,7 +27,7 @@ under the License.
1.0
jar
- Maven Integration Test :: MNG-4072
+ Maven Integration Test :: MNG-4072
Test that repositories from inactive profiles are actually not used for artifact resolution.
diff --git a/its/core-it-suite/src/test/resources/mng-4087/pom-template.xml b/its/core-it-suite/src/test/resources/mng-4087/pom-template.xml
index e683c0be88..0d47a72e85 100644
--- a/its/core-it-suite/src/test/resources/mng-4087/pom-template.xml
+++ b/its/core-it-suite/src/test/resources/mng-4087/pom-template.xml
@@ -27,7 +27,7 @@ under the License.
1.0-SNAPSHOT
jar
- Maven Integration Test :: MNG-4087
+ Maven Integration Test :: MNG-4087
Test that deployment to a file:// repository decodes percent-encoded characters.
diff --git a/its/core-it-suite/src/test/resources/mng-4106/pom.xml b/its/core-it-suite/src/test/resources/mng-4106/pom.xml
index b5afbb4f0f..b48bfe6abe 100644
--- a/its/core-it-suite/src/test/resources/mng-4106/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-4106/pom.xml
@@ -27,7 +27,7 @@ under the License.
1.0-SNAPSHOT
jar
- Maven Integration Test :: MNG-4106
+ Maven Integration Test :: MNG-4106
Test that interpolation uses the property values from the dominant (i.e. last) profile among a group
of active profiles that define the same properties. This boils down to the proper order of profile
diff --git a/its/core-it-suite/src/test/resources/mng-4107/pom.xml b/its/core-it-suite/src/test/resources/mng-4107/pom.xml
index f96833f621..9ef6b6cb7e 100644
--- a/its/core-it-suite/src/test/resources/mng-4107/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-4107/pom.xml
@@ -27,7 +27,7 @@ under the License.
1.0-SNAPSHOT
jar
- Maven Integration Test :: MNG-4107
+ Maven Integration Test :: MNG-4107
Test that POM interpolation uses the property values from the dominant profile source (POM vs. profiles.xml
vs. settings.xml). This boils down to the proper order of profile injection and interpolation, i.e.
diff --git a/its/core-it-suite/src/test/resources/mng-4112/pom.xml b/its/core-it-suite/src/test/resources/mng-4112/pom.xml
index da58d62720..c2f794d85d 100644
--- a/its/core-it-suite/src/test/resources/mng-4112/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-4112/pom.xml
@@ -27,7 +27,7 @@ under the License.
pom
1.0
- Maven Integration Test :: MNG-4112
+ Maven Integration Test :: MNG-4112
Test for ${maven.version} and ${maven.build.version} property
diff --git a/its/core-it-suite/src/test/resources/mng-4116/pom.xml b/its/core-it-suite/src/test/resources/mng-4116/pom.xml
index aced5b3bd0..03ac3a147f 100644
--- a/its/core-it-suite/src/test/resources/mng-4116/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-4116/pom.xml
@@ -27,7 +27,7 @@ under the License.
1.0-SNAPSHOT
jar
- Maven Integration Test :: MNG-4116
+ Maven Integration Test :: MNG-4116
Test that the project builder does not decode URLs (which must be done by the transport layer instead).
diff --git a/its/core-it-suite/src/test/resources/mng-4126/pom.xml b/its/core-it-suite/src/test/resources/mng-4126/pom.xml
index cb235067eb..d48bdce34b 100644
--- a/its/core-it-suite/src/test/resources/mng-4126/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-4126/pom.xml
@@ -27,7 +27,7 @@ under the License.
1.0-SNAPSHOT
pom
- Maven Integration Test :: MNG-4126 :: Parent
+ Maven Integration Test :: MNG-4126 :: Parent
Verify that effects of active profiles from the profiles.xml of a local parent are inherited by children when
parent and child are build together during a reactor invocation. This boils down to the reactor cache not
diff --git a/its/core-it-suite/src/test/resources/mng-4126/sub/pom.xml b/its/core-it-suite/src/test/resources/mng-4126/sub/pom.xml
index d89e57561a..d4cfaea669 100644
--- a/its/core-it-suite/src/test/resources/mng-4126/sub/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-4126/sub/pom.xml
@@ -32,7 +32,7 @@ under the License.
child
1.0-SNAPSHOT
- Maven Integration Test :: MNG-4126 :: Child
+ Maven Integration Test :: MNG-4126 :: Child
Verify that effects of active profiles from the profiles.xml of a local parent are inherited by children when
parent and child are build together during a reactor invocation. This boils down to the reactor cache not
diff --git a/its/core-it-suite/src/test/resources/mng-4150/pom.xml b/its/core-it-suite/src/test/resources/mng-4150/pom.xml
index 4e95afcd74..a5a6afbc61 100644
--- a/its/core-it-suite/src/test/resources/mng-4150/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-4150/pom.xml
@@ -26,7 +26,7 @@ under the License.
test
1.0
- Maven Integration Test :: MNG-4150
+ Maven Integration Test :: MNG-4150
Test version range support.
diff --git a/its/core-it-suite/src/test/resources/mng-4162/pom.xml b/its/core-it-suite/src/test/resources/mng-4162/pom.xml
index 5fb986ac17..c3383ac92a 100644
--- a/its/core-it-suite/src/test/resources/mng-4162/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-4162/pom.xml
@@ -32,7 +32,7 @@ under the License.
Verify that the legacy reporting section is automatically converted into ordinary plugin configuration of the
Maven Site Plugin to ease migration.
-
+
diff --git a/its/core-it-suite/src/test/resources/mng-4166/pom.xml b/its/core-it-suite/src/test/resources/mng-4166/pom.xml
index b700bd13e5..7f4b6be26c 100644
--- a/its/core-it-suite/src/test/resources/mng-4166/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-4166/pom.xml
@@ -30,7 +30,7 @@ under the License.
Verify that plugins can use their own version of commons-cli and are not bound to the version bundled in the core.
-
+
diff --git a/its/core-it-suite/src/test/resources/mng-4189/src/main/java/org/apache/maven/its/mng4189/App.java b/its/core-it-suite/src/test/resources/mng-4189/src/main/java/org/apache/maven/its/mng4189/App.java
index 7e8f32600e..edf9506a16 100644
--- a/its/core-it-suite/src/test/resources/mng-4189/src/main/java/org/apache/maven/its/mng4189/App.java
+++ b/its/core-it-suite/src/test/resources/mng-4189/src/main/java/org/apache/maven/its/mng4189/App.java
@@ -24,13 +24,13 @@ import org.apache.maven.its.mng4189.dep.Calculator;
/**
* Sample project
*/
-public class App
+public class App
{
public void testDependency()
{
Calculator calculator = new Calculator();
int total = calculator.add( 1, 2 );
-
+
System.out.println( "Total : " + total );
}
}
diff --git a/its/core-it-suite/src/test/resources/mng-4196/pom.xml b/its/core-it-suite/src/test/resources/mng-4196/pom.xml
index 33430163a3..8e56727d4a 100644
--- a/its/core-it-suite/src/test/resources/mng-4196/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-4196/pom.xml
@@ -26,11 +26,11 @@ under the License.
test
1.0
- Maven Integration Test :: MNG-4196
+ Maven Integration Test :: MNG-4196
Verify that exclusions on a project-level plugin dependency are effective.
-
+
diff --git a/its/core-it-suite/src/test/resources/mng-4233/pom.xml b/its/core-it-suite/src/test/resources/mng-4233/pom.xml
index 55fd680bd8..a3104cab6e 100644
--- a/its/core-it-suite/src/test/resources/mng-4233/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-4233/pom.xml
@@ -27,7 +27,7 @@ under the License.
1.0-SNAPSHOT
pom
- Maven Integration Test :: MNG-4233
+ Maven Integration Test :: MNG-4233
Verify that artifact instances created directly by plugins (i.e. via the artifact factory) can be resolved
from the reactor. This case is a subtle variation of MNG-2877, namely not using @requiresDependencyResolution
diff --git a/its/core-it-suite/src/test/resources/mng-4233/producer/pom.xml b/its/core-it-suite/src/test/resources/mng-4233/producer/pom.xml
index b852b40247..8d81f983e7 100644
--- a/its/core-it-suite/src/test/resources/mng-4233/producer/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-4233/producer/pom.xml
@@ -27,7 +27,7 @@ under the License.
1.0-SNAPSHOT
jar
- Maven Integration Test :: MNG-4233 :: Dependency Provider
+ Maven Integration Test :: MNG-4233 :: Dependency Provider
diff --git a/its/core-it-suite/src/test/resources/mng-4238/pom.xml b/its/core-it-suite/src/test/resources/mng-4238/pom.xml
index e7818faf8f..eae7722e18 100644
--- a/its/core-it-suite/src/test/resources/mng-4238/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-4238/pom.xml
@@ -4,14 +4,14 @@
org.apache.maven.its.mng4238
mng-4238
1
-
+
coreit
-
+
diff --git a/its/core-it-suite/src/test/resources/mng-4238/src/main/java/org/apache/maven/it/mng4238/App.java b/its/core-it-suite/src/test/resources/mng-4238/src/main/java/org/apache/maven/it/mng4238/App.java
index d86190e2b8..5490073083 100644
--- a/its/core-it-suite/src/test/resources/mng-4238/src/main/java/org/apache/maven/it/mng4238/App.java
+++ b/its/core-it-suite/src/test/resources/mng-4238/src/main/java/org/apache/maven/it/mng4238/App.java
@@ -4,7 +4,7 @@ package org.apache.maven.it.mng4238;
* Hello world!
*
*/
-public class App
+public class App
{
public static void main( String[] args )
{
diff --git a/its/core-it-suite/src/test/resources/mng-4254/pom.xml b/its/core-it-suite/src/test/resources/mng-4254/pom.xml
index 452bb9e3d3..de44c8df4a 100644
--- a/its/core-it-suite/src/test/resources/mng-4254/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-4254/pom.xml
@@ -5,14 +5,14 @@
mng-4254
1
pom
-
+
test
http://dummyhost.com/repository
-
+
diff --git a/its/core-it-suite/src/test/resources/mng-4269/pom.xml b/its/core-it-suite/src/test/resources/mng-4269/pom.xml
index d7e4751b6f..fa5f3d908c 100644
--- a/its/core-it-suite/src/test/resources/mng-4269/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-4269/pom.xml
@@ -34,7 +34,7 @@ under the License.
Maven Integration Test :: MNG-4269
Test that dependency resolution from the reactor is not too eager and does not resolve plugin artifacts from
- the build directory of their plugin project when the plugin project hasn't been built yet. The technical
+ the build directory of their plugin project when the plugin project hasn't been built yet. The technical
problem is that the mere existence of a project output directory like target/classes is no sufficient indicator
that we can use that for artifact resolution. The project's output directory might just be a left over from a
previous build and could be in any state, e.g. incomplete.
diff --git a/its/core-it-suite/src/test/resources/mng-4270/pom.xml b/its/core-it-suite/src/test/resources/mng-4270/pom.xml
index bb519cf9ac..0a7fcca190 100644
--- a/its/core-it-suite/src/test/resources/mng-4270/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-4270/pom.xml
@@ -21,7 +21,7 @@ under the License.
4.0.0
-
+
org.apache.maven.its.mng4270
mng-4270
1
@@ -35,14 +35,14 @@ under the License.
test
-
+
org.apache.maven.its.plugins
maven-it-plugin-extension1
2.1-SNAPSHOT
-
+
org.apache.maven.its
@@ -50,7 +50,7 @@ under the License.
2.1-SNAPSHOT
-
+
true
diff --git a/its/core-it-suite/src/test/resources/mng-4270/src/main/java/org/apache/maven/its/mng3506/App.java b/its/core-it-suite/src/test/resources/mng-4270/src/main/java/org/apache/maven/its/mng3506/App.java
index 2e519cba97..027cdbd617 100644
--- a/its/core-it-suite/src/test/resources/mng-4270/src/main/java/org/apache/maven/its/mng3506/App.java
+++ b/its/core-it-suite/src/test/resources/mng-4270/src/main/java/org/apache/maven/its/mng3506/App.java
@@ -22,7 +22,7 @@ package org.apache.maven.its.mng3506;
* Hello world!
*
*/
-public class App
+public class App
{
public static void main( String[] args )
{
diff --git a/its/core-it-suite/src/test/resources/mng-4270/src/test/java/org/apache/maven/its/mng3506/AppTest.java b/its/core-it-suite/src/test/resources/mng-4270/src/test/java/org/apache/maven/its/mng3506/AppTest.java
index 07b7f5f8ea..d2f3c7f838 100644
--- a/its/core-it-suite/src/test/resources/mng-4270/src/test/java/org/apache/maven/its/mng3506/AppTest.java
+++ b/its/core-it-suite/src/test/resources/mng-4270/src/test/java/org/apache/maven/its/mng3506/AppTest.java
@@ -25,7 +25,7 @@ import junit.framework.TestSuite;
/**
* Unit test for simple App.
*/
-public class AppTest
+public class AppTest
extends TestCase
{
/**
diff --git a/its/core-it-suite/src/test/resources/mng-4279/pom.xml b/its/core-it-suite/src/test/resources/mng-4279/pom.xml
index c3762e5c19..1a4ab5da4d 100644
--- a/its/core-it-suite/src/test/resources/mng-4279/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-4279/pom.xml
@@ -32,14 +32,14 @@ under the License.
Test that wagon provider selection fails gracefully and uses protocol for roleHint if protocol-provider roleHint
isn't available.
-
+
test
coreit://foo.com/deploy
-
+
diff --git a/its/core-it-suite/src/test/resources/mng-4281/dependency/pom.xml b/its/core-it-suite/src/test/resources/mng-4281/dependency/pom.xml
index 24a77f89dc..e13a2986d1 100644
--- a/its/core-it-suite/src/test/resources/mng-4281/dependency/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-4281/dependency/pom.xml
@@ -21,13 +21,13 @@ under the License.
4.0.0
-
+
org.apache.maven.its.mng4281
dependency
0.1-SNAPSHOT
- Maven Integration Test :: MNG-4281 :: Dependency
+ Maven Integration Test :: MNG-4281 :: Dependency
Test that remote snapshots are not preferred over snapshots that have just been locally built.
diff --git a/its/core-it-suite/src/test/resources/mng-4281/project/pom.xml b/its/core-it-suite/src/test/resources/mng-4281/project/pom.xml
index f1bd82af4c..87bf4488b9 100644
--- a/its/core-it-suite/src/test/resources/mng-4281/project/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-4281/project/pom.xml
@@ -21,12 +21,12 @@ under the License.
4.0.0
-
+
org.apache.maven.its.mng4281
test
0.1-SNAPSHOT
- Maven Integration Test :: MNG-4281 :: Project
+ Maven Integration Test :: MNG-4281 :: Project
Test that remote snapshots are not preferred over snapshots that have just been locally built.
diff --git a/its/core-it-suite/src/test/resources/mng-4292/pom.xml b/its/core-it-suite/src/test/resources/mng-4292/pom.xml
index 49a29e85e7..e2d2b744b0 100644
--- a/its/core-it-suite/src/test/resources/mng-4292/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-4292/pom.xml
@@ -27,7 +27,7 @@ under the License.
0.1
jar
- Maven Integration Test :: MNG-4292
+ Maven Integration Test :: MNG-4292
Test that mojo parameters can be configured with enums.
diff --git a/its/core-it-suite/src/test/resources/mng-4309/pom.xml b/its/core-it-suite/src/test/resources/mng-4309/pom.xml
index 1bc072a7a2..3db6c5d60e 100644
--- a/its/core-it-suite/src/test/resources/mng-4309/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-4309/pom.xml
@@ -27,7 +27,7 @@ under the License.
0.1-SNAPSHOT
jar
- Maven Integration Test :: MNG-4309
+ Maven Integration Test :: MNG-4309
Verify that strict checksum verification applies to metadata as well and in particular fails the build
during deployment when the previous metadata is corrupt.
diff --git a/its/core-it-suite/src/test/resources/mng-4321/pom.xml b/its/core-it-suite/src/test/resources/mng-4321/pom.xml
index 7a837435a7..b69646a72e 100644
--- a/its/core-it-suite/src/test/resources/mng-4321/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-4321/pom.xml
@@ -27,7 +27,7 @@ under the License.
0.1
pom
- Maven Integration Test :: MNG-4321
+ Maven Integration Test :: MNG-4321
Test that configuration from plugin management also applies to goals that are invoked directly from the
CLI even when the invoked plugin is neither explicitly present in the build/plugins section nor part of
diff --git a/its/core-it-suite/src/test/resources/mng-4326/dependency/pom.xml b/its/core-it-suite/src/test/resources/mng-4326/dependency/pom.xml
index bbc1313161..0a599d180a 100644
--- a/its/core-it-suite/src/test/resources/mng-4326/dependency/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-4326/dependency/pom.xml
@@ -27,7 +27,7 @@ under the License.
0.1-SNAPSHOT
jar
- Maven Integration Test :: MNG-4326
+ Maven Integration Test :: MNG-4326
Verify that locally built/installed snapshot artifacts suppress remote update checks (as long as the local copy
still satifies the update policy configured for the remote repository).
diff --git a/its/core-it-suite/src/test/resources/mng-4326/test/pom.xml b/its/core-it-suite/src/test/resources/mng-4326/test/pom.xml
index dbc6690864..0f32b82b00 100644
--- a/its/core-it-suite/src/test/resources/mng-4326/test/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-4326/test/pom.xml
@@ -27,7 +27,7 @@ under the License.
0.1-SNAPSHOT
jar
- Maven Integration Test :: MNG-4326
+ Maven Integration Test :: MNG-4326
Verify that locally built/installed snapshot artifacts suppress remote update checks (as long as the local copy
still satifies the update policy configured for the remote repository).
diff --git a/its/core-it-suite/src/test/resources/mng-4328/pom.xml b/its/core-it-suite/src/test/resources/mng-4328/pom.xml
index 415ed58025..0dfd4b37ef 100644
--- a/its/core-it-suite/src/test/resources/mng-4328/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-4328/pom.xml
@@ -26,7 +26,7 @@ under the License.
test
1.0-SNAPSHOT
- Maven Integration Test :: MNG-4328
+ Maven Integration Test :: MNG-4328
Verify that plugin parameters that are of primitive types like boolean (not java.lang.Boolean) can be populated
from expressions. In other words, the subtle difference between the runtime type of the expression value (which
diff --git a/its/core-it-suite/src/test/resources/mng-4335/pom.xml b/its/core-it-suite/src/test/resources/mng-4335/pom.xml
index 2a23432315..f1c7e8480f 100644
--- a/its/core-it-suite/src/test/resources/mng-4335/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-4335/pom.xml
@@ -26,7 +26,7 @@ under the License.
test
0.1
- Maven Integration Test :: MNG-4335
+ Maven Integration Test :: MNG-4335
Test that offline mode is enabled when specified in the settings.xml
diff --git a/its/core-it-suite/src/test/resources/mng-4338/pom.xml b/its/core-it-suite/src/test/resources/mng-4338/pom.xml
index 300a0fda30..bb133d4d12 100644
--- a/its/core-it-suite/src/test/resources/mng-4338/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-4338/pom.xml
@@ -27,7 +27,7 @@ under the License.
0.1
it-packaging
- Maven Integration Test :: MNG-4338
+ Maven Integration Test :: MNG-4338
Test that the optional-mojos element in custom lifecycle mappings is recognized and does not cause
a configuration failure when loading the lifecycle.
diff --git a/its/core-it-suite/src/test/resources/mng-4341/pom.xml b/its/core-it-suite/src/test/resources/mng-4341/pom.xml
index 95cee78acd..5423a5e71a 100644
--- a/its/core-it-suite/src/test/resources/mng-4341/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-4341/pom.xml
@@ -27,7 +27,7 @@ under the License.
0.1
jar
- Maven Integration Test :: MNG-4341
+ Maven Integration Test :: MNG-4341
Test that plugins bound to the same phase get executed in POM order even if one of the plugins participates
in the default lifecycle bindings for the project's packaging.
diff --git a/its/core-it-suite/src/test/resources/mng-4342/pom.xml b/its/core-it-suite/src/test/resources/mng-4342/pom.xml
index 0f2d1a4bae..b5ebb83d95 100644
--- a/its/core-it-suite/src/test/resources/mng-4342/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-4342/pom.xml
@@ -27,7 +27,7 @@ under the License.
0.1
jar
- Maven Integration Test :: MNG-4342
+ Maven Integration Test :: MNG-4342
Test that multiple goals within a single execution get their default configuration properly injected. In
particular, the default values for one goal should not influence the default values of the other goal.
diff --git a/its/core-it-suite/src/test/resources/mng-4343/pom.xml b/its/core-it-suite/src/test/resources/mng-4343/pom.xml
index 5657fbe061..837a4deeee 100644
--- a/its/core-it-suite/src/test/resources/mng-4343/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-4343/pom.xml
@@ -27,7 +27,7 @@ under the License.
0.1
jar
- Maven Integration Test :: MNG-4343
+ Maven Integration Test :: MNG-4343
Verify that checking for *missing* release artifacts respects the update policy that is configured in the
release section for the respective repository or set globally via "-U".
diff --git a/its/core-it-suite/src/test/resources/mng-4344/pom.xml b/its/core-it-suite/src/test/resources/mng-4344/pom.xml
index 6b64c0a1dd..610f01bc3e 100644
--- a/its/core-it-suite/src/test/resources/mng-4344/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-4344/pom.xml
@@ -27,7 +27,7 @@ under the License.
0.1
jar
- Maven Integration Test :: MNG-4344
+ Maven Integration Test :: MNG-4344
Test that custom executions from managed plugins which are part of the default lifecycle bindings get
executed after executions from plugins that are defined in the regular build section and bound to the
diff --git a/its/core-it-suite/src/test/resources/mng-4345/pom.xml b/its/core-it-suite/src/test/resources/mng-4345/pom.xml
index 5db2b890b4..2cdf1b0569 100644
--- a/its/core-it-suite/src/test/resources/mng-4345/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-4345/pom.xml
@@ -27,7 +27,7 @@ under the License.
0.1
jar
- Maven Integration Test :: MNG-4345
+ Maven Integration Test :: MNG-4345
Test that plugin executions contributed by default lifecycle mappings always execute first in the targetted
lifecycle phase regardless of other plugin executions bound to the same phase and regardless of the POM
diff --git a/its/core-it-suite/src/test/resources/mng-4347/pom.xml b/its/core-it-suite/src/test/resources/mng-4347/pom.xml
index 0fcb49ed43..486f5ae7c1 100644
--- a/its/core-it-suite/src/test/resources/mng-4347/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-4347/pom.xml
@@ -34,7 +34,7 @@ under the License.
1
-
+
diff --git a/its/core-it-suite/src/test/resources/mng-4347/remote-repository/org/apache/maven/its/mng4347/dep-with-import/1/dep-with-import-1.pom b/its/core-it-suite/src/test/resources/mng-4347/remote-repository/org/apache/maven/its/mng4347/dep-with-import/1/dep-with-import-1.pom
index 6036cf677a..f575fbf86e 100644
--- a/its/core-it-suite/src/test/resources/mng-4347/remote-repository/org/apache/maven/its/mng4347/dep-with-import/1/dep-with-import-1.pom
+++ b/its/core-it-suite/src/test/resources/mng-4347/remote-repository/org/apache/maven/its/mng4347/dep-with-import/1/dep-with-import-1.pom
@@ -38,7 +38,7 @@ under the License.
-
+
org.apache.maven.its.mng4347
diff --git a/its/core-it-suite/src/test/resources/mng-4347/remote-repository/org/apache/maven/its/mng4347/import-dep/1-SNAPSHOT/import-dep-1-20090909.201000-1.pom b/its/core-it-suite/src/test/resources/mng-4347/remote-repository/org/apache/maven/its/mng4347/import-dep/1-SNAPSHOT/import-dep-1-20090909.201000-1.pom
index 0b2f82c337..8db910130f 100644
--- a/its/core-it-suite/src/test/resources/mng-4347/remote-repository/org/apache/maven/its/mng4347/import-dep/1-SNAPSHOT/import-dep-1-20090909.201000-1.pom
+++ b/its/core-it-suite/src/test/resources/mng-4347/remote-repository/org/apache/maven/its/mng4347/import-dep/1-SNAPSHOT/import-dep-1-20090909.201000-1.pom
@@ -5,14 +5,14 @@
import-dep
1-SNAPSHOT
pom
-
+
nexus
http://localhost:8081/nexus/content/repositories/snapshots/
-
+
@@ -22,5 +22,5 @@
-
+
diff --git a/its/core-it-suite/src/test/resources/mng-4347/src/main/java/org/apache/maven/it/mng4347/App.java b/its/core-it-suite/src/test/resources/mng-4347/src/main/java/org/apache/maven/it/mng4347/App.java
index 309eb22ee1..81ca4296ae 100644
--- a/its/core-it-suite/src/test/resources/mng-4347/src/main/java/org/apache/maven/it/mng4347/App.java
+++ b/its/core-it-suite/src/test/resources/mng-4347/src/main/java/org/apache/maven/it/mng4347/App.java
@@ -19,7 +19,7 @@ package org.apache.maven.it.mng4347;
* under the License.
*/
-public class App
+public class App
{
public static void main( String[] args )
{
diff --git a/its/core-it-suite/src/test/resources/mng-4348/pom.xml b/its/core-it-suite/src/test/resources/mng-4348/pom.xml
index 1f738b36ba..39ff37b145 100644
--- a/its/core-it-suite/src/test/resources/mng-4348/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-4348/pom.xml
@@ -27,7 +27,7 @@ under the License.
0.1
jar
- Maven Integration Test :: MNG-4348
+ Maven Integration Test :: MNG-4348
Test that the (remote) repos are not accessed during execution of a mojo that does not require dependency
resolution. In detail, Maven should neither touch POMs, JARs nor metadata.
diff --git a/its/core-it-suite/src/test/resources/mng-4349/pom.xml b/its/core-it-suite/src/test/resources/mng-4349/pom.xml
index 3abd4dab96..0e6be672f7 100644
--- a/its/core-it-suite/src/test/resources/mng-4349/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-4349/pom.xml
@@ -27,7 +27,7 @@ under the License.
0.1
jar
- Maven Integration Test :: MNG-4349
+ Maven Integration Test :: MNG-4349
Test that relocation to an artifact with an invalid POM fails gracefully and still uses the relocated JAR
(instead of the JAR for the unrelocated artifact).
diff --git a/its/core-it-suite/src/test/resources/mng-4350/pom.xml b/its/core-it-suite/src/test/resources/mng-4350/pom.xml
index 9bb8d57e4d..46ac7a80bb 100644
--- a/its/core-it-suite/src/test/resources/mng-4350/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-4350/pom.xml
@@ -27,7 +27,7 @@ under the License.
0.1
multi-goal-per-phase
- Maven Integration Test :: MNG-4350
+ Maven Integration Test :: MNG-4350
Test that multiple goals bound to the same phase by a lifecycle mapping execute in the order given by
the lifecycle mapping. In particular, the order of plugin declarations in the POM should have no influence
diff --git a/its/core-it-suite/src/test/resources/mng-4360/jackrabbit/pom.xml b/its/core-it-suite/src/test/resources/mng-4360/jackrabbit/pom.xml
index 617596b885..f1884ba71c 100644
--- a/its/core-it-suite/src/test/resources/mng-4360/jackrabbit/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-4360/jackrabbit/pom.xml
@@ -27,9 +27,9 @@ under the License.
0.1
jar
- Maven Integration Test :: MNG-4360
+ Maven Integration Test :: MNG-4360
- Verify that WebDAV works in principle. This test is not actually concerned about proper transfers but more
+ Verify that WebDAV works in principle. This test is not actually concerned about proper transfers but more
that the Jackrabbit based wagon can be properly loaded and doesn't die due to some class realm issue.
diff --git a/its/core-it-suite/src/test/resources/mng-4360/slide/pom.xml b/its/core-it-suite/src/test/resources/mng-4360/slide/pom.xml
index 6b60d2c0ed..dc2f2406e6 100644
--- a/its/core-it-suite/src/test/resources/mng-4360/slide/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-4360/slide/pom.xml
@@ -27,9 +27,9 @@ under the License.
0.1
jar
- Maven Integration Test :: MNG-4360
+ Maven Integration Test :: MNG-4360
- Verify that WebDAV works in principle. This test is not actually concerned about proper transfers but more
+ Verify that WebDAV works in principle. This test is not actually concerned about proper transfers but more
that the Slide based wagon can be properly loaded and doesn't die due to some class realm issue.
diff --git a/its/core-it-suite/src/test/resources/mng-4365/pom.xml b/its/core-it-suite/src/test/resources/mng-4365/pom.xml
index 9461a11009..3a48cc243d 100644
--- a/its/core-it-suite/src/test/resources/mng-4365/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-4365/pom.xml
@@ -27,7 +27,7 @@ under the License.
0.1
jar
- Maven Integration Test :: MNG-4365
+ Maven Integration Test :: MNG-4365
Test that the POM parser doesn't choke on attribute values that contain entities which resolve to markup.
diff --git a/its/core-it-suite/src/test/resources/mng-4461/pom.xml b/its/core-it-suite/src/test/resources/mng-4461/pom.xml
index a824fbc3f1..ec8837f1e2 100644
--- a/its/core-it-suite/src/test/resources/mng-4461/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-4461/pom.xml
@@ -27,7 +27,7 @@ under the License.
1.0
jar
- Maven Integration Test :: MNG-4461
+ Maven Integration Test :: MNG-4461
Test that deployment of an artifact gets logged via the transfer monitor.
diff --git a/its/core-it-suite/src/test/resources/mng-4470/release/pom.xml b/its/core-it-suite/src/test/resources/mng-4470/release/pom.xml
index 46668204c0..a8851717e1 100644
--- a/its/core-it-suite/src/test/resources/mng-4470/release/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-4470/release/pom.xml
@@ -27,7 +27,7 @@ under the License.
1.0
jar
- Maven Integration Test :: MNG-4470
+ Maven Integration Test :: MNG-4470
Test that deployment (of a release) to a proxy that requires authentication works.
diff --git a/its/core-it-suite/src/test/resources/mng-4470/snapshot/pom.xml b/its/core-it-suite/src/test/resources/mng-4470/snapshot/pom.xml
index c1904f8d7a..068ce2d5d5 100644
--- a/its/core-it-suite/src/test/resources/mng-4470/snapshot/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-4470/snapshot/pom.xml
@@ -27,7 +27,7 @@ under the License.
1.0-SNAPSHOT
jar
- Maven Integration Test :: MNG-4470
+ Maven Integration Test :: MNG-4470
Test that deployment (of a snapshot) to a proxy that requires authentication works.
diff --git a/its/core-it-suite/src/test/resources/mng-4474/pom.xml b/its/core-it-suite/src/test/resources/mng-4474/pom.xml
index 8af597cb04..424b4be32e 100644
--- a/its/core-it-suite/src/test/resources/mng-4474/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-4474/pom.xml
@@ -27,7 +27,7 @@ under the License.
1.0
jar
- Maven Integration Test :: MNG-4474
+ Maven Integration Test :: MNG-4474
Verify that the wagon manager does not erroneously cache/reuse wagon instances that use per-lookup instantiation.
diff --git a/its/core-it-suite/src/test/resources/mng-4633/subproject1/src/main/java/mng4633/AClass.java b/its/core-it-suite/src/test/resources/mng-4633/subproject1/src/main/java/mng4633/AClass.java
index 482b40e9b6..14641a7847 100644
--- a/its/core-it-suite/src/test/resources/mng-4633/subproject1/src/main/java/mng4633/AClass.java
+++ b/its/core-it-suite/src/test/resources/mng-4633/subproject1/src/main/java/mng4633/AClass.java
@@ -1,5 +1,5 @@
package mng4633;
public class AClass {
-
+
}
\ No newline at end of file
diff --git a/its/core-it-suite/src/test/resources/mng-4633/subproject2/src/main/java/mng4633/BClass.java b/its/core-it-suite/src/test/resources/mng-4633/subproject2/src/main/java/mng4633/BClass.java
index dfc7297191..8875e1c87b 100644
--- a/its/core-it-suite/src/test/resources/mng-4633/subproject2/src/main/java/mng4633/BClass.java
+++ b/its/core-it-suite/src/test/resources/mng-4633/subproject2/src/main/java/mng4633/BClass.java
@@ -3,5 +3,5 @@ package mng4633;
import mng4633.AClass;
public class BClass {
-
+
}
\ No newline at end of file
diff --git a/its/core-it-suite/src/test/resources/mng-4654/pom.xml b/its/core-it-suite/src/test/resources/mng-4654/pom.xml
index fee002d69a..2a3e59e70e 100644
--- a/its/core-it-suite/src/test/resources/mng-4654/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-4654/pom.xml
@@ -27,7 +27,7 @@ under the License.
1.0
mng4654
- Maven Integration Test :: MNG-4654
+ Maven Integration Test :: MNG-4654
Test that the artifact handler for the project main artifact is selected via the handler's type/roleHint
and not via the handler's packaging (the packaging only applies to the legacy repo layout).
diff --git a/its/core-it-suite/src/test/resources/mng-4745/pom.xml b/its/core-it-suite/src/test/resources/mng-4745/pom.xml
index 19c59735dc..810a3f7c67 100644
--- a/its/core-it-suite/src/test/resources/mng-4745/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-4745/pom.xml
@@ -26,7 +26,7 @@ under the License.
test
1.0
- Maven Integration Test :: MNG-4745
+ Maven Integration Test :: MNG-4745
Verify that checks for plugin updates can be controlled via repository update policy and command line (-U).
diff --git a/its/core-it-suite/src/test/resources/mng-4755/dependency/pom.xml b/its/core-it-suite/src/test/resources/mng-4755/dependency/pom.xml
index 9f11990bca..4f8a47011d 100644
--- a/its/core-it-suite/src/test/resources/mng-4755/dependency/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-4755/dependency/pom.xml
@@ -27,7 +27,7 @@ under the License.
2
jar
- Maven Integration Test :: MNG-4755
+ Maven Integration Test :: MNG-4755
Verify that locally installed artifacts don't suppress fetching of g:a-level remote metadata which is required
to locate alternative version (as required by version ranges).
diff --git a/its/core-it-suite/src/test/resources/mng-4755/test/pom.xml b/its/core-it-suite/src/test/resources/mng-4755/test/pom.xml
index 9a23e630d6..8edf6ec104 100644
--- a/its/core-it-suite/src/test/resources/mng-4755/test/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-4755/test/pom.xml
@@ -27,7 +27,7 @@ under the License.
0.1-SNAPSHOT
jar
- Maven Integration Test :: MNG-4755
+ Maven Integration Test :: MNG-4755
Verify that locally installed artifacts don't suppress fetching of g:a-level remote metadata which is required
to locate alternative version (as required by version ranges).
diff --git a/its/core-it-suite/src/test/resources/mng-4761/pom.xml b/its/core-it-suite/src/test/resources/mng-4761/pom.xml
index 0523209936..adbc88cf00 100644
--- a/its/core-it-suite/src/test/resources/mng-4761/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-4761/pom.xml
@@ -2,7 +2,7 @@
4.0.0
-
+
org.apache.maven.its.mng4761
mng4761
0.1
@@ -22,7 +22,7 @@
0.1
-
+
test-run
diff --git a/its/core-it-suite/src/test/resources/mng-4761/repo/org/apache/maven/its/mng4761/deps/0.1/deps-0.1.pom b/its/core-it-suite/src/test/resources/mng-4761/repo/org/apache/maven/its/mng4761/deps/0.1/deps-0.1.pom
index e168c6e2c0..478d40c382 100644
--- a/its/core-it-suite/src/test/resources/mng-4761/repo/org/apache/maven/its/mng4761/deps/0.1/deps-0.1.pom
+++ b/its/core-it-suite/src/test/resources/mng-4761/repo/org/apache/maven/its/mng4761/deps/0.1/deps-0.1.pom
@@ -1,16 +1,16 @@
4.0.0
-
+
org.apache.maven.its.mng4761
parent
0.1
-
+
deps
pom
-
+
required-dep
middle-dep-0.1
@@ -18,5 +18,5 @@
direct-dep
override-dep
-
+
\ No newline at end of file
diff --git a/its/core-it-suite/src/test/resources/mng-4761/repo/org/apache/maven/its/mng4761/direct-dep/0.1/direct-dep-0.1.pom b/its/core-it-suite/src/test/resources/mng-4761/repo/org/apache/maven/its/mng4761/direct-dep/0.1/direct-dep-0.1.pom
index 3c93042173..1ba5e87cd4 100644
--- a/its/core-it-suite/src/test/resources/mng-4761/repo/org/apache/maven/its/mng4761/direct-dep/0.1/direct-dep-0.1.pom
+++ b/its/core-it-suite/src/test/resources/mng-4761/repo/org/apache/maven/its/mng4761/direct-dep/0.1/direct-dep-0.1.pom
@@ -14,7 +14,7 @@
UTF-8
-
+
org.apache.maven.its.mng4761
@@ -33,7 +33,7 @@
test
-
+
diff --git a/its/core-it-suite/src/test/resources/mng-4761/repo/org/apache/maven/its/mng4761/maven-mng4761-plugin/0.1/maven-mng4761-plugin-0.1.pom b/its/core-it-suite/src/test/resources/mng-4761/repo/org/apache/maven/its/mng4761/maven-mng4761-plugin/0.1/maven-mng4761-plugin-0.1.pom
index 87b9f24fca..2f1b027c64 100644
--- a/its/core-it-suite/src/test/resources/mng-4761/repo/org/apache/maven/its/mng4761/maven-mng4761-plugin/0.1/maven-mng4761-plugin-0.1.pom
+++ b/its/core-it-suite/src/test/resources/mng-4761/repo/org/apache/maven/its/mng4761/maven-mng4761-plugin/0.1/maven-mng4761-plugin-0.1.pom
@@ -7,7 +7,7 @@
parent
0.1
-
+
maven-mng4761-plugin
maven-plugin
diff --git a/its/core-it-suite/src/test/resources/mng-4761/repo/org/apache/maven/its/mng4761/middle-dep/0.1/middle-dep-0.1.pom b/its/core-it-suite/src/test/resources/mng-4761/repo/org/apache/maven/its/mng4761/middle-dep/0.1/middle-dep-0.1.pom
index a5a6357ae9..3fcb8acd2b 100644
--- a/its/core-it-suite/src/test/resources/mng-4761/repo/org/apache/maven/its/mng4761/middle-dep/0.1/middle-dep-0.1.pom
+++ b/its/core-it-suite/src/test/resources/mng-4761/repo/org/apache/maven/its/mng4761/middle-dep/0.1/middle-dep-0.1.pom
@@ -10,7 +10,7 @@
middle-dep
middle-dep
-
+
UTF-8
@@ -27,7 +27,7 @@
test
-
+
diff --git a/its/core-it-suite/src/test/resources/mng-4761/repo/org/apache/maven/its/mng4761/middle-dep/0.2/middle-dep-0.2.pom b/its/core-it-suite/src/test/resources/mng-4761/repo/org/apache/maven/its/mng4761/middle-dep/0.2/middle-dep-0.2.pom
index 76b8b63d6a..79295132d7 100644
--- a/its/core-it-suite/src/test/resources/mng-4761/repo/org/apache/maven/its/mng4761/middle-dep/0.2/middle-dep-0.2.pom
+++ b/its/core-it-suite/src/test/resources/mng-4761/repo/org/apache/maven/its/mng4761/middle-dep/0.2/middle-dep-0.2.pom
@@ -15,7 +15,7 @@
UTF-8
-
+
junit
@@ -24,7 +24,7 @@
test
-
+
diff --git a/its/core-it-suite/src/test/resources/mng-4761/repo/org/apache/maven/its/mng4761/override-dep/0.1/override-dep-0.1.pom b/its/core-it-suite/src/test/resources/mng-4761/repo/org/apache/maven/its/mng4761/override-dep/0.1/override-dep-0.1.pom
index cb97b7214e..aa277fe95e 100644
--- a/its/core-it-suite/src/test/resources/mng-4761/repo/org/apache/maven/its/mng4761/override-dep/0.1/override-dep-0.1.pom
+++ b/its/core-it-suite/src/test/resources/mng-4761/repo/org/apache/maven/its/mng4761/override-dep/0.1/override-dep-0.1.pom
@@ -14,7 +14,7 @@
UTF-8
-
+
org.apache.maven.its.mng4761
@@ -28,7 +28,7 @@
test
-
+
diff --git a/its/core-it-suite/src/test/resources/mng-4761/repo/org/apache/maven/its/mng4761/parent/0.1/parent-0.1.pom b/its/core-it-suite/src/test/resources/mng-4761/repo/org/apache/maven/its/mng4761/parent/0.1/parent-0.1.pom
index 2df3a79033..2915e10adb 100644
--- a/its/core-it-suite/src/test/resources/mng-4761/repo/org/apache/maven/its/mng4761/parent/0.1/parent-0.1.pom
+++ b/its/core-it-suite/src/test/resources/mng-4761/repo/org/apache/maven/its/mng4761/parent/0.1/parent-0.1.pom
@@ -5,19 +5,19 @@
parent
0.1
pom
-
+
plugin
deps
-
+
test-repo
file:///Users/jdcasey/temp/testbed/obscured-nearer-dep/repo
-
+
diff --git a/its/core-it-suite/src/test/resources/mng-4761/repo/org/apache/maven/its/mng4761/required-dep/0.1/required-dep-0.1.pom b/its/core-it-suite/src/test/resources/mng-4761/repo/org/apache/maven/its/mng4761/required-dep/0.1/required-dep-0.1.pom
index 28516624f0..0e1b9e625a 100644
--- a/its/core-it-suite/src/test/resources/mng-4761/repo/org/apache/maven/its/mng4761/required-dep/0.1/required-dep-0.1.pom
+++ b/its/core-it-suite/src/test/resources/mng-4761/repo/org/apache/maven/its/mng4761/required-dep/0.1/required-dep-0.1.pom
@@ -14,7 +14,7 @@
UTF-8
-
+
junit
@@ -23,7 +23,7 @@
test
-
+
diff --git a/its/core-it-suite/src/test/resources/mng-4761/settings-template.xml b/its/core-it-suite/src/test/resources/mng-4761/settings-template.xml
index b5c0ef90f4..e202574a1f 100644
--- a/its/core-it-suite/src/test/resources/mng-4761/settings-template.xml
+++ b/its/core-it-suite/src/test/resources/mng-4761/settings-template.xml
@@ -1,9 +1,9 @@
-
-
+
local-profile
@@ -33,9 +33,9 @@
-
+
local-profile
-
+
diff --git a/its/core-it-suite/src/test/resources/mng-4779/a/pom.xml b/its/core-it-suite/src/test/resources/mng-4779/a/pom.xml
index d0c2dc4c98..e05f869694 100644
--- a/its/core-it-suite/src/test/resources/mng-4779/a/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-4779/a/pom.xml
@@ -27,7 +27,7 @@ under the License.
1.0
jar
- Maven Integration Test :: MNG-4779 :: A
+ Maven Integration Test :: MNG-4779 :: A
Test that dependency resolution doesn't error out when a dependency with a range satisfied from the local repo
is seen more than once during the collection.
diff --git a/its/core-it-suite/src/test/resources/mng-4779/b/pom.xml b/its/core-it-suite/src/test/resources/mng-4779/b/pom.xml
index 12f2ea3d55..3aad237907 100644
--- a/its/core-it-suite/src/test/resources/mng-4779/b/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-4779/b/pom.xml
@@ -27,7 +27,7 @@ under the License.
1.0
jar
- Maven Integration Test :: MNG-4779 :: B
+ Maven Integration Test :: MNG-4779 :: B
Test that dependency resolution doesn't error out when a dependency with a range satisfied from the local repo
is seen more than once during the collection.
diff --git a/its/core-it-suite/src/test/resources/mng-4779/c/pom.xml b/its/core-it-suite/src/test/resources/mng-4779/c/pom.xml
index 6a8c81d3ea..f34db63b94 100644
--- a/its/core-it-suite/src/test/resources/mng-4779/c/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-4779/c/pom.xml
@@ -27,7 +27,7 @@ under the License.
1.0
jar
- Maven Integration Test :: MNG-4779 :: C
+ Maven Integration Test :: MNG-4779 :: C
Test that dependency resolution doesn't error out when a dependency with a range satisfied from the local repo
is seen more than once during the collection.
diff --git a/its/core-it-suite/src/test/resources/mng-4779/pom.xml b/its/core-it-suite/src/test/resources/mng-4779/pom.xml
index 574d1ce710..8f87716bda 100644
--- a/its/core-it-suite/src/test/resources/mng-4779/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-4779/pom.xml
@@ -27,7 +27,7 @@ under the License.
1.0
pom
- Maven Integration Test :: MNG-4779 :: Aggregator
+ Maven Integration Test :: MNG-4779 :: Aggregator
Test that dependency resolution doesn't error out when a dependency with a range satisfied from the local repo
is seen more than once during the collection.
diff --git a/its/core-it-suite/src/test/resources/mng-4779/test/pom.xml b/its/core-it-suite/src/test/resources/mng-4779/test/pom.xml
index d1d426d0dd..32af64fd3d 100644
--- a/its/core-it-suite/src/test/resources/mng-4779/test/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-4779/test/pom.xml
@@ -27,7 +27,7 @@ under the License.
1.0
jar
- Maven Integration Test :: MNG-4779 :: Test
+ Maven Integration Test :: MNG-4779 :: Test
Test that dependency resolution doesn't error out when a dependency with a range satisfied from the local repo
is seen more than once during the collection.
diff --git a/its/core-it-suite/src/test/resources/mng-4781/pom.xml b/its/core-it-suite/src/test/resources/mng-4781/pom.xml
index 6ae377e1d7..cb534d0d8d 100644
--- a/its/core-it-suite/src/test/resources/mng-4781/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-4781/pom.xml
@@ -27,7 +27,7 @@ under the License.
1.0
jar
- Maven Integration Test :: MNG-4781
+ Maven Integration Test :: MNG-4781
Verify that deployment to a Nexus-like staging repository works. The subtle difference compared to an ordinary
HTTP/WebDAV server is that those staging repos yield a HTTP 400 (and not 404) for every GET request until a
diff --git a/its/core-it-suite/src/test/resources/mng-4811/pom.xml b/its/core-it-suite/src/test/resources/mng-4811/pom.xml
index 46346cf8eb..35e6f269fc 100644
--- a/its/core-it-suite/src/test/resources/mng-4811/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-4811/pom.xml
@@ -26,7 +26,7 @@ under the License.
test
1
- Maven Integration Test :: MNG-4811
+ Maven Integration Test :: MNG-4811
Verify that plugins can use custom component configurators.
diff --git a/its/core-it-suite/src/test/resources/mng-4874/pom.xml b/its/core-it-suite/src/test/resources/mng-4874/pom.xml
index 0dc1e12721..3d11939fc7 100644
--- a/its/core-it-suite/src/test/resources/mng-4874/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-4874/pom.xml
@@ -27,7 +27,7 @@ under the License.
0.1-SNAPSHOT
maven-plugin
- Maven Integration Test :: MNG-4874
+ Maven Integration Test :: MNG-4874
Verify that deployment of a plugin updates the metadata's "latest" field.
diff --git a/its/core-it-suite/src/test/resources/mng-4877/pom.xml b/its/core-it-suite/src/test/resources/mng-4877/pom.xml
index 36adbe6aee..3654f5310d 100644
--- a/its/core-it-suite/src/test/resources/mng-4877/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-4877/pom.xml
@@ -27,7 +27,7 @@ under the License.
0.1
jar
- Maven Integration Test :: MNG-4877
+ Maven Integration Test :: MNG-4877
Verify that configured private key and passphrase are used for (SSH) deployment.
diff --git a/its/core-it-suite/src/test/resources/mng-4919/pom.xml b/its/core-it-suite/src/test/resources/mng-4919/pom.xml
index 1d539d35ff..7fdd7c4433 100644
--- a/its/core-it-suite/src/test/resources/mng-4919/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-4919/pom.xml
@@ -27,7 +27,7 @@ under the License.
0.1
same-goal-twice
- Maven Integration Test :: MNG-4919
+ Maven Integration Test :: MNG-4919
Verify that lifecycle mappings can bind a goal twice, say in different phases.
diff --git a/its/core-it-suite/src/test/resources/mng-4952/pom-template.xml b/its/core-it-suite/src/test/resources/mng-4952/pom-template.xml
index 9fbc407873..6704ba2ab9 100644
--- a/its/core-it-suite/src/test/resources/mng-4952/pom-template.xml
+++ b/its/core-it-suite/src/test/resources/mng-4952/pom-template.xml
@@ -27,7 +27,7 @@ under the License.
@version@
jar
- Maven Integration Test :: MNG-4952
+ Maven Integration Test :: MNG-4952
Verify that the metadata's RELEASE field gets updated upon deployment of a new version.
diff --git a/its/core-it-suite/src/test/resources/mng-4966/pom.xml b/its/core-it-suite/src/test/resources/mng-4966/pom.xml
index 3527a34bc9..eb4bd41381 100644
--- a/its/core-it-suite/src/test/resources/mng-4966/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-4966/pom.xml
@@ -26,7 +26,7 @@ under the License.
test
1.0
- Maven Integration Test :: MNG-4966
+ Maven Integration Test :: MNG-4966
Verify that URLs in the effective model retain successive slashes which are significant in certain domains.
diff --git a/its/core-it-suite/src/test/resources/mng-4975/pom.xml b/its/core-it-suite/src/test/resources/mng-4975/pom.xml
index 5624c42192..8b71276ac8 100644
--- a/its/core-it-suite/src/test/resources/mng-4975/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-4975/pom.xml
@@ -27,7 +27,7 @@ under the License.
0.1
pom
- Maven Integration Test :: MNG-4975
+ Maven Integration Test :: MNG-4975
Test that plugin executions (in the same phase) are properly ordered after profile injection.
diff --git a/its/core-it-suite/src/test/resources/mng-4992/pom.xml b/its/core-it-suite/src/test/resources/mng-4992/pom.xml
index cc468758e8..5f8ceb3712 100644
--- a/its/core-it-suite/src/test/resources/mng-4992/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-4992/pom.xml
@@ -26,7 +26,7 @@ under the License.
test
1
- Maven Integration Test :: MNG-4992
+ Maven Integration Test :: MNG-4992
Verify that plugin parameters of type java.util.Properties can be configured like any other Map-style parameter.
diff --git a/its/core-it-suite/src/test/resources/mng-5009/pom-2.xml b/its/core-it-suite/src/test/resources/mng-5009/pom-2.xml
index a0d560db79..25dfead7a7 100644
--- a/its/core-it-suite/src/test/resources/mng-5009/pom-2.xml
+++ b/its/core-it-suite/src/test/resources/mng-5009/pom-2.xml
@@ -27,7 +27,7 @@ under the License.
1
pom
- Maven Integration Test :: MNG-5009 :: Child
+ Maven Integration Test :: MNG-5009 :: Child
Verify that aggregators POMs forming a cycle fail gracefully with a proper error message.
diff --git a/its/core-it-suite/src/test/resources/mng-5009/pom.xml b/its/core-it-suite/src/test/resources/mng-5009/pom.xml
index 814a866a8a..b66e3094d1 100644
--- a/its/core-it-suite/src/test/resources/mng-5009/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-5009/pom.xml
@@ -27,7 +27,7 @@ under the License.
1
pom
- Maven Integration Test :: MNG-5009
+ Maven Integration Test :: MNG-5009
Verify that aggregators POMs forming a cycle fail gracefully with a proper error message.
diff --git a/its/core-it-suite/src/test/resources/mng-5011/pom.xml b/its/core-it-suite/src/test/resources/mng-5011/pom.xml
index 8a52aa4dcd..01688bb5c6 100644
--- a/its/core-it-suite/src/test/resources/mng-5011/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-5011/pom.xml
@@ -26,7 +26,7 @@ under the License.
test
1
- Maven Integration Test :: MNG-5011
+ Maven Integration Test :: MNG-5011
Verify that plugin parameters of type array/collection can be configured using system properties from the CLI.
diff --git a/its/core-it-suite/src/test/resources/mng-5012/pom.xml b/its/core-it-suite/src/test/resources/mng-5012/pom.xml
index 1cbd6238d1..7cc23d7f61 100644
--- a/its/core-it-suite/src/test/resources/mng-5012/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-5012/pom.xml
@@ -26,7 +26,7 @@ under the License.
test
1
- Maven Integration Test :: MNG-5012
+ Maven Integration Test :: MNG-5012
Verify that plugin parameters of type array/collection can be configured from expressions/defaults that
actually resolve to a collection/array.
diff --git a/its/core-it-suite/src/test/resources/mng-5013/pom.xml b/its/core-it-suite/src/test/resources/mng-5013/pom.xml
index 856bf5da53..eaf745d5b4 100644
--- a/its/core-it-suite/src/test/resources/mng-5013/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-5013/pom.xml
@@ -26,7 +26,7 @@ under the License.
test
1
- Maven Integration Test :: MNG-5013
+ Maven Integration Test :: MNG-5013
Verify that plugin parameter beans can be configured from a single value.
diff --git a/its/core-it-suite/src/test/resources/mng-5175/settings-template.xml b/its/core-it-suite/src/test/resources/mng-5175/settings-template.xml
index c942cdc15c..5e4f67cbd5 100644
--- a/its/core-it-suite/src/test/resources/mng-5175/settings-template.xml
+++ b/its/core-it-suite/src/test/resources/mng-5175/settings-template.xml
@@ -20,4 +20,4 @@
-
+
diff --git a/its/core-it-suite/src/test/resources/mng-5207/application/pom.xml b/its/core-it-suite/src/test/resources/mng-5207/application/pom.xml
index fc65b337b6..78ab4e9fca 100755
--- a/its/core-it-suite/src/test/resources/mng-5207/application/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-5207/application/pom.xml
@@ -15,12 +15,12 @@
jar
Issue Application
-
+
bugs.maven.issue
delegate
-
+
diff --git a/its/core-it-suite/src/test/resources/mng-5207/delegate/pom.xml b/its/core-it-suite/src/test/resources/mng-5207/delegate/pom.xml
index 4aceaede6e..4840108a46 100755
--- a/its/core-it-suite/src/test/resources/mng-5207/delegate/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-5207/delegate/pom.xml
@@ -15,7 +15,7 @@
jar
Issue EJB Delegate
-
+
bugs.maven.issue
@@ -24,5 +24,5 @@
ejb-client
-
+
diff --git a/its/core-it-suite/src/test/resources/mng-5207/ejb/pom.xml b/its/core-it-suite/src/test/resources/mng-5207/ejb/pom.xml
index 56168e7e46..a684defb45 100755
--- a/its/core-it-suite/src/test/resources/mng-5207/ejb/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-5207/ejb/pom.xml
@@ -15,7 +15,7 @@
ejb
Issue EJB
-
+
@@ -32,12 +32,12 @@
-
+
commons-lang
commons-lang
-
+
diff --git a/its/core-it-suite/src/test/resources/mng-5207/pom.xml b/its/core-it-suite/src/test/resources/mng-5207/pom.xml
index cb48175e20..cd8ca2c92b 100755
--- a/its/core-it-suite/src/test/resources/mng-5207/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-5207/pom.xml
@@ -10,7 +10,7 @@
pom
Builder for Issue
x-SNAPSHOT
-
+
application
delegate
diff --git a/its/core-it-suite/src/test/resources/mng-5207/prepare/delegate-1.pom b/its/core-it-suite/src/test/resources/mng-5207/prepare/delegate-1.pom
index 0ba4151d7f..44429b2cf1 100755
--- a/its/core-it-suite/src/test/resources/mng-5207/prepare/delegate-1.pom
+++ b/its/core-it-suite/src/test/resources/mng-5207/prepare/delegate-1.pom
@@ -15,7 +15,7 @@
jar
Issue EJB Delegate
-
+
bugs.maven.issue
@@ -24,5 +24,5 @@
ejb-client
-
+
diff --git a/its/core-it-suite/src/test/resources/mng-5207/prepare/ejb-1.pom b/its/core-it-suite/src/test/resources/mng-5207/prepare/ejb-1.pom
index 1a056d94f8..7c5703595d 100755
--- a/its/core-it-suite/src/test/resources/mng-5207/prepare/ejb-1.pom
+++ b/its/core-it-suite/src/test/resources/mng-5207/prepare/ejb-1.pom
@@ -15,7 +15,7 @@
ejb
Issue EJB
-
+
@@ -32,12 +32,12 @@
-
+
commons-lang
commons-lang
-
+
diff --git a/its/core-it-suite/src/test/resources/mng-5214/consumer/pom.xml b/its/core-it-suite/src/test/resources/mng-5214/consumer/pom.xml
index 770f634876..3008959760 100644
--- a/its/core-it-suite/src/test/resources/mng-5214/consumer/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-5214/consumer/pom.xml
@@ -30,7 +30,7 @@ under the License.
consumer
- Maven Integration Test :: MNG-5214 :: Consumer
+ Maven Integration Test :: MNG-5214 :: Consumer
Test that a dependency on a type other than jar/test-jar/ejb is not mapped to target/classes.
diff --git a/its/core-it-suite/src/test/resources/mng-5214/dependency/pom.xml b/its/core-it-suite/src/test/resources/mng-5214/dependency/pom.xml
index 6b947df03f..b61243b158 100644
--- a/its/core-it-suite/src/test/resources/mng-5214/dependency/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-5214/dependency/pom.xml
@@ -27,10 +27,10 @@ under the License.
parent
1.0-SNAPSHOT
-
+
dependency
- Maven Integration Test :: MNG-5214 :: Dependency
+ Maven Integration Test :: MNG-5214 :: Dependency
A very dull project, which exists only so that its g:a:v is in the reactor.
diff --git a/its/core-it-suite/src/test/resources/mng-5214/pom.xml b/its/core-it-suite/src/test/resources/mng-5214/pom.xml
index 975c891ed4..6ba3cce112 100644
--- a/its/core-it-suite/src/test/resources/mng-5214/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-5214/pom.xml
@@ -27,14 +27,14 @@ under the License.
1.0-SNAPSHOT
pom
- Maven Integration Test :: MNG-5214
+ Maven Integration Test :: MNG-5214
- Test that a dependency with a type other than jar, test-jar, or ejb-client
- *not* get assigned a reactor path (target/classes, e.g.) just
+ Test that a dependency with a type other than jar, test-jar, or ejb-client
+ *not* get assigned a reactor path (target/classes, e.g.) just
because the corresponding 'jar'
artifact is in the reactor.
-
+
dependency
consumer
diff --git a/its/core-it-suite/src/test/resources/mng-5224/settings.xml b/its/core-it-suite/src/test/resources/mng-5224/settings.xml
index 92507b212e..f0338aa3b6 100644
--- a/its/core-it-suite/src/test/resources/mng-5224/settings.xml
+++ b/its/core-it-suite/src/test/resources/mng-5224/settings.xml
@@ -24,4 +24,4 @@
-
+
diff --git a/its/core-it-suite/src/test/resources/mng-5338/project/src/main/java/org/apache/maven/its/mng5338/App.java b/its/core-it-suite/src/test/resources/mng-5338/project/src/main/java/org/apache/maven/its/mng5338/App.java
index fd3f646a63..5329396220 100644
--- a/its/core-it-suite/src/test/resources/mng-5338/project/src/main/java/org/apache/maven/its/mng5338/App.java
+++ b/its/core-it-suite/src/test/resources/mng-5338/project/src/main/java/org/apache/maven/its/mng5338/App.java
@@ -23,7 +23,7 @@ package org.apache.maven.its.mng5338;
* Hello world!
*
*/
-public class App
+public class App
{
public static void main( String[] args )
{
diff --git a/its/core-it-suite/src/test/resources/mng-5338/project/src/test/java/org/apache/maven/its/mng5338/AppTest.java b/its/core-it-suite/src/test/resources/mng-5338/project/src/test/java/org/apache/maven/its/mng5338/AppTest.java
index cb900006d5..97dbd726a2 100644
--- a/its/core-it-suite/src/test/resources/mng-5338/project/src/test/java/org/apache/maven/its/mng5338/AppTest.java
+++ b/its/core-it-suite/src/test/resources/mng-5338/project/src/test/java/org/apache/maven/its/mng5338/AppTest.java
@@ -7,7 +7,7 @@ import junit.framework.TestSuite;
/**
* Unit test for simple App.
*/
-public class AppTest
+public class AppTest
extends TestCase
{
/**
diff --git a/its/core-it-suite/src/test/resources/mng-5452-maven-build-timestamp-utc/pom.xml b/its/core-it-suite/src/test/resources/mng-5452-maven-build-timestamp-utc/pom.xml
index dff880207b..ab7b988ebf 100644
--- a/its/core-it-suite/src/test/resources/mng-5452-maven-build-timestamp-utc/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-5452-maven-build-timestamp-utc/pom.xml
@@ -12,7 +12,7 @@
src/main/resources
true
-
+
\ No newline at end of file
diff --git a/its/core-it-suite/src/test/resources/mng-5482/plugin-dependency/pom.xml b/its/core-it-suite/src/test/resources/mng-5482/plugin-dependency/pom.xml
index 405f507bac..795b60ad00 100644
--- a/its/core-it-suite/src/test/resources/mng-5482/plugin-dependency/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-5482/plugin-dependency/pom.xml
@@ -5,7 +5,7 @@
mng-5482-plugin-site
1
pom
-
+
diff --git a/its/core-it-suite/src/test/resources/mng-5482/plugin-site/pom.xml b/its/core-it-suite/src/test/resources/mng-5482/plugin-site/pom.xml
index 84485d1141..c0c8efa9cb 100644
--- a/its/core-it-suite/src/test/resources/mng-5482/plugin-site/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-5482/plugin-site/pom.xml
@@ -5,7 +5,7 @@
mng-5482-plugin-site
1
pom
-
+
diff --git a/its/core-it-suite/src/test/resources/mng-5482/report-mpir/pom.xml b/its/core-it-suite/src/test/resources/mng-5482/report-mpir/pom.xml
index f4a3a0c055..35b2882234 100644
--- a/its/core-it-suite/src/test/resources/mng-5482/report-mpir/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-5482/report-mpir/pom.xml
@@ -5,7 +5,7 @@
mng-5482-plugin-site
1
pom
-
+
diff --git a/its/core-it-suite/src/test/resources/mng-5530-mojo-execution-scope/extension/src/main/java/org/apache/maven/its/mng5530/mojoexecutionscope/extension/TestClassRealmManagerDelegate.java b/its/core-it-suite/src/test/resources/mng-5530-mojo-execution-scope/extension/src/main/java/org/apache/maven/its/mng5530/mojoexecutionscope/extension/TestClassRealmManagerDelegate.java
index 979e6b681d..85afce2a0c 100644
--- a/its/core-it-suite/src/test/resources/mng-5530-mojo-execution-scope/extension/src/main/java/org/apache/maven/its/mng5530/mojoexecutionscope/extension/TestClassRealmManagerDelegate.java
+++ b/its/core-it-suite/src/test/resources/mng-5530-mojo-execution-scope/extension/src/main/java/org/apache/maven/its/mng5530/mojoexecutionscope/extension/TestClassRealmManagerDelegate.java
@@ -6,9 +6,9 @@ package org.apache.maven.its.mng5530.mojoexecutionscope.extension;
* copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance with the License. You may obtain a
* copy of the License at
- *
+ *
* http://www.apache.org/licenses/LICENSE-2.0
- *
+ *
* Unless required by applicable law or agreed to in writing, software distributed under the License
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
* or implied. See the License for the specific language governing permissions and limitations under
diff --git a/its/core-it-suite/src/test/resources/mng-5530-mojo-execution-scope/extension/src/main/java/org/apache/maven/its/mng5530/mojoexecutionscope/extension/TestMojoExecutionScopedComponent.java b/its/core-it-suite/src/test/resources/mng-5530-mojo-execution-scope/extension/src/main/java/org/apache/maven/its/mng5530/mojoexecutionscope/extension/TestMojoExecutionScopedComponent.java
index b2c6b56ad1..fe18413cdb 100644
--- a/its/core-it-suite/src/test/resources/mng-5530-mojo-execution-scope/extension/src/main/java/org/apache/maven/its/mng5530/mojoexecutionscope/extension/TestMojoExecutionScopedComponent.java
+++ b/its/core-it-suite/src/test/resources/mng-5530-mojo-execution-scope/extension/src/main/java/org/apache/maven/its/mng5530/mojoexecutionscope/extension/TestMojoExecutionScopedComponent.java
@@ -6,9 +6,9 @@ package org.apache.maven.its.mng5530.mojoexecutionscope.extension;
* copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance with the License. You may obtain a
* copy of the License at
- *
+ *
* http://www.apache.org/licenses/LICENSE-2.0
- *
+ *
* Unless required by applicable law or agreed to in writing, software distributed under the License
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
* or implied. See the License for the specific language governing permissions and limitations under
diff --git a/its/core-it-suite/src/test/resources/mng-5557-properly-restricted-reactor/project-0/src/main/java/org/apache/maven/its/mng5557/App.java b/its/core-it-suite/src/test/resources/mng-5557-properly-restricted-reactor/project-0/src/main/java/org/apache/maven/its/mng5557/App.java
index 727deafc71..ea407a7709 100644
--- a/its/core-it-suite/src/test/resources/mng-5557-properly-restricted-reactor/project-0/src/main/java/org/apache/maven/its/mng5557/App.java
+++ b/its/core-it-suite/src/test/resources/mng-5557-properly-restricted-reactor/project-0/src/main/java/org/apache/maven/its/mng5557/App.java
@@ -4,7 +4,7 @@ package org.apache.maven.its.mng5557;
* Hello world!
*
*/
-public class App
+public class App
{
public static void main( String[] args )
{
diff --git a/its/core-it-suite/src/test/resources/mng-5557-properly-restricted-reactor/project-0/src/test/java/org/apache/maven/its/mng5557/AppTest.java b/its/core-it-suite/src/test/resources/mng-5557-properly-restricted-reactor/project-0/src/test/java/org/apache/maven/its/mng5557/AppTest.java
index 422f488c66..231ccdc2a6 100644
--- a/its/core-it-suite/src/test/resources/mng-5557-properly-restricted-reactor/project-0/src/test/java/org/apache/maven/its/mng5557/AppTest.java
+++ b/its/core-it-suite/src/test/resources/mng-5557-properly-restricted-reactor/project-0/src/test/java/org/apache/maven/its/mng5557/AppTest.java
@@ -7,7 +7,7 @@ import junit.framework.TestSuite;
/**
* Unit test for simple App.
*/
-public class AppTest
+public class AppTest
extends TestCase
{
/**
diff --git a/its/core-it-suite/src/test/resources/mng-5557-properly-restricted-reactor/project-1/src/main/java/org/apache/maven/its/mng5557/App.java b/its/core-it-suite/src/test/resources/mng-5557-properly-restricted-reactor/project-1/src/main/java/org/apache/maven/its/mng5557/App.java
index 727deafc71..ea407a7709 100644
--- a/its/core-it-suite/src/test/resources/mng-5557-properly-restricted-reactor/project-1/src/main/java/org/apache/maven/its/mng5557/App.java
+++ b/its/core-it-suite/src/test/resources/mng-5557-properly-restricted-reactor/project-1/src/main/java/org/apache/maven/its/mng5557/App.java
@@ -4,7 +4,7 @@ package org.apache.maven.its.mng5557;
* Hello world!
*
*/
-public class App
+public class App
{
public static void main( String[] args )
{
diff --git a/its/core-it-suite/src/test/resources/mng-5557-properly-restricted-reactor/project-1/src/test/java/org/apache/maven/its/mng5557/AppTest.java b/its/core-it-suite/src/test/resources/mng-5557-properly-restricted-reactor/project-1/src/test/java/org/apache/maven/its/mng5557/AppTest.java
index 422f488c66..231ccdc2a6 100644
--- a/its/core-it-suite/src/test/resources/mng-5557-properly-restricted-reactor/project-1/src/test/java/org/apache/maven/its/mng5557/AppTest.java
+++ b/its/core-it-suite/src/test/resources/mng-5557-properly-restricted-reactor/project-1/src/test/java/org/apache/maven/its/mng5557/AppTest.java
@@ -7,7 +7,7 @@ import junit.framework.TestSuite;
/**
* Unit test for simple App.
*/
-public class AppTest
+public class AppTest
extends TestCase
{
/**
diff --git a/its/core-it-suite/src/test/resources/mng-5557-properly-restricted-reactor/project-2/src/main/java/org/apache/maven/its/mng5557/App.java b/its/core-it-suite/src/test/resources/mng-5557-properly-restricted-reactor/project-2/src/main/java/org/apache/maven/its/mng5557/App.java
index 727deafc71..ea407a7709 100644
--- a/its/core-it-suite/src/test/resources/mng-5557-properly-restricted-reactor/project-2/src/main/java/org/apache/maven/its/mng5557/App.java
+++ b/its/core-it-suite/src/test/resources/mng-5557-properly-restricted-reactor/project-2/src/main/java/org/apache/maven/its/mng5557/App.java
@@ -4,7 +4,7 @@ package org.apache.maven.its.mng5557;
* Hello world!
*
*/
-public class App
+public class App
{
public static void main( String[] args )
{
diff --git a/its/core-it-suite/src/test/resources/mng-5557-properly-restricted-reactor/project-2/src/test/java/org/apache/maven/its/mng5557/AppTest.java b/its/core-it-suite/src/test/resources/mng-5557-properly-restricted-reactor/project-2/src/test/java/org/apache/maven/its/mng5557/AppTest.java
index 422f488c66..231ccdc2a6 100644
--- a/its/core-it-suite/src/test/resources/mng-5557-properly-restricted-reactor/project-2/src/test/java/org/apache/maven/its/mng5557/AppTest.java
+++ b/its/core-it-suite/src/test/resources/mng-5557-properly-restricted-reactor/project-2/src/test/java/org/apache/maven/its/mng5557/AppTest.java
@@ -7,7 +7,7 @@ import junit.framework.TestSuite;
/**
* Unit test for simple App.
*/
-public class AppTest
+public class AppTest
extends TestCase
{
/**
diff --git a/its/core-it-suite/src/test/resources/mng-5557-properly-restricted-reactor/project-3/src/main/java/org/apache/maven/its/mng5557/App.java b/its/core-it-suite/src/test/resources/mng-5557-properly-restricted-reactor/project-3/src/main/java/org/apache/maven/its/mng5557/App.java
index 727deafc71..ea407a7709 100644
--- a/its/core-it-suite/src/test/resources/mng-5557-properly-restricted-reactor/project-3/src/main/java/org/apache/maven/its/mng5557/App.java
+++ b/its/core-it-suite/src/test/resources/mng-5557-properly-restricted-reactor/project-3/src/main/java/org/apache/maven/its/mng5557/App.java
@@ -4,7 +4,7 @@ package org.apache.maven.its.mng5557;
* Hello world!
*
*/
-public class App
+public class App
{
public static void main( String[] args )
{
diff --git a/its/core-it-suite/src/test/resources/mng-5557-properly-restricted-reactor/project-3/src/test/java/org/apache/maven/its/mng5557/AppTest.java b/its/core-it-suite/src/test/resources/mng-5557-properly-restricted-reactor/project-3/src/test/java/org/apache/maven/its/mng5557/AppTest.java
index 422f488c66..231ccdc2a6 100644
--- a/its/core-it-suite/src/test/resources/mng-5557-properly-restricted-reactor/project-3/src/test/java/org/apache/maven/its/mng5557/AppTest.java
+++ b/its/core-it-suite/src/test/resources/mng-5557-properly-restricted-reactor/project-3/src/test/java/org/apache/maven/its/mng5557/AppTest.java
@@ -7,7 +7,7 @@ import junit.framework.TestSuite;
/**
* Unit test for simple App.
*/
-public class AppTest
+public class AppTest
extends TestCase
{
/**
diff --git a/its/core-it-suite/src/test/resources/mng-5557-properly-restricted-reactor/project-4/src/main/java/org/apache/maven/its/mng5557/App.java b/its/core-it-suite/src/test/resources/mng-5557-properly-restricted-reactor/project-4/src/main/java/org/apache/maven/its/mng5557/App.java
index 727deafc71..ea407a7709 100644
--- a/its/core-it-suite/src/test/resources/mng-5557-properly-restricted-reactor/project-4/src/main/java/org/apache/maven/its/mng5557/App.java
+++ b/its/core-it-suite/src/test/resources/mng-5557-properly-restricted-reactor/project-4/src/main/java/org/apache/maven/its/mng5557/App.java
@@ -4,7 +4,7 @@ package org.apache.maven.its.mng5557;
* Hello world!
*
*/
-public class App
+public class App
{
public static void main( String[] args )
{
diff --git a/its/core-it-suite/src/test/resources/mng-5557-properly-restricted-reactor/project-4/src/test/java/org/apache/maven/its/mng5557/AppTest.java b/its/core-it-suite/src/test/resources/mng-5557-properly-restricted-reactor/project-4/src/test/java/org/apache/maven/its/mng5557/AppTest.java
index 422f488c66..231ccdc2a6 100644
--- a/its/core-it-suite/src/test/resources/mng-5557-properly-restricted-reactor/project-4/src/test/java/org/apache/maven/its/mng5557/AppTest.java
+++ b/its/core-it-suite/src/test/resources/mng-5557-properly-restricted-reactor/project-4/src/test/java/org/apache/maven/its/mng5557/AppTest.java
@@ -7,7 +7,7 @@ import junit.framework.TestSuite;
/**
* Unit test for simple App.
*/
-public class AppTest
+public class AppTest
extends TestCase
{
/**
diff --git a/its/core-it-suite/src/test/resources/mng-5572-reactor-plugin-extensions/plugin/pom.xml b/its/core-it-suite/src/test/resources/mng-5572-reactor-plugin-extensions/plugin/pom.xml
index b99e333163..226db24632 100644
--- a/its/core-it-suite/src/test/resources/mng-5572-reactor-plugin-extensions/plugin/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-5572-reactor-plugin-extensions/plugin/pom.xml
@@ -1,22 +1,22 @@
-
4.0.0
-
+
-
+
org.apache.maven.its.mng5572
plugin
1.0-SNAPSHOT
diff --git a/its/core-it-suite/src/test/resources/mng-5576-cd-friendly-versions/pom.xml b/its/core-it-suite/src/test/resources/mng-5576-cd-friendly-versions/pom.xml
index 979fea0764..42c3160a14 100644
--- a/its/core-it-suite/src/test/resources/mng-5576-cd-friendly-versions/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-5576-cd-friendly-versions/pom.xml
@@ -5,7 +5,7 @@
mng-5576
1.0.0.${changelist}
- Maven Integration Test :: mng-5576
+ Maven Integration Test :: mng-5576
Verifies that property references with dotted notation work within POM interpolation.
diff --git a/its/core-it-suite/src/test/resources/mng-5578-session-scope/extension/src/main/java/org/apache/maven/its/mng5578/sessionscope/extension/TestSessionScopedComponent.java b/its/core-it-suite/src/test/resources/mng-5578-session-scope/extension/src/main/java/org/apache/maven/its/mng5578/sessionscope/extension/TestSessionScopedComponent.java
index b32ea2b647..e575d4197c 100644
--- a/its/core-it-suite/src/test/resources/mng-5578-session-scope/extension/src/main/java/org/apache/maven/its/mng5578/sessionscope/extension/TestSessionScopedComponent.java
+++ b/its/core-it-suite/src/test/resources/mng-5578-session-scope/extension/src/main/java/org/apache/maven/its/mng5578/sessionscope/extension/TestSessionScopedComponent.java
@@ -6,9 +6,9 @@ package org.apache.maven.its.mng5578.sessionscope.extension;
* copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance with the License. You may obtain a
* copy of the License at
- *
+ *
* http://www.apache.org/licenses/LICENSE-2.0
- *
+ *
* Unless required by applicable law or agreed to in writing, software distributed under the License
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
* or implied. See the License for the specific language governing permissions and limitations under
diff --git a/its/core-it-suite/src/test/resources/mng-5581-lifecycle-mapping-delegate/basic/pom.xml b/its/core-it-suite/src/test/resources/mng-5581-lifecycle-mapping-delegate/basic/pom.xml
index b73945dd06..26b3d6a595 100644
--- a/its/core-it-suite/src/test/resources/mng-5581-lifecycle-mapping-delegate/basic/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-5581-lifecycle-mapping-delegate/basic/pom.xml
@@ -34,7 +34,7 @@ under the License.
4.11
-
+
diff --git a/its/core-it-suite/src/test/resources/mng-5716-toolchains-type/pom.xml b/its/core-it-suite/src/test/resources/mng-5716-toolchains-type/pom.xml
index 5fbe46bce0..9c41b3d3a9 100644
--- a/its/core-it-suite/src/test/resources/mng-5716-toolchains-type/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-5716-toolchains-type/pom.xml
@@ -26,7 +26,7 @@ under the License.
test
1.0-SNAPSHOT
- Maven Integration Test :: MNG-5716
+ Maven Integration Test :: MNG-5716
Test Toolchain type returned by ToolchainManagerPrivate.getToolchainsForType()
diff --git a/its/core-it-suite/src/test/resources/mng-5753-custom-mojo-execution-configurator/plugin/src/main/java/org/apache/maven/its/mng5753/plugin/TestMojo.java b/its/core-it-suite/src/test/resources/mng-5753-custom-mojo-execution-configurator/plugin/src/main/java/org/apache/maven/its/mng5753/plugin/TestMojo.java
index d527cff848..08c5a56544 100644
--- a/its/core-it-suite/src/test/resources/mng-5753-custom-mojo-execution-configurator/plugin/src/main/java/org/apache/maven/its/mng5753/plugin/TestMojo.java
+++ b/its/core-it-suite/src/test/resources/mng-5753-custom-mojo-execution-configurator/plugin/src/main/java/org/apache/maven/its/mng5753/plugin/TestMojo.java
@@ -38,13 +38,13 @@ public class TestMojo
{
@Parameter( defaultValue = "${project}", readonly = true )
private MavenProject project;
-
+
@Parameter
private String name;
-
+
public void execute()
throws MojoExecutionException
- {
+ {
try
{
File file = new File( project.getBasedir(), "configuration.txt" );
@@ -63,6 +63,6 @@ public class TestMojo
{
throw new MojoExecutionException( e.getMessage(), e );
}
-
+
}
}
diff --git a/its/core-it-suite/src/test/resources/mng-5753-custom-mojo-execution-configurator/plugin/src/main/java/org/apache/maven/its/mng5753/plugin/TestMojoExecutionConfigurator.java b/its/core-it-suite/src/test/resources/mng-5753-custom-mojo-execution-configurator/plugin/src/main/java/org/apache/maven/its/mng5753/plugin/TestMojoExecutionConfigurator.java
index 89076cf611..d0d1e79d11 100644
--- a/its/core-it-suite/src/test/resources/mng-5753-custom-mojo-execution-configurator/plugin/src/main/java/org/apache/maven/its/mng5753/plugin/TestMojoExecutionConfigurator.java
+++ b/its/core-it-suite/src/test/resources/mng-5753-custom-mojo-execution-configurator/plugin/src/main/java/org/apache/maven/its/mng5753/plugin/TestMojoExecutionConfigurator.java
@@ -31,12 +31,12 @@ public class TestMojoExecutionConfigurator
public void configure( MavenProject project, MojoExecution mojoExecution, boolean allowPluginLevelConfig )
{
// We do exactly what the default mojo execution configurator does
- super.configure( project, mojoExecution, allowPluginLevelConfig );
-
+ super.configure( project, mojoExecution, allowPluginLevelConfig );
+
// And now we'll insert some additional configuration that we can assert was placed
// in the configuration in our test
Xpp3Dom mojoConfiguration = mojoExecution.getConfiguration();
-
- mojoConfiguration.getChild( "name" ).setValue( "TRANSFORMED" );
+
+ mojoConfiguration.getChild( "name" ).setValue( "TRANSFORMED" );
}
}
diff --git a/its/core-it-suite/src/test/resources/mng-5753-custom-mojo-execution-configurator/plugin/src/main/resources/META-INF/plexus/components.xml b/its/core-it-suite/src/test/resources/mng-5753-custom-mojo-execution-configurator/plugin/src/main/resources/META-INF/plexus/components.xml
index 46fcf16ae7..3d773df610 100644
--- a/its/core-it-suite/src/test/resources/mng-5753-custom-mojo-execution-configurator/plugin/src/main/resources/META-INF/plexus/components.xml
+++ b/its/core-it-suite/src/test/resources/mng-5753-custom-mojo-execution-configurator/plugin/src/main/resources/META-INF/plexus/components.xml
@@ -5,7 +5,7 @@
org.codehaus.plexus.component.configurator.ComponentConfigurator
test
org.codehaus.plexus.component.configurator.BasicComponentConfigurator
-
+
org.apache.maven.lifecycle.MojoExecutionConfigurator
test
diff --git a/its/core-it-suite/src/test/resources/mng-5760-resume-feature/parent-dependent/module-c/pom.xml b/its/core-it-suite/src/test/resources/mng-5760-resume-feature/parent-dependent/module-c/pom.xml
index ef65382cf8..b0b7f41eb5 100644
--- a/its/core-it-suite/src/test/resources/mng-5760-resume-feature/parent-dependent/module-c/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-5760-resume-feature/parent-dependent/module-c/pom.xml
@@ -40,7 +40,7 @@ under the License.
${project.version}
-
+
diff --git a/its/core-it-suite/src/test/resources/mng-5768-cli-execution-id/pom.xml b/its/core-it-suite/src/test/resources/mng-5768-cli-execution-id/pom.xml
index a138eb8781..712c1c7e44 100644
--- a/its/core-it-suite/src/test/resources/mng-5768-cli-execution-id/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-5768-cli-execution-id/pom.xml
@@ -26,7 +26,7 @@ under the License.
test
1
- Maven Integration Test :: MNG-5768
+ Maven Integration Test :: MNG-5768
Verify that plugin execution id can be specified from command line.
diff --git a/its/core-it-suite/src/test/resources/mng-5771-core-extensions/client/pom.xml b/its/core-it-suite/src/test/resources/mng-5771-core-extensions/client/pom.xml
index b4048e9f66..fa398ca695 100644
--- a/its/core-it-suite/src/test/resources/mng-5771-core-extensions/client/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-5771-core-extensions/client/pom.xml
@@ -30,7 +30,7 @@ under the License.
Maven Integration Test :: it-core-extensions
Verify that Maven loads core extensions and components contributed by the extensions are available to regular
- plugins.
+ plugins.
diff --git a/its/core-it-suite/src/test/resources/mng-5771-core-extensions/repo-src/maven-it-core-extensions-no-descriptor/pom.xml b/its/core-it-suite/src/test/resources/mng-5771-core-extensions/repo-src/maven-it-core-extensions-no-descriptor/pom.xml
index 5183fdfcab..f4e9f5d6d5 100644
--- a/its/core-it-suite/src/test/resources/mng-5771-core-extensions/repo-src/maven-it-core-extensions-no-descriptor/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-5771-core-extensions/repo-src/maven-it-core-extensions-no-descriptor/pom.xml
@@ -31,8 +31,8 @@ under the License.
Maven core extensions components
-
-
diff --git a/its/core-it-suite/src/test/resources/mng-5771-core-extensions/repo-src/maven-it-core-extensions/pom.xml b/its/core-it-suite/src/test/resources/mng-5771-core-extensions/repo-src/maven-it-core-extensions/pom.xml
index 6fba8095c4..c2da347a7e 100644
--- a/its/core-it-suite/src/test/resources/mng-5771-core-extensions/repo-src/maven-it-core-extensions/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-5771-core-extensions/repo-src/maven-it-core-extensions/pom.xml
@@ -31,8 +31,8 @@ under the License.
Maven core extensions components
-
-
diff --git a/its/core-it-suite/src/test/resources/mng-5771-core-extensions/repo-src/maven-it-plugin-core-extensions-client/pom.xml b/its/core-it-suite/src/test/resources/mng-5771-core-extensions/repo-src/maven-it-plugin-core-extensions-client/pom.xml
index dcedb51d5a..7b392ba2b2 100644
--- a/its/core-it-suite/src/test/resources/mng-5771-core-extensions/repo-src/maven-it-plugin-core-extensions-client/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-5771-core-extensions/repo-src/maven-it-plugin-core-extensions-client/pom.xml
@@ -32,7 +32,7 @@ under the License.
Maven plugin that fails if expected components were not contributed by the core extension
-
diff --git a/its/core-it-suite/src/test/resources/mng-5771-core-extensions/repo/org/apache/maven/its/it-core-extensions/maven-it-core-extensions-no-descriptor/0.1/maven-it-core-extensions-no-descriptor-0.1.pom b/its/core-it-suite/src/test/resources/mng-5771-core-extensions/repo/org/apache/maven/its/it-core-extensions/maven-it-core-extensions-no-descriptor/0.1/maven-it-core-extensions-no-descriptor-0.1.pom
index 5183fdfcab..f4e9f5d6d5 100644
--- a/its/core-it-suite/src/test/resources/mng-5771-core-extensions/repo/org/apache/maven/its/it-core-extensions/maven-it-core-extensions-no-descriptor/0.1/maven-it-core-extensions-no-descriptor-0.1.pom
+++ b/its/core-it-suite/src/test/resources/mng-5771-core-extensions/repo/org/apache/maven/its/it-core-extensions/maven-it-core-extensions-no-descriptor/0.1/maven-it-core-extensions-no-descriptor-0.1.pom
@@ -31,8 +31,8 @@ under the License.
Maven core extensions components
-
-
diff --git a/its/core-it-suite/src/test/resources/mng-5771-core-extensions/repo/org/apache/maven/its/it-core-extensions/maven-it-core-extensions-no-descriptor/0.1/maven-it-core-extensions-no-descriptor-0.1.pom.sha1 b/its/core-it-suite/src/test/resources/mng-5771-core-extensions/repo/org/apache/maven/its/it-core-extensions/maven-it-core-extensions-no-descriptor/0.1/maven-it-core-extensions-no-descriptor-0.1.pom.sha1
index a8ee210f8c..b9b9e7b41e 100644
--- a/its/core-it-suite/src/test/resources/mng-5771-core-extensions/repo/org/apache/maven/its/it-core-extensions/maven-it-core-extensions-no-descriptor/0.1/maven-it-core-extensions-no-descriptor-0.1.pom.sha1
+++ b/its/core-it-suite/src/test/resources/mng-5771-core-extensions/repo/org/apache/maven/its/it-core-extensions/maven-it-core-extensions-no-descriptor/0.1/maven-it-core-extensions-no-descriptor-0.1.pom.sha1
@@ -1 +1 @@
-db764e765a0580beb29ef4d0e74b56f88928887e
\ No newline at end of file
+88a9ea10005b24ebe90b38cd30dffdc435b126e8
diff --git a/its/core-it-suite/src/test/resources/mng-5771-core-extensions/repo/org/apache/maven/its/it-core-extensions/maven-it-core-extensions/0.1/maven-it-core-extensions-0.1.pom b/its/core-it-suite/src/test/resources/mng-5771-core-extensions/repo/org/apache/maven/its/it-core-extensions/maven-it-core-extensions/0.1/maven-it-core-extensions-0.1.pom
index 6fba8095c4..c2da347a7e 100644
--- a/its/core-it-suite/src/test/resources/mng-5771-core-extensions/repo/org/apache/maven/its/it-core-extensions/maven-it-core-extensions/0.1/maven-it-core-extensions-0.1.pom
+++ b/its/core-it-suite/src/test/resources/mng-5771-core-extensions/repo/org/apache/maven/its/it-core-extensions/maven-it-core-extensions/0.1/maven-it-core-extensions-0.1.pom
@@ -31,8 +31,8 @@ under the License.
Maven core extensions components
-
-
diff --git a/its/core-it-suite/src/test/resources/mng-5771-core-extensions/repo/org/apache/maven/its/it-core-extensions/maven-it-core-extensions/0.1/maven-it-core-extensions-0.1.pom.sha1 b/its/core-it-suite/src/test/resources/mng-5771-core-extensions/repo/org/apache/maven/its/it-core-extensions/maven-it-core-extensions/0.1/maven-it-core-extensions-0.1.pom.sha1
index 967edecb9a..5945b3d9a6 100644
--- a/its/core-it-suite/src/test/resources/mng-5771-core-extensions/repo/org/apache/maven/its/it-core-extensions/maven-it-core-extensions/0.1/maven-it-core-extensions-0.1.pom.sha1
+++ b/its/core-it-suite/src/test/resources/mng-5771-core-extensions/repo/org/apache/maven/its/it-core-extensions/maven-it-core-extensions/0.1/maven-it-core-extensions-0.1.pom.sha1
@@ -1 +1 @@
-c57dc48d0a7e242faec365d9324cac5cd16f3a99
\ No newline at end of file
+8585d6a605ef22f8ba8674c193e774fc71b38941
diff --git a/its/core-it-suite/src/test/resources/mng-5771-core-extensions/repo/org/apache/maven/its/it-core-extensions/maven-it-plugin-core-extensions-client/0.1/maven-it-plugin-core-extensions-client-0.1.pom b/its/core-it-suite/src/test/resources/mng-5771-core-extensions/repo/org/apache/maven/its/it-core-extensions/maven-it-plugin-core-extensions-client/0.1/maven-it-plugin-core-extensions-client-0.1.pom
index dcedb51d5a..7b392ba2b2 100644
--- a/its/core-it-suite/src/test/resources/mng-5771-core-extensions/repo/org/apache/maven/its/it-core-extensions/maven-it-plugin-core-extensions-client/0.1/maven-it-plugin-core-extensions-client-0.1.pom
+++ b/its/core-it-suite/src/test/resources/mng-5771-core-extensions/repo/org/apache/maven/its/it-core-extensions/maven-it-plugin-core-extensions-client/0.1/maven-it-plugin-core-extensions-client-0.1.pom
@@ -32,7 +32,7 @@ under the License.
Maven plugin that fails if expected components were not contributed by the core extension
-
diff --git a/its/core-it-suite/src/test/resources/mng-5771-core-extensions/repo/org/apache/maven/its/it-core-extensions/maven-it-plugin-core-extensions-client/0.1/maven-it-plugin-core-extensions-client-0.1.pom.sha1 b/its/core-it-suite/src/test/resources/mng-5771-core-extensions/repo/org/apache/maven/its/it-core-extensions/maven-it-plugin-core-extensions-client/0.1/maven-it-plugin-core-extensions-client-0.1.pom.sha1
index 51b7f0a31a..12a6eaf750 100644
--- a/its/core-it-suite/src/test/resources/mng-5771-core-extensions/repo/org/apache/maven/its/it-core-extensions/maven-it-plugin-core-extensions-client/0.1/maven-it-plugin-core-extensions-client-0.1.pom.sha1
+++ b/its/core-it-suite/src/test/resources/mng-5771-core-extensions/repo/org/apache/maven/its/it-core-extensions/maven-it-plugin-core-extensions-client/0.1/maven-it-plugin-core-extensions-client-0.1.pom.sha1
@@ -1 +1 @@
-c33a9d78008055a9d826da70d62dc427a22d7337
\ No newline at end of file
+520e6cd05914cf86eae16861af23d00a854262a3
diff --git a/its/core-it-suite/src/test/resources/mng-5771-core-extensions/settings-template-mirror-auth.xml b/its/core-it-suite/src/test/resources/mng-5771-core-extensions/settings-template-mirror-auth.xml
index 60b8305de5..a338822c28 100644
--- a/its/core-it-suite/src/test/resources/mng-5771-core-extensions/settings-template-mirror-auth.xml
+++ b/its/core-it-suite/src/test/resources/mng-5771-core-extensions/settings-template-mirror-auth.xml
@@ -1,12 +1,12 @@
-
+
repoman
maven
secret
-
+
repoman
@@ -15,7 +15,7 @@
external:*
-
+
development
diff --git a/its/core-it-suite/src/test/resources/mng-5774-configuration-processors/build-with-one-processor-valid/.mvn/extensions.xml b/its/core-it-suite/src/test/resources/mng-5774-configuration-processors/build-with-one-processor-valid/.mvn/extensions.xml
index 6e130c4743..80c0ec4a52 100644
--- a/its/core-it-suite/src/test/resources/mng-5774-configuration-processors/build-with-one-processor-valid/.mvn/extensions.xml
+++ b/its/core-it-suite/src/test/resources/mng-5774-configuration-processors/build-with-one-processor-valid/.mvn/extensions.xml
@@ -23,6 +23,6 @@ under the License.
org.apache.maven.its.it-configuration-processors
maven-it-configuration-processor-one
- 0.1
+ 0.1
diff --git a/its/core-it-suite/src/test/resources/mng-5774-configuration-processors/build-with-one-processor-valid/pom.xml b/its/core-it-suite/src/test/resources/mng-5774-configuration-processors/build-with-one-processor-valid/pom.xml
index 74cf1e437e..6e7109b369 100644
--- a/its/core-it-suite/src/test/resources/mng-5774-configuration-processors/build-with-one-processor-valid/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-5774-configuration-processors/build-with-one-processor-valid/pom.xml
@@ -30,7 +30,7 @@ under the License.
Maven Integration Test :: it-core-extensions
Verify that Maven loads core extensions and components contributed by the extensions are available to regular
- plugins.
+ plugins.
@@ -38,8 +38,8 @@ under the License.
src/main/resources
true
-
+
-
+
diff --git a/its/core-it-suite/src/test/resources/mng-5774-configuration-processors/build-with-two-processors-invalid/pom.xml b/its/core-it-suite/src/test/resources/mng-5774-configuration-processors/build-with-two-processors-invalid/pom.xml
index 8613bfb5c5..890505697f 100644
--- a/its/core-it-suite/src/test/resources/mng-5774-configuration-processors/build-with-two-processors-invalid/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-5774-configuration-processors/build-with-two-processors-invalid/pom.xml
@@ -30,7 +30,7 @@ under the License.
Maven Integration Test :: it-core-extensions
Verify that Maven loads core extensions and components contributed by the extensions are available to regular
- plugins.
+ plugins.
diff --git a/its/core-it-suite/src/test/resources/mng-5805-pkg-type-mojo-configuration/pom.xml b/its/core-it-suite/src/test/resources/mng-5805-pkg-type-mojo-configuration/pom.xml
index 8c53363270..36647b0f7b 100644
--- a/its/core-it-suite/src/test/resources/mng-5805-pkg-type-mojo-configuration/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-5805-pkg-type-mojo-configuration/pom.xml
@@ -27,7 +27,7 @@ under the License.
mng-5805-pkg-type-mojo-configuration-project
0.1
mng5805
-
+
diff --git a/its/core-it-suite/src/test/resources/mng-5805-pkg-type-mojo-configuration2/pom.xml b/its/core-it-suite/src/test/resources/mng-5805-pkg-type-mojo-configuration2/pom.xml
index b7e12f15fc..927a8fc459 100644
--- a/its/core-it-suite/src/test/resources/mng-5805-pkg-type-mojo-configuration2/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-5805-pkg-type-mojo-configuration2/pom.xml
@@ -27,7 +27,7 @@ under the License.
mng-5805-pkg-type-mojo-configuration-project2
0.1
mng5805
-
+
diff --git a/its/core-it-suite/src/test/resources/mng-5840-relative-path-range-negative/parent/pom.xml b/its/core-it-suite/src/test/resources/mng-5840-relative-path-range-negative/parent/pom.xml
index be57d3024a..fb3e50e9dd 100644
--- a/its/core-it-suite/src/test/resources/mng-5840-relative-path-range-negative/parent/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-5840-relative-path-range-negative/parent/pom.xml
@@ -8,7 +8,7 @@
pom
-
+
diff --git a/its/core-it-suite/src/test/resources/mng-5840-relative-path-range-positive/parent/pom.xml b/its/core-it-suite/src/test/resources/mng-5840-relative-path-range-positive/parent/pom.xml
index 773a082d60..c4c0b470ad 100644
--- a/its/core-it-suite/src/test/resources/mng-5840-relative-path-range-positive/parent/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-5840-relative-path-range-positive/parent/pom.xml
@@ -8,7 +8,7 @@
pom
- true
+ true
diff --git a/its/core-it-suite/src/test/resources/mng-5840-relative-path-reactor-matching/parent/pom.xml b/its/core-it-suite/src/test/resources/mng-5840-relative-path-reactor-matching/parent/pom.xml
index 4caa7771e1..87eef90697 100644
--- a/its/core-it-suite/src/test/resources/mng-5840-relative-path-reactor-matching/parent/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-5840-relative-path-reactor-matching/parent/pom.xml
@@ -8,7 +8,7 @@
pom
-
+
diff --git a/its/core-it-suite/src/test/resources/mng-5868/src/main/java/org/apache/maven/its/mng5338/App.java b/its/core-it-suite/src/test/resources/mng-5868/src/main/java/org/apache/maven/its/mng5338/App.java
index fd3f646a63..5329396220 100644
--- a/its/core-it-suite/src/test/resources/mng-5868/src/main/java/org/apache/maven/its/mng5338/App.java
+++ b/its/core-it-suite/src/test/resources/mng-5868/src/main/java/org/apache/maven/its/mng5338/App.java
@@ -23,7 +23,7 @@ package org.apache.maven.its.mng5338;
* Hello world!
*
*/
-public class App
+public class App
{
public static void main( String[] args )
{
diff --git a/its/core-it-suite/src/test/resources/mng-5889-find.mvn/pom.xml b/its/core-it-suite/src/test/resources/mng-5889-find.mvn/pom.xml
index 1495879ebf..54375a563f 100644
--- a/its/core-it-suite/src/test/resources/mng-5889-find.mvn/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-5889-find.mvn/pom.xml
@@ -27,7 +27,7 @@ under the License.
1
pom
- Maven Integration Test :: MNG-5889
+ Maven Integration Test :: MNG-5889
Verify that path/to/.mvn directory is found when using -f/--file path/to/[module/]pom.xml.
diff --git a/its/core-it-suite/src/test/resources/mng-5895-ci-friendly-usage-with-property/module-2/pom.xml b/its/core-it-suite/src/test/resources/mng-5895-ci-friendly-usage-with-property/module-2/pom.xml
index ac532d3ed5..5a7dabeb29 100644
--- a/its/core-it-suite/src/test/resources/mng-5895-ci-friendly-usage-with-property/module-2/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-5895-ci-friendly-usage-with-property/module-2/pom.xml
@@ -1,14 +1,14 @@
-
-
test
1
- Maven Integration Test :: MNG-5937
+ Maven Integration Test :: MNG-5937
diff --git a/its/core-it-suite/src/test/resources/mng-5958-lifecycle-phases/bad/pom.xml b/its/core-it-suite/src/test/resources/mng-5958-lifecycle-phases/bad/pom.xml
index d565ae0298..5ebe8c37ea 100644
--- a/its/core-it-suite/src/test/resources/mng-5958-lifecycle-phases/bad/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-5958-lifecycle-phases/bad/pom.xml
@@ -27,7 +27,7 @@ under the License.
mng-5958-lifecycle-phases-project
0.1
mng5958-bad
-
+
@@ -49,5 +49,5 @@ under the License.
-
+
diff --git a/its/core-it-suite/src/test/resources/mng-5958-lifecycle-phases/good/pom.xml b/its/core-it-suite/src/test/resources/mng-5958-lifecycle-phases/good/pom.xml
index 0419dcd109..64558f889b 100644
--- a/its/core-it-suite/src/test/resources/mng-5958-lifecycle-phases/good/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-5958-lifecycle-phases/good/pom.xml
@@ -27,7 +27,7 @@ under the License.
mng-5958-lifecycle-phases-project
0.1
mng5958-good
-
+
@@ -49,5 +49,5 @@ under the License.
-
+
diff --git a/its/core-it-suite/src/test/resources/mng-6090-ci-friendly/module-2/pom.xml b/its/core-it-suite/src/test/resources/mng-6090-ci-friendly/module-2/pom.xml
index 5b99f84cb1..1dae572901 100644
--- a/its/core-it-suite/src/test/resources/mng-6090-ci-friendly/module-2/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-6090-ci-friendly/module-2/pom.xml
@@ -1,14 +1,14 @@
-
-
Check that using maven-site-plugin reportPlugins parameter causes a warning.
-
+
diff --git a/its/core-it-suite/src/test/resources/mng-6210-core-extensions-scopes/client/pom.xml b/its/core-it-suite/src/test/resources/mng-6210-core-extensions-scopes/client/pom.xml
index 9cd5adb0a6..4e6a49cb89 100644
--- a/its/core-it-suite/src/test/resources/mng-6210-core-extensions-scopes/client/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-6210-core-extensions-scopes/client/pom.xml
@@ -30,7 +30,7 @@ under the License.
Maven Integration Test :: it-core-extensions-custom-scopes
Verify that Maven loads core extensions and components contributed by the extensions are available to regular
- plugins.
+ plugins.
diff --git a/its/core-it-suite/src/test/resources/mng-6210-core-extensions-scopes/repo-src/maven-it-core-extensions/pom.xml b/its/core-it-suite/src/test/resources/mng-6210-core-extensions-scopes/repo-src/maven-it-core-extensions/pom.xml
index e2e1c18087..bcd2a695b0 100644
--- a/its/core-it-suite/src/test/resources/mng-6210-core-extensions-scopes/repo-src/maven-it-core-extensions/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-6210-core-extensions-scopes/repo-src/maven-it-core-extensions/pom.xml
@@ -31,8 +31,8 @@ under the License.
Maven core extensions components that use @SessionScope and @MojoExecutionScope Guice scopes
-
-
diff --git a/its/core-it-suite/src/test/resources/mng-6210-core-extensions-scopes/repo-src/maven-it-plugin/pom.xml b/its/core-it-suite/src/test/resources/mng-6210-core-extensions-scopes/repo-src/maven-it-plugin/pom.xml
index 5b65b0cff8..6e1adfde9a 100644
--- a/its/core-it-suite/src/test/resources/mng-6210-core-extensions-scopes/repo-src/maven-it-plugin/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-6210-core-extensions-scopes/repo-src/maven-it-plugin/pom.xml
@@ -32,7 +32,7 @@ under the License.
Maven plugin that fails if expected components were not contributed by the core extension
-
diff --git a/its/core-it-suite/src/test/resources/mng-6210-core-extensions-scopes/repo/org/apache/maven/its/6210-core-extensions-scopes/maven-it-core-extensions/0.1/maven-it-core-extensions-0.1.pom b/its/core-it-suite/src/test/resources/mng-6210-core-extensions-scopes/repo/org/apache/maven/its/6210-core-extensions-scopes/maven-it-core-extensions/0.1/maven-it-core-extensions-0.1.pom
index e2e1c18087..bcd2a695b0 100644
--- a/its/core-it-suite/src/test/resources/mng-6210-core-extensions-scopes/repo/org/apache/maven/its/6210-core-extensions-scopes/maven-it-core-extensions/0.1/maven-it-core-extensions-0.1.pom
+++ b/its/core-it-suite/src/test/resources/mng-6210-core-extensions-scopes/repo/org/apache/maven/its/6210-core-extensions-scopes/maven-it-core-extensions/0.1/maven-it-core-extensions-0.1.pom
@@ -31,8 +31,8 @@ under the License.
Maven core extensions components that use @SessionScope and @MojoExecutionScope Guice scopes
-
-
diff --git a/its/core-it-suite/src/test/resources/mng-6210-core-extensions-scopes/repo/org/apache/maven/its/6210-core-extensions-scopes/maven-it-plugin/0.1/maven-it-plugin-0.1.pom b/its/core-it-suite/src/test/resources/mng-6210-core-extensions-scopes/repo/org/apache/maven/its/6210-core-extensions-scopes/maven-it-plugin/0.1/maven-it-plugin-0.1.pom
index 5b65b0cff8..6e1adfde9a 100644
--- a/its/core-it-suite/src/test/resources/mng-6210-core-extensions-scopes/repo/org/apache/maven/its/6210-core-extensions-scopes/maven-it-plugin/0.1/maven-it-plugin-0.1.pom
+++ b/its/core-it-suite/src/test/resources/mng-6210-core-extensions-scopes/repo/org/apache/maven/its/6210-core-extensions-scopes/maven-it-plugin/0.1/maven-it-plugin-0.1.pom
@@ -32,7 +32,7 @@ under the License.
Maven plugin that fails if expected components were not contributed by the core extension
-
diff --git a/its/core-it-suite/src/test/resources/mng-6562-default-bindings/pom.xml b/its/core-it-suite/src/test/resources/mng-6562-default-bindings/pom.xml
index 1384e36339..08bf499b6c 100644
--- a/its/core-it-suite/src/test/resources/mng-6562-default-bindings/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-6562-default-bindings/pom.xml
@@ -27,11 +27,11 @@ under the License.
0.1
Maven Integration Test :: MNG-6562
-
+
UTF-8
-
+
diff --git a/its/core-it-suite/src/test/resources/mng-6566-execute-annotation-should-not-re-execute-goals/plugin/pom.xml b/its/core-it-suite/src/test/resources/mng-6566-execute-annotation-should-not-re-execute-goals/plugin/pom.xml
index 7971a94f08..bdb977a557 100644
--- a/its/core-it-suite/src/test/resources/mng-6566-execute-annotation-should-not-re-execute-goals/plugin/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-6566-execute-annotation-should-not-re-execute-goals/plugin/pom.xml
@@ -22,7 +22,7 @@ under the License.
4.0.0
-
+
org.apache.maven.its.mng6566
plugin
1.0-SNAPSHOT
diff --git a/its/core-it-suite/src/test/resources/mng-6656-buildconsumer/pom.xml b/its/core-it-suite/src/test/resources/mng-6656-buildconsumer/pom.xml
index 1455523481..5060c68b57 100644
--- a/its/core-it-suite/src/test/resources/mng-6656-buildconsumer/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-6656-buildconsumer/pom.xml
@@ -19,7 +19,7 @@ specific language governing permissions and limitations
under the License.
-->
-
4.0.0
diff --git a/its/core-it-suite/src/test/resources/mng-6656-buildconsumer/simple-parent/pom.xml b/its/core-it-suite/src/test/resources/mng-6656-buildconsumer/simple-parent/pom.xml
index f162121096..e2219e3e51 100644
--- a/its/core-it-suite/src/test/resources/mng-6656-buildconsumer/simple-parent/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-6656-buildconsumer/simple-parent/pom.xml
@@ -19,7 +19,7 @@ specific language governing permissions and limitations
under the License.
-->
-
4.0.0
diff --git a/its/core-it-suite/src/test/resources/mng-6656-buildconsumer/simple-parent/simple-weather/pom.xml b/its/core-it-suite/src/test/resources/mng-6656-buildconsumer/simple-parent/simple-weather/pom.xml
index 08baf8e76e..4c19d0d584 100644
--- a/its/core-it-suite/src/test/resources/mng-6656-buildconsumer/simple-parent/simple-weather/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-6656-buildconsumer/simple-parent/simple-weather/pom.xml
@@ -19,7 +19,7 @@ specific language governing permissions and limitations
under the License.
-->
-
4.0.0
diff --git a/its/core-it-suite/src/test/resources/mng-6656-buildconsumer/simple-parent/simple-webapp/pom.xml b/its/core-it-suite/src/test/resources/mng-6656-buildconsumer/simple-parent/simple-webapp/pom.xml
index 9e9c0874ce..776d54d07b 100644
--- a/its/core-it-suite/src/test/resources/mng-6656-buildconsumer/simple-parent/simple-webapp/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-6656-buildconsumer/simple-parent/simple-webapp/pom.xml
@@ -19,7 +19,7 @@ specific language governing permissions and limitations
under the License.
-->
-
4.0.0
diff --git a/its/core-it-suite/src/test/resources/mng-6772-override-in-dependency/repo/org/apache/maven/its/mng6772/b/0.1/b-0.1.pom b/its/core-it-suite/src/test/resources/mng-6772-override-in-dependency/repo/org/apache/maven/its/mng6772/b/0.1/b-0.1.pom
index 5cc34864a9..43874119b2 100644
--- a/its/core-it-suite/src/test/resources/mng-6772-override-in-dependency/repo/org/apache/maven/its/mng6772/b/0.1/b-0.1.pom
+++ b/its/core-it-suite/src/test/resources/mng-6772-override-in-dependency/repo/org/apache/maven/its/mng6772/b/0.1/b-0.1.pom
@@ -21,12 +21,12 @@ under the License.
4.0.0
-
+
org.apache.maven.its.mng6772
b
0.1
pom
-
+
diff --git a/its/core-it-suite/src/test/resources/mng-6772-override-in-dependency/repo/org/apache/maven/its/mng6772/b/0.1/b-0.1.pom.md5 b/its/core-it-suite/src/test/resources/mng-6772-override-in-dependency/repo/org/apache/maven/its/mng6772/b/0.1/b-0.1.pom.md5
index 15500e358b..df3058c971 100644
--- a/its/core-it-suite/src/test/resources/mng-6772-override-in-dependency/repo/org/apache/maven/its/mng6772/b/0.1/b-0.1.pom.md5
+++ b/its/core-it-suite/src/test/resources/mng-6772-override-in-dependency/repo/org/apache/maven/its/mng6772/b/0.1/b-0.1.pom.md5
@@ -1 +1 @@
-8c5db55c9360e70f15538d3f4ccae344
\ No newline at end of file
+41e65e1263946b235faf620172565687
diff --git a/its/core-it-suite/src/test/resources/mng-6772-override-in-dependency/repo/org/apache/maven/its/mng6772/b/0.1/b-0.1.pom.sha1 b/its/core-it-suite/src/test/resources/mng-6772-override-in-dependency/repo/org/apache/maven/its/mng6772/b/0.1/b-0.1.pom.sha1
index 67db62a23e..a1ccf35054 100644
--- a/its/core-it-suite/src/test/resources/mng-6772-override-in-dependency/repo/org/apache/maven/its/mng6772/b/0.1/b-0.1.pom.sha1
+++ b/its/core-it-suite/src/test/resources/mng-6772-override-in-dependency/repo/org/apache/maven/its/mng6772/b/0.1/b-0.1.pom.sha1
@@ -1 +1 @@
-2bf91d3ebd6018cb572c2cfe4aa23adcf0338b96
\ No newline at end of file
+d2c3318bde4e19f9b4d8aedd01bf2edf061f73b9
diff --git a/its/core-it-suite/src/test/resources/mng-6772-override-in-project/repo/org/apache/maven/its/mng6772/b/0.1/b-0.1.pom b/its/core-it-suite/src/test/resources/mng-6772-override-in-project/repo/org/apache/maven/its/mng6772/b/0.1/b-0.1.pom
index 5cc34864a9..43874119b2 100644
--- a/its/core-it-suite/src/test/resources/mng-6772-override-in-project/repo/org/apache/maven/its/mng6772/b/0.1/b-0.1.pom
+++ b/its/core-it-suite/src/test/resources/mng-6772-override-in-project/repo/org/apache/maven/its/mng6772/b/0.1/b-0.1.pom
@@ -21,12 +21,12 @@ under the License.
4.0.0
-
+
org.apache.maven.its.mng6772
b
0.1
pom
-
+
diff --git a/its/core-it-suite/src/test/resources/mng-6772-override-in-project/repo/org/apache/maven/its/mng6772/b/0.1/b-0.1.pom.md5 b/its/core-it-suite/src/test/resources/mng-6772-override-in-project/repo/org/apache/maven/its/mng6772/b/0.1/b-0.1.pom.md5
index 15500e358b..df3058c971 100644
--- a/its/core-it-suite/src/test/resources/mng-6772-override-in-project/repo/org/apache/maven/its/mng6772/b/0.1/b-0.1.pom.md5
+++ b/its/core-it-suite/src/test/resources/mng-6772-override-in-project/repo/org/apache/maven/its/mng6772/b/0.1/b-0.1.pom.md5
@@ -1 +1 @@
-8c5db55c9360e70f15538d3f4ccae344
\ No newline at end of file
+41e65e1263946b235faf620172565687
diff --git a/its/core-it-suite/src/test/resources/mng-6772-override-in-project/repo/org/apache/maven/its/mng6772/b/0.1/b-0.1.pom.sha1 b/its/core-it-suite/src/test/resources/mng-6772-override-in-project/repo/org/apache/maven/its/mng6772/b/0.1/b-0.1.pom.sha1
index 67db62a23e..a1ccf35054 100644
--- a/its/core-it-suite/src/test/resources/mng-6772-override-in-project/repo/org/apache/maven/its/mng6772/b/0.1/b-0.1.pom.sha1
+++ b/its/core-it-suite/src/test/resources/mng-6772-override-in-project/repo/org/apache/maven/its/mng6772/b/0.1/b-0.1.pom.sha1
@@ -1 +1 @@
-2bf91d3ebd6018cb572c2cfe4aa23adcf0338b96
\ No newline at end of file
+d2c3318bde4e19f9b4d8aedd01bf2edf061f73b9
diff --git a/its/core-it-suite/src/test/resources/mng-6957-buildconsumer/pom.xml b/its/core-it-suite/src/test/resources/mng-6957-buildconsumer/pom.xml
index 5acb7934ed..46c4767b96 100644
--- a/its/core-it-suite/src/test/resources/mng-6957-buildconsumer/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-6957-buildconsumer/pom.xml
@@ -19,7 +19,7 @@ specific language governing permissions and limitations
under the License.
-->
-
4.0.0
diff --git a/its/core-it-suite/src/test/resources/mng-6957-buildconsumer/simple-parent/pom.xml b/its/core-it-suite/src/test/resources/mng-6957-buildconsumer/simple-parent/pom.xml
index fb098e09b2..1d428c00af 100644
--- a/its/core-it-suite/src/test/resources/mng-6957-buildconsumer/simple-parent/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-6957-buildconsumer/simple-parent/pom.xml
@@ -19,7 +19,7 @@ specific language governing permissions and limitations
under the License.
-->
-
4.0.0
diff --git a/its/core-it-suite/src/test/resources/mng-6957-buildconsumer/simple-parent/simple-testutils/pom.xml b/its/core-it-suite/src/test/resources/mng-6957-buildconsumer/simple-parent/simple-testutils/pom.xml
index b9b32a4a87..3fab2e680b 100644
--- a/its/core-it-suite/src/test/resources/mng-6957-buildconsumer/simple-parent/simple-testutils/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-6957-buildconsumer/simple-parent/simple-testutils/pom.xml
@@ -19,7 +19,7 @@ specific language governing permissions and limitations
under the License.
-->
-
4.0.0
diff --git a/its/core-it-suite/src/test/resources/mng-6957-buildconsumer/simple-parent/simple-weather/pom.xml b/its/core-it-suite/src/test/resources/mng-6957-buildconsumer/simple-parent/simple-weather/pom.xml
index 4a1873c2e6..800d680633 100644
--- a/its/core-it-suite/src/test/resources/mng-6957-buildconsumer/simple-parent/simple-weather/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-6957-buildconsumer/simple-parent/simple-weather/pom.xml
@@ -19,7 +19,7 @@ specific language governing permissions and limitations
under the License.
-->
-
4.0.0
diff --git a/its/core-it-suite/src/test/resources/mng-6957-buildconsumer/simple-parent/simple-webapp/pom.xml b/its/core-it-suite/src/test/resources/mng-6957-buildconsumer/simple-parent/simple-webapp/pom.xml
index 9e18a21175..b1068b7ce2 100644
--- a/its/core-it-suite/src/test/resources/mng-6957-buildconsumer/simple-parent/simple-webapp/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-6957-buildconsumer/simple-parent/simple-webapp/pom.xml
@@ -19,7 +19,7 @@ specific language governing permissions and limitations
under the License.
-->
-
4.0.0
diff --git a/its/core-it-suite/src/test/resources/mng-6957-buildconsumer/simple-parent/utils-parent/pom.xml b/its/core-it-suite/src/test/resources/mng-6957-buildconsumer/simple-parent/utils-parent/pom.xml
index deb03d6702..d1d0c6ea98 100644
--- a/its/core-it-suite/src/test/resources/mng-6957-buildconsumer/simple-parent/utils-parent/pom.xml
+++ b/its/core-it-suite/src/test/resources/mng-6957-buildconsumer/simple-parent/utils-parent/pom.xml
@@ -19,7 +19,7 @@ specific language governing permissions and limitations
under the License.
-->
-
4.0.0
diff --git a/its/core-it-support/core-it-component/src/main/java/org/apache/maven/coreit/component/StatefulSingleton.java b/its/core-it-support/core-it-component/src/main/java/org/apache/maven/coreit/component/StatefulSingleton.java
index b63f954e1c..c8bdd68ba2 100644
--- a/its/core-it-support/core-it-component/src/main/java/org/apache/maven/coreit/component/StatefulSingleton.java
+++ b/its/core-it-support/core-it-component/src/main/java/org/apache/maven/coreit/component/StatefulSingleton.java
@@ -23,7 +23,7 @@ import java.io.File;
import java.io.IOException;
/**
- *
+ *
*/
public interface StatefulSingleton
{
diff --git a/its/core-it-support/core-it-javaagent/src/main/java/org/apache/maven/coreits/javaagent/mng5669/Premain.java b/its/core-it-support/core-it-javaagent/src/main/java/org/apache/maven/coreits/javaagent/mng5669/Premain.java
index ea4420f1c6..eece1490e3 100644
--- a/its/core-it-support/core-it-javaagent/src/main/java/org/apache/maven/coreits/javaagent/mng5669/Premain.java
+++ b/its/core-it-support/core-it-javaagent/src/main/java/org/apache/maven/coreits/javaagent/mng5669/Premain.java
@@ -32,7 +32,7 @@ import org.objectweb.asm.Opcodes;
import org.objectweb.asm.commons.AdviceAdapter;
/**
- *
+ *
* @author Robert Scholte
*
*/
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-active-collection/src/main/java/org/apache/maven/plugin/coreit/CheckMojo.java b/its/core-it-support/core-it-plugins/maven-it-plugin-active-collection/src/main/java/org/apache/maven/plugin/coreit/CheckMojo.java
index 77332db81b..6b6907f7aa 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-active-collection/src/main/java/org/apache/maven/plugin/coreit/CheckMojo.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-active-collection/src/main/java/org/apache/maven/plugin/coreit/CheckMojo.java
@@ -34,10 +34,10 @@ import java.util.Properties;
/**
* Checks the general retrieval of components from active component collections.
- *
+ *
* @goal check
* @phase validate
- *
+ *
* @author Benjamin Bentmann
*/
public class CheckMojo
@@ -46,7 +46,7 @@ public class CheckMojo
/**
* Project base directory used for manual path alignment.
- *
+ *
* @parameter default-value="${basedir}"
* @readonly
*/
@@ -54,28 +54,28 @@ public class CheckMojo
/**
* The available components, as a map.
- *
+ *
* @component role="org.apache.maven.plugin.coreit.Component"
*/
private Map componentMap;
/**
* The available components, as a list.
- *
+ *
* @component role="org.apache.maven.plugin.coreit.Component"
*/
private List componentList;
/**
* The path to the properties file to create.
- *
+ *
* @parameter property="collections.outputFile"
*/
private File outputFile;
/**
* Runs this mojo.
- *
+ *
* @throws MojoFailureException If the output file could not be created.
*/
public void execute()
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-active-collection/src/main/java/org/apache/maven/plugin/coreit/Component.java b/its/core-it-support/core-it-plugins/maven-it-plugin-active-collection/src/main/java/org/apache/maven/plugin/coreit/Component.java
index c71b74809a..70f69048b9 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-active-collection/src/main/java/org/apache/maven/plugin/coreit/Component.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-active-collection/src/main/java/org/apache/maven/plugin/coreit/Component.java
@@ -21,7 +21,7 @@ package org.apache.maven.plugin.coreit;
/**
* A simple interface for our test components.
- *
+ *
* @author Benjamin Bentmann
*/
public interface Component
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-active-collection/src/main/java/org/apache/maven/plugin/coreit/DefaultComponent.java b/its/core-it-support/core-it-plugins/maven-it-plugin-active-collection/src/main/java/org/apache/maven/plugin/coreit/DefaultComponent.java
index f9ef388870..e218dc4f84 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-active-collection/src/main/java/org/apache/maven/plugin/coreit/DefaultComponent.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-active-collection/src/main/java/org/apache/maven/plugin/coreit/DefaultComponent.java
@@ -21,7 +21,7 @@ package org.apache.maven.plugin.coreit;
/**
* A simple test component.
- *
+ *
* @author Benjamin Bentmann
*/
public class DefaultComponent
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-all/src/main/java/org/apache/maven/plugin/coreit/AggregatorDependenciesMojo.java b/its/core-it-support/core-it-plugins/maven-it-plugin-all/src/main/java/org/apache/maven/plugin/coreit/AggregatorDependenciesMojo.java
index 7a9c620406..20747be4fb 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-all/src/main/java/org/apache/maven/plugin/coreit/AggregatorDependenciesMojo.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-all/src/main/java/org/apache/maven/plugin/coreit/AggregatorDependenciesMojo.java
@@ -37,7 +37,7 @@ public class AggregatorDependenciesMojo
/**
* The path to the touch file, relative to the project's base directory.
- *
+ *
* @parameter property="aggregator.touchFile" default-value="${project.build.directory}/touch.txt"
*/
private File touchFile;
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-ant-based/src/main/scripts/touch.mojos.xml b/its/core-it-support/core-it-plugins/maven-it-plugin-ant-based/src/main/scripts/touch.mojos.xml
index 14fe67110c..8783cd2927 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-ant-based/src/main/scripts/touch.mojos.xml
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-ant-based/src/main/scripts/touch.mojos.xml
@@ -26,7 +26,7 @@ under the License.
true
- touch.outputFile
+ touch.outputFile
outputFile
target/touch.txt
java.io.File
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-artifact/src/main/java/org/apache/maven/plugin/coreit/AbstractRepoMojo.java b/its/core-it-support/core-it-plugins/maven-it-plugin-artifact/src/main/java/org/apache/maven/plugin/coreit/AbstractRepoMojo.java
index 79ebb88e2d..a04fa38a5a 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-artifact/src/main/java/org/apache/maven/plugin/coreit/AbstractRepoMojo.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-artifact/src/main/java/org/apache/maven/plugin/coreit/AbstractRepoMojo.java
@@ -28,7 +28,7 @@ import java.util.Collection;
/**
* Provides common code for the install and deploy mojos.
- *
+ *
* @author Benjamin Bentmann
*
*/
@@ -38,7 +38,7 @@ public abstract class AbstractRepoMojo
/**
* The project's main artifact.
- *
+ *
* @parameter default-value="${project.artifact}"
* @readonly
* @required
@@ -47,7 +47,7 @@ public abstract class AbstractRepoMojo
/**
* The project's attached artifact.
- *
+ *
* @parameter default-value="${project.attachedArtifacts}"
* @readonly
* @required
@@ -56,7 +56,7 @@ public abstract class AbstractRepoMojo
/**
* The packaging of the project.
- *
+ *
* @parameter default-value="${project.packaging}"
* @required
* @readonly
@@ -65,7 +65,7 @@ public abstract class AbstractRepoMojo
/**
* The POM file of the project.
- *
+ *
* @parameter default-value="${project.file}"
* @required
* @readonly
@@ -74,7 +74,7 @@ public abstract class AbstractRepoMojo
/**
* The local repository.
- *
+ *
* @parameter default-value="${localRepository}"
* @readonly
* @required
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-artifact/src/main/java/org/apache/maven/plugin/coreit/AttachMojo.java b/its/core-it-support/core-it-plugins/maven-it-plugin-artifact/src/main/java/org/apache/maven/plugin/coreit/AttachMojo.java
index c48498836f..6e18632bf9 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-artifact/src/main/java/org/apache/maven/plugin/coreit/AttachMojo.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-artifact/src/main/java/org/apache/maven/plugin/coreit/AttachMojo.java
@@ -29,10 +29,10 @@ import java.io.File;
/**
* Attaches a secondary artifact to the current project. This mimics source/javadoc attachments or other assemblies.
- *
+ *
* @goal attach
* @phase package
- *
+ *
* @author Benjamin Bentmann
*
*/
@@ -42,7 +42,7 @@ public class AttachMojo
/**
* The current Maven project.
- *
+ *
* @parameter default-value="${project}"
* @readonly
* @required
@@ -51,14 +51,14 @@ public class AttachMojo
/**
* The Maven project helper.
- *
+ *
* @component
*/
private MavenProjectHelper helper;
/**
* The path to the file to attach, relative to the project base directory. The plugin will not validate this path.
- *
+ *
* @parameter property="artifact.attachedFile"
* @required
*/
@@ -66,7 +66,7 @@ public class AttachMojo
/**
* The type of the artifact to attach.
- *
+ *
* @parameter property="artifact.artifactType"
*/
private String artifactType;
@@ -74,14 +74,14 @@ public class AttachMojo
/**
* The classifier for the attached artifact. If unspecified, the default classifier for the specified artifact type
* is used.
- *
+ *
* @parameter property="artifact.artifactClassifier"
*/
private String artifactClassifier;
/**
* Runs this mojo.
- *
+ *
* @throws MojoFailureException If the attached file has not been set.
*/
public void execute()
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-artifact/src/main/java/org/apache/maven/plugin/coreit/AttachPomMojo.java b/its/core-it-support/core-it-plugins/maven-it-plugin-artifact/src/main/java/org/apache/maven/plugin/coreit/AttachPomMojo.java
index 2867080099..58b92b5848 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-artifact/src/main/java/org/apache/maven/plugin/coreit/AttachPomMojo.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-artifact/src/main/java/org/apache/maven/plugin/coreit/AttachPomMojo.java
@@ -30,10 +30,10 @@ import java.io.File;
/**
* Attaches a POM to the main artifact.
- *
+ *
* @goal attach-pom
* @phase package
- *
+ *
* @author Benjamin Bentmann
*
*/
@@ -43,7 +43,7 @@ public class AttachPomMojo
/**
* The current Maven project.
- *
+ *
* @parameter default-value="${project}"
* @readonly
* @required
@@ -53,7 +53,7 @@ public class AttachPomMojo
/**
* The path to the POM file to attach to the main artifact, relative to the project base directory. The plugin will
* not validate this path.
- *
+ *
* @parameter property="artifact.pomFile" default-value="${project.file.path}"
* @required
*/
@@ -61,7 +61,7 @@ public class AttachPomMojo
/**
* Runs this mojo.
- *
+ *
* @throws MojoFailureException If the artifact file has not been set.
*/
public void execute()
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-artifact/src/main/java/org/apache/maven/plugin/coreit/DeployFileMojo.java b/its/core-it-support/core-it-plugins/maven-it-plugin-artifact/src/main/java/org/apache/maven/plugin/coreit/DeployFileMojo.java
index 2591d92da7..df1d064608 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-artifact/src/main/java/org/apache/maven/plugin/coreit/DeployFileMojo.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-artifact/src/main/java/org/apache/maven/plugin/coreit/DeployFileMojo.java
@@ -33,10 +33,10 @@ import java.io.File;
/**
* Deploys a user-supplied file to some repository. This mimics part of the Maven Deploy Plugin.
- *
+ *
* @goal deploy-file
* @requiresProject false
- *
+ *
* @author Benjamin Bentmann
*
*/
@@ -46,77 +46,77 @@ public class DeployFileMojo
/**
* The file of the artifact to deploy.
- *
+ *
* @parameter property="file"
*/
private File file;
/**
* The group id of the artifact.
- *
+ *
* @parameter property="groupId"
*/
private String groupId;
/**
* The artifact id of the artifact.
- *
+ *
* @parameter property="artifactId"
*/
private String artifactId;
/**
* The version of the artifact.
- *
+ *
* @parameter property="version"
*/
private String version;
/**
* The URL of the repository to deploy to.
- *
+ *
* @parameter property="repositoryUrl"
*/
private String repositoryUrl;
/**
* The ID of the repository to deploy to.
- *
+ *
* @parameter property="repositoryId"
*/
private String repositoryId;
/**
* The repository factory.
- *
+ *
* @component
*/
private ArtifactRepositoryFactory repositoryFactory;
/**
* The repository layout.
- *
+ *
* @component roleHint="default"
*/
private ArtifactRepositoryLayout repositoryLayout;
/**
* The artifact factory.
- *
+ *
* @component
*/
private ArtifactFactory artifactFactory;
/**
* The artifact deployer.
- *
+ *
* @component
*/
private ArtifactDeployer deployer;
/**
* The local repository.
- *
+ *
* @parameter default-value="${localRepository}"
* @readonly
* @required
@@ -125,7 +125,7 @@ public class DeployFileMojo
/**
* Runs this mojo.
- *
+ *
* @throws MojoExecutionException If any artifact could not be deployed.
*/
public void execute()
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-artifact/src/main/java/org/apache/maven/plugin/coreit/InstallCustomMojo.java b/its/core-it-support/core-it-plugins/maven-it-plugin-artifact/src/main/java/org/apache/maven/plugin/coreit/InstallCustomMojo.java
index 789674fd59..26791977ed 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-artifact/src/main/java/org/apache/maven/plugin/coreit/InstallCustomMojo.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-artifact/src/main/java/org/apache/maven/plugin/coreit/InstallCustomMojo.java
@@ -26,9 +26,9 @@ import org.apache.maven.plugin.MojoExecutionException;
/**
* Installs the project artifacts into a local repository with a custom base directory and a custom layout.
- *
+ *
* @goal install-custom
- *
+ *
* @author Benjamin Bentmann
*
*/
@@ -43,14 +43,14 @@ public class InstallCustomMojo
/**
* The base directory of the local repository to install to.
- *
+ *
* @parameter property="install.localRepoDir"
*/
private File localRepoDir;
/**
* Runs this mojo.
- *
+ *
* @throws MojoExecutionException If any artifact could not be installed.
*/
public void execute()
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-artifact/src/main/java/org/apache/maven/plugin/coreit/LatestMojo.java b/its/core-it-support/core-it-plugins/maven-it-plugin-artifact/src/main/java/org/apache/maven/plugin/coreit/LatestMojo.java
index c8c56bee5e..dfdcc07547 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-artifact/src/main/java/org/apache/maven/plugin/coreit/LatestMojo.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-artifact/src/main/java/org/apache/maven/plugin/coreit/LatestMojo.java
@@ -27,10 +27,10 @@ import org.apache.maven.plugin.MojoExecutionException;
/**
* Marks the project's artifact as the latest version.
- *
+ *
* @goal latest
* @phase package
- *
+ *
* @author Benjamin Bentmann
*/
public class LatestMojo
@@ -39,7 +39,7 @@ public class LatestMojo
/**
* The main project artifact.
- *
+ *
* @parameter default-value="${project.artifact}"
* @readonly
* @required
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-artifact/src/main/java/org/apache/maven/plugin/coreit/ReleaseMojo.java b/its/core-it-support/core-it-plugins/maven-it-plugin-artifact/src/main/java/org/apache/maven/plugin/coreit/ReleaseMojo.java
index 5e51f25736..b0545b7d8e 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-artifact/src/main/java/org/apache/maven/plugin/coreit/ReleaseMojo.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-artifact/src/main/java/org/apache/maven/plugin/coreit/ReleaseMojo.java
@@ -27,10 +27,10 @@ import org.apache.maven.project.MavenProject;
/**
* Marks the project's artifact as a release.
- *
+ *
* @goal release
* @phase package
- *
+ *
* @author Benjamin Bentmann
*
*/
@@ -40,7 +40,7 @@ public class ReleaseMojo
/**
* The current Maven project.
- *
+ *
* @parameter default-value="${project}"
* @readonly
* @required
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-artifact/src/main/java/org/apache/maven/plugin/coreit/SetMojo.java b/its/core-it-support/core-it-plugins/maven-it-plugin-artifact/src/main/java/org/apache/maven/plugin/coreit/SetMojo.java
index acabcf72d1..c166f0c3b8 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-artifact/src/main/java/org/apache/maven/plugin/coreit/SetMojo.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-artifact/src/main/java/org/apache/maven/plugin/coreit/SetMojo.java
@@ -30,10 +30,10 @@ import java.io.File;
/**
* Sets the main artifact's file. This is the essence of the Maven JAR Plugin and all the other packaging plugins.
* Creating the actual file for the main artifact is a specific plugin job and not related to the Maven core.
- *
+ *
* @goal set
* @phase package
- *
+ *
* @author Benjamin Bentmann
*
*/
@@ -43,7 +43,7 @@ public class SetMojo
/**
* The current Maven project.
- *
+ *
* @parameter default-value="${project}"
* @readonly
* @required
@@ -53,7 +53,7 @@ public class SetMojo
/**
* The path to the file to set as the main artifact, relative to the project base directory. The plugin will not
* validate this path.
- *
+ *
* @parameter property="artifact.mainFile"
* @required
*/
@@ -61,7 +61,7 @@ public class SetMojo
/**
* Runs this mojo.
- *
+ *
* @throws MojoFailureException If the artifact file has not been set.
*/
public void execute()
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-class-loader/dep-a/src/main/java/org/apache/maven/plugin/coreit/ClassA.java b/its/core-it-support/core-it-plugins/maven-it-plugin-class-loader/dep-a/src/main/java/org/apache/maven/plugin/coreit/ClassA.java
index 39490c5288..345ff4f475 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-class-loader/dep-a/src/main/java/org/apache/maven/plugin/coreit/ClassA.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-class-loader/dep-a/src/main/java/org/apache/maven/plugin/coreit/ClassA.java
@@ -21,7 +21,7 @@ package org.apache.maven.plugin.coreit;
/**
* A test class that is unique to this artifact.
- *
+ *
* @author Benjamin Bentmann
*
*/
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-class-loader/dep-a/src/main/java/org/apache/maven/plugin/coreit/SomeClass.java b/its/core-it-support/core-it-plugins/maven-it-plugin-class-loader/dep-a/src/main/java/org/apache/maven/plugin/coreit/SomeClass.java
index ce1f091706..66ff79a988 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-class-loader/dep-a/src/main/java/org/apache/maven/plugin/coreit/SomeClass.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-class-loader/dep-a/src/main/java/org/apache/maven/plugin/coreit/SomeClass.java
@@ -22,7 +22,7 @@ package org.apache.maven.plugin.coreit;
/**
* A test class that is not unique to this artifact. Other artifacts will deliberately contain an equally named
* class (with different members) to check class path ordering of dependencies.
- *
+ *
* @author Benjamin Bentmann
*
*/
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-class-loader/dep-b/src/main/java/org/apache/maven/plugin/coreit/ClassB.java b/its/core-it-support/core-it-plugins/maven-it-plugin-class-loader/dep-b/src/main/java/org/apache/maven/plugin/coreit/ClassB.java
index e3625eb7c2..4ba9301343 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-class-loader/dep-b/src/main/java/org/apache/maven/plugin/coreit/ClassB.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-class-loader/dep-b/src/main/java/org/apache/maven/plugin/coreit/ClassB.java
@@ -21,7 +21,7 @@ package org.apache.maven.plugin.coreit;
/**
* A test class that is unique to this artifact.
- *
+ *
* @author Benjamin Bentmann
*
*/
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-class-loader/dep-b/src/main/java/org/apache/maven/plugin/coreit/SomeClass.java b/its/core-it-support/core-it-plugins/maven-it-plugin-class-loader/dep-b/src/main/java/org/apache/maven/plugin/coreit/SomeClass.java
index 624dab1832..58c4e8ed9e 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-class-loader/dep-b/src/main/java/org/apache/maven/plugin/coreit/SomeClass.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-class-loader/dep-b/src/main/java/org/apache/maven/plugin/coreit/SomeClass.java
@@ -22,7 +22,7 @@ package org.apache.maven.plugin.coreit;
/**
* A test class that is not unique to this artifact. Other artifacts will deliberately contain an equally named
* class (with different members) to check class path ordering of dependencies.
- *
+ *
* @author Benjamin Bentmann
*
*/
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-class-loader/maven-it-plugin-class-loader/src/main/java/org/apache/maven/plugin/coreit/Component.java b/its/core-it-support/core-it-plugins/maven-it-plugin-class-loader/maven-it-plugin-class-loader/src/main/java/org/apache/maven/plugin/coreit/Component.java
index c71b74809a..70f69048b9 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-class-loader/maven-it-plugin-class-loader/src/main/java/org/apache/maven/plugin/coreit/Component.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-class-loader/maven-it-plugin-class-loader/src/main/java/org/apache/maven/plugin/coreit/Component.java
@@ -21,7 +21,7 @@ package org.apache.maven.plugin.coreit;
/**
* A simple interface for our test components.
- *
+ *
* @author Benjamin Bentmann
*/
public interface Component
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-class-loader/maven-it-plugin-class-loader/src/main/java/org/apache/maven/plugin/coreit/LoadDependenciesMojo.java b/its/core-it-support/core-it-plugins/maven-it-plugin-class-loader/maven-it-plugin-class-loader/src/main/java/org/apache/maven/plugin/coreit/LoadDependenciesMojo.java
index bea3e2237e..f15620e728 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-class-loader/maven-it-plugin-class-loader/src/main/java/org/apache/maven/plugin/coreit/LoadDependenciesMojo.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-class-loader/maven-it-plugin-class-loader/src/main/java/org/apache/maven/plugin/coreit/LoadDependenciesMojo.java
@@ -30,11 +30,11 @@ import java.util.List;
/**
* Loads classes and/or resources from a custom class loader that holds the project dependencies and records the results
* in a properties file.
- *
+ *
* @goal load-dependencies
* @phase initialize
* @requiresDependencyResolution compile
- *
+ *
* @author Benjamin Bentmann
*
*/
@@ -44,7 +44,7 @@ public class LoadDependenciesMojo
/**
* The project's class path to load classes/resources from.
- *
+ *
* @parameter default-value="${project.compileClasspathElements}"
* @readonly
*/
@@ -53,14 +53,14 @@ public class LoadDependenciesMojo
/**
* The path to the properties file used to track the results of the class/resource loading via the project class
* loader.
- *
+ *
* @parameter property="clsldr.projectClassLoaderOutput"
*/
private File projectClassLoaderOutput;
/**
* Runs this mojo.
- *
+ *
* @throws MojoExecutionException If the output file could not be created.
*/
public void execute()
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-class-loader/maven-it-plugin-class-loader/src/main/java/org/apache/maven/plugin/coreit/LoadMojo.java b/its/core-it-support/core-it-plugins/maven-it-plugin-class-loader/maven-it-plugin-class-loader/src/main/java/org/apache/maven/plugin/coreit/LoadMojo.java
index f323f059fe..7702a1c436 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-class-loader/maven-it-plugin-class-loader/src/main/java/org/apache/maven/plugin/coreit/LoadMojo.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-class-loader/maven-it-plugin-class-loader/src/main/java/org/apache/maven/plugin/coreit/LoadMojo.java
@@ -25,10 +25,10 @@ import java.io.File;
/**
* Loads classes and/or resources from the plugin class path and records the results in a properties file.
- *
+ *
* @goal load
* @phase initialize
- *
+ *
* @author Benjamin Bentmann
*
*/
@@ -39,7 +39,7 @@ public class LoadMojo
/**
* The path to the properties file used to track the results of the class/resource loading via the plugin class
* loader.
- *
+ *
* @parameter property="clsldr.pluginClassLoaderOutput"
*/
private File pluginClassLoaderOutput;
@@ -47,14 +47,14 @@ public class LoadMojo
/**
* The path to the properties file used to track the results of the class/resource loading via the thread's context
* class loader.
- *
+ *
* @parameter property="clsldr.contextClassLoaderOutput"
*/
private File contextClassLoaderOutput;
/**
* Runs this mojo.
- *
+ *
* @throws MojoExecutionException If the output file could not be created.
*/
public void execute()
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-class-loader/maven-it-plugin-class-loader/src/main/java/org/apache/maven/plugin/coreit/PropertiesUtil.java b/its/core-it-support/core-it-plugins/maven-it-plugin-class-loader/maven-it-plugin-class-loader/src/main/java/org/apache/maven/plugin/coreit/PropertiesUtil.java
index 332dcc759b..dbdff7ff15 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-class-loader/maven-it-plugin-class-loader/src/main/java/org/apache/maven/plugin/coreit/PropertiesUtil.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-class-loader/maven-it-plugin-class-loader/src/main/java/org/apache/maven/plugin/coreit/PropertiesUtil.java
@@ -29,7 +29,7 @@ import org.apache.maven.plugin.MojoExecutionException;
/**
* Assists in handling properties.
- *
+ *
* @author Benjamin Bentmann
*
*/
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-configuration/src/main/java/org/apache/maven/plugin/coreit/AppendConfigMojo.java b/its/core-it-support/core-it-plugins/maven-it-plugin-configuration/src/main/java/org/apache/maven/plugin/coreit/AppendConfigMojo.java
index b96b602dac..5754dd43c6 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-configuration/src/main/java/org/apache/maven/plugin/coreit/AppendConfigMojo.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-configuration/src/main/java/org/apache/maven/plugin/coreit/AppendConfigMojo.java
@@ -30,10 +30,10 @@ import org.apache.maven.plugin.MojoExecutionException;
/**
* Appends this mojo's configuration into a properties file.
- *
+ *
* @goal append-config
* @phase validate
- *
+ *
* @author Benjamin Bentmann
*
*/
@@ -43,7 +43,7 @@ public class AppendConfigMojo
/**
* The current project's base directory, used for path alignment.
- *
+ *
* @parameter default-value="${basedir}"
* @readonly
*/
@@ -52,7 +52,7 @@ public class AppendConfigMojo
/**
* The path to the properties file into which to save the mojo configuration. Note: This intentionally uses
* another parameter name for the output file than {@link ConfigMojo}.
- *
+ *
* @parameter property="config.outputFile"
*/
private File outputFile;
@@ -60,70 +60,70 @@ public class AppendConfigMojo
/**
* A parameter with a constant default value. Note: This has intentionally a different default value than
* the equally named parameter from {@link ConfigMojo}.
- *
+ *
* @parameter default-value="test"
*/
private String defaultParam;
/**
* A simple parameter of type {@link java.lang.String}.
- *
+ *
* @parameter property="config.stringParam"
*/
private String stringParam;
/**
* A simple parameter of type {@link java.io.File}.
- *
+ *
* @parameter property="config.fileParam"
*/
private File fileParam;
/**
* An array parameter of component type {@link java.lang.String}.
- *
+ *
* @parameter
*/
private String[] stringParams;
/**
* An array parameter of component type {@link java.io.File}.
- *
+ *
* @parameter
*/
private File[] fileParams;
/**
* A collection parameter of type {@link java.util.List}.
- *
+ *
* @parameter
*/
private List listParam;
/**
* A collection parameter of type {@link java.util.Set}.
- *
+ *
* @parameter
*/
private Set setParam;
/**
* A collection parameter of type {@link java.util.Map}.
- *
+ *
* @parameter
*/
private Map mapParam;
/**
* A collection parameter of type {@link java.util.Properties}.
- *
+ *
* @parameter
*/
private Properties propertiesParam;
/**
* Runs this mojo.
- *
+ *
* @throws MojoExecutionException If the output file could not be created.
*/
public void execute()
@@ -154,7 +154,7 @@ public class AppendConfigMojo
/**
* Dumps the mojo configuration into the specified properties.
- *
+ *
* @param props The properties to dump the configuration into, must not be null
.
*/
private void dumpConfiguration( Properties props )
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-configuration/src/main/java/org/apache/maven/plugin/coreit/Bean.java b/its/core-it-support/core-it-plugins/maven-it-plugin-configuration/src/main/java/org/apache/maven/plugin/coreit/Bean.java
index 3f2303468e..8529d3a8dc 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-configuration/src/main/java/org/apache/maven/plugin/coreit/Bean.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-configuration/src/main/java/org/apache/maven/plugin/coreit/Bean.java
@@ -21,7 +21,7 @@ package org.apache.maven.plugin.coreit;
/**
* A bean to receive mojo configuration.
- *
+ *
* @author Benjamin Bentmann
*
*/
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-configuration/src/main/java/org/apache/maven/plugin/coreit/CliConfigMojo.java b/its/core-it-support/core-it-plugins/maven-it-plugin-configuration/src/main/java/org/apache/maven/plugin/coreit/CliConfigMojo.java
index a295c68ec1..614f79b3d2 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-configuration/src/main/java/org/apache/maven/plugin/coreit/CliConfigMojo.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-configuration/src/main/java/org/apache/maven/plugin/coreit/CliConfigMojo.java
@@ -29,10 +29,10 @@ import org.apache.maven.plugin.MojoExecutionException;
/**
* Dumps this mojo's configuration into a properties file.
- *
+ *
* @goal cli-config
* @phase validate
- *
+ *
* @author Benjamin Bentmann
*
*/
@@ -42,7 +42,7 @@ public class CliConfigMojo
/**
* The current project's base directory, used for path alignment.
- *
+ *
* @parameter default-value="${basedir}"
* @readonly
*/
@@ -50,56 +50,56 @@ public class CliConfigMojo
/**
* The path to the properties file into which to save the mojo configuration.
- *
+ *
* @parameter property="config.propertiesFile"
*/
private File propertiesFile;
/**
* A simple parameter of type {@link java.lang.String}.
- *
+ *
* @parameter property="config.stringParam"
*/
private String stringParam;
/**
* A simple parameter of type {@link java.io.File}.
- *
+ *
* @parameter property="config.fileParam"
*/
private File fileParam;
/**
* An array parameter of component type {@link java.lang.String}.
- *
+ *
* @parameter property="config.stringParams"
*/
private String[] stringParams;
/**
* An array parameter of component type {@link java.io.File}.
- *
+ *
* @parameter property="config.fileParams"
*/
private File[] fileParams;
/**
* A collection parameter of type {@link java.util.List}.
- *
+ *
* @parameter property="config.listParam"
*/
private List listParam;
/**
* A collection parameter of type {@link java.util.Set}.
- *
+ *
* @parameter property="config.setParam"
*/
private Set setParam;
/**
* Runs this mojo.
- *
+ *
* @throws MojoExecutionException If the output file could not be created.
*/
public void execute()
@@ -130,7 +130,7 @@ public class CliConfigMojo
/**
* Dumps the mojo configuration into the specified properties.
- *
+ *
* @param props The properties to dump the configuration into, must not be null
.
*/
private void dumpConfiguration( Properties props )
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-configuration/src/main/java/org/apache/maven/plugin/coreit/CustomComponentConfigurator.java b/its/core-it-support/core-it-plugins/maven-it-plugin-configuration/src/main/java/org/apache/maven/plugin/coreit/CustomComponentConfigurator.java
index c295209592..1d5a0e45b8 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-configuration/src/main/java/org/apache/maven/plugin/coreit/CustomComponentConfigurator.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-configuration/src/main/java/org/apache/maven/plugin/coreit/CustomComponentConfigurator.java
@@ -31,7 +31,7 @@ import org.codehaus.plexus.configuration.PlexusConfiguration;
/**
* A custom component configurator. Does not do much special compared to the basic one, but is sufficient to check
* general support of the specific API.
- *
+ *
* @author Benjamin Bentmann
*/
@Component ( role = org.codehaus.plexus.component.configurator.ComponentConfigurator.class, hint = "coreit" )
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-configuration/src/main/java/org/apache/maven/plugin/coreit/CustomConfigMojo.java b/its/core-it-support/core-it-plugins/maven-it-plugin-configuration/src/main/java/org/apache/maven/plugin/coreit/CustomConfigMojo.java
index 3fc60eea74..bbff02fd26 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-configuration/src/main/java/org/apache/maven/plugin/coreit/CustomConfigMojo.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-configuration/src/main/java/org/apache/maven/plugin/coreit/CustomConfigMojo.java
@@ -30,11 +30,11 @@ import org.apache.maven.plugin.MojoExecutionException;
/**
* Dumps this mojo's configuration into a properties file. Note that this mojo uses a custom component configurator.
- *
+ *
* @goal custom-config
* @phase validate
* @configurator coreit
- *
+ *
* @author Benjamin Bentmann
*
*/
@@ -44,7 +44,7 @@ public class CustomConfigMojo
/**
* The current project's base directory, used for path alignment.
- *
+ *
* @parameter default-value="${basedir}"
* @readonly
*/
@@ -52,14 +52,14 @@ public class CustomConfigMojo
/**
* The path to the properties file into which to save the mojo configuration.
- *
+ *
* @parameter property="config.propertiesFile"
*/
private File propertiesFile;
/**
* A parameter being set only by the custom configurator as a proof of its execution.
- *
+ *
* @parameter
*/
String customParam;
@@ -67,70 +67,70 @@ public class CustomConfigMojo
/**
* A parameter with a constant default value. Note: This has intentionally a different default value than
* the equally named parameter from {@link ConfigMojo}.
- *
+ *
* @parameter default-value="test"
*/
private String defaultParam;
/**
* A simple parameter of type {@link java.lang.String}.
- *
+ *
* @parameter property="config.stringParam"
*/
private String stringParam;
/**
* A simple parameter of type {@link java.io.File}.
- *
+ *
* @parameter property="config.fileParam"
*/
private File fileParam;
/**
* An array parameter of component type {@link java.lang.String}.
- *
+ *
* @parameter
*/
private String[] stringParams;
/**
* An array parameter of component type {@link java.io.File}.
- *
+ *
* @parameter
*/
private File[] fileParams;
/**
* A collection parameter of type {@link java.util.List}.
- *
+ *
* @parameter
*/
private List listParam;
/**
* A collection parameter of type {@link java.util.Set}.
- *
+ *
* @parameter
*/
private Set setParam;
/**
* A collection parameter of type {@link java.util.Map}.
- *
+ *
* @parameter
*/
private Map mapParam;
/**
* A collection parameter of type {@link java.util.Properties}.
- *
+ *
* @parameter
*/
private Properties propertiesParam;
/**
* Runs this mojo.
- *
+ *
* @throws MojoExecutionException If the output file could not be created.
*/
public void execute()
@@ -161,7 +161,7 @@ public class CustomConfigMojo
/**
* Dumps the mojo configuration into the specified properties.
- *
+ *
* @param props The properties to dump the configuration into, must not be null
.
*/
private void dumpConfiguration( Properties props )
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-configuration/src/main/java/org/apache/maven/plugin/coreit/RequiredConfigMojo.java b/its/core-it-support/core-it-plugins/maven-it-plugin-configuration/src/main/java/org/apache/maven/plugin/coreit/RequiredConfigMojo.java
index 7081f62f0b..75ae9d63dd 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-configuration/src/main/java/org/apache/maven/plugin/coreit/RequiredConfigMojo.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-configuration/src/main/java/org/apache/maven/plugin/coreit/RequiredConfigMojo.java
@@ -27,10 +27,10 @@ import org.apache.maven.plugin.MojoExecutionException;
/**
* Dumps this mojo's configuration into a properties file.
- *
+ *
* @goal required-config
* @phase validate
- *
+ *
* @author Benjamin Bentmann
*/
public class RequiredConfigMojo
@@ -39,7 +39,7 @@ public class RequiredConfigMojo
/**
* The current project's base directory, used for path alignment.
- *
+ *
* @parameter default-value="${basedir}"
* @readonly
*/
@@ -47,14 +47,14 @@ public class RequiredConfigMojo
/**
* The path to the properties file into which to save the mojo configuration.
- *
+ *
* @parameter property="config.propertiesFile"
*/
private File propertiesFile;
/**
* A required parameter to be set via plugin configuration in POM or system property from CLI.
- *
+ *
* @parameter property="config.requiredParam"
* @required
*/
@@ -62,7 +62,7 @@ public class RequiredConfigMojo
/**
* A required parameter that defaults to a non-mandatory value from the POM.
- *
+ *
* @parameter default-value="${project.url}"
* @required
*/
@@ -70,7 +70,7 @@ public class RequiredConfigMojo
/**
* Runs this mojo.
- *
+ *
* @throws MojoExecutionException If the output file could not be created.
*/
public void execute()
@@ -101,7 +101,7 @@ public class RequiredConfigMojo
/**
* Dumps the mojo configuration into the specified properties.
- *
+ *
* @param props The properties to dump the configuration into, must not be null
.
*/
private void dumpConfiguration( Properties props )
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-context-passing/src/main/java/org/apache/maven/plugin/coreit/CatchMojo.java b/its/core-it-support/core-it-plugins/maven-it-plugin-context-passing/src/main/java/org/apache/maven/plugin/coreit/CatchMojo.java
index cd891ad779..930873c2fc 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-context-passing/src/main/java/org/apache/maven/plugin/coreit/CatchMojo.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-context-passing/src/main/java/org/apache/maven/plugin/coreit/CatchMojo.java
@@ -30,7 +30,7 @@ import java.io.Writer;
/**
* "Catch" a parameter "thrown" by the ThrowMojo through the plugin context, and
* write a file based on it's value to the build output directory.
- *
+ *
* @goal catch
*/
public class CatchMojo
@@ -43,12 +43,12 @@ public class CatchMojo
* @readonly
*/
private File outDir;
-
+
public File getOutDir()
{
return outDir;
}
-
+
public void setOutDir( File outDir )
{
this.outDir = outDir;
@@ -63,16 +63,16 @@ public class CatchMojo
{
outDir.mkdirs();
}
-
+
File outfile = new File( outDir, value );
Writer writer = null;
try
{
writer = new FileWriter( outfile );
-
+
writer.write( value );
-
+
writer.flush();
}
catch ( IOException e )
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-context-passing/src/main/java/org/apache/maven/plugin/coreit/ThrowMojo.java b/its/core-it-support/core-it-plugins/maven-it-plugin-context-passing/src/main/java/org/apache/maven/plugin/coreit/ThrowMojo.java
index 685b9a752c..d0f485b99f 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-context-passing/src/main/java/org/apache/maven/plugin/coreit/ThrowMojo.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-context-passing/src/main/java/org/apache/maven/plugin/coreit/ThrowMojo.java
@@ -23,32 +23,32 @@ import org.apache.maven.plugin.AbstractMojo;
import org.apache.maven.plugin.MojoExecutionException;
/**
- * "Throw" a parameter into the plugin context, for the "catch" mojo to
+ * "Throw" a parameter into the plugin context, for the "catch" mojo to
* pickup and process.
- *
+ *
* @goal throw
*/
public class ThrowMojo
extends AbstractMojo
{
-
+
public static final String THROWN_PARAMETER = "throw-parameter";
/**
* @parameter property="value" default-value="thrown"
*/
private String value;
-
+
public void setValue( String value )
{
this.value = value;
}
-
+
public String getValue()
{
return value;
}
-
+
public void execute()
throws MojoExecutionException
{
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-core-stubs/maven-clean-plugin/src/main/java/org/apache/maven/plugin/coreit/CleanMojo.java b/its/core-it-support/core-it-plugins/maven-it-plugin-core-stubs/maven-clean-plugin/src/main/java/org/apache/maven/plugin/coreit/CleanMojo.java
index 62fbb2dc2a..52ddbca792 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-core-stubs/maven-clean-plugin/src/main/java/org/apache/maven/plugin/coreit/CleanMojo.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-core-stubs/maven-clean-plugin/src/main/java/org/apache/maven/plugin/coreit/CleanMojo.java
@@ -29,10 +29,10 @@ import java.io.IOException;
/**
* Creates a text file in the project base directory.
- *
+ *
* @goal clean
* @phase clean
- *
+ *
* @author Benjamin Bentmann
*
*/
@@ -42,7 +42,7 @@ public class CleanMojo
/**
* The current Maven project.
- *
+ *
* @parameter default-value="${project}"
* @required
* @readonly
@@ -51,14 +51,14 @@ public class CleanMojo
/**
* The path to the output file, relative to the project base directory directory.
- *
+ *
* @parameter
*/
private String pathname = "target/clean-clean.txt";
/**
* Runs this mojo.
- *
+ *
* @throws MojoExecutionException If the output file could not be created.
* @throws MojoFailureException If the output file has not been set.
*/
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-core-stubs/maven-compiler-plugin/src/main/java/org/apache/maven/plugin/coreit/CompileMojo.java b/its/core-it-support/core-it-plugins/maven-it-plugin-core-stubs/maven-compiler-plugin/src/main/java/org/apache/maven/plugin/coreit/CompileMojo.java
index 118f0080ff..440181b676 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-core-stubs/maven-compiler-plugin/src/main/java/org/apache/maven/plugin/coreit/CompileMojo.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-core-stubs/maven-compiler-plugin/src/main/java/org/apache/maven/plugin/coreit/CompileMojo.java
@@ -29,10 +29,10 @@ import java.io.IOException;
/**
* Creates a text file in the project base directory.
- *
+ *
* @goal compile
* @phase compile
- *
+ *
* @author Benjamin Bentmann
*
*/
@@ -42,7 +42,7 @@ public class CompileMojo
/**
* The current Maven project.
- *
+ *
* @parameter default-value="${project}"
* @required
* @readonly
@@ -51,14 +51,14 @@ public class CompileMojo
/**
* The path to the output file, relative to the project base directory directory.
- *
+ *
* @parameter
*/
private String pathname = "target/compiler-compile.txt";
/**
* Runs this mojo.
- *
+ *
* @throws MojoExecutionException If the output file could not be created.
* @throws MojoFailureException If the output file has not been set.
*/
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-core-stubs/maven-compiler-plugin/src/main/java/org/apache/maven/plugin/coreit/TestCompileMojo.java b/its/core-it-support/core-it-plugins/maven-it-plugin-core-stubs/maven-compiler-plugin/src/main/java/org/apache/maven/plugin/coreit/TestCompileMojo.java
index cc0d78d606..8d5f1196c4 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-core-stubs/maven-compiler-plugin/src/main/java/org/apache/maven/plugin/coreit/TestCompileMojo.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-core-stubs/maven-compiler-plugin/src/main/java/org/apache/maven/plugin/coreit/TestCompileMojo.java
@@ -29,10 +29,10 @@ import java.io.IOException;
/**
* Creates a text file in the project base directory.
- *
+ *
* @goal testCompile
* @phase test-compile
- *
+ *
* @author Benjamin Bentmann
*
*/
@@ -42,7 +42,7 @@ public class TestCompileMojo
/**
* The current Maven project.
- *
+ *
* @parameter default-value="${project}"
* @required
* @readonly
@@ -51,14 +51,14 @@ public class TestCompileMojo
/**
* The path to the output file, relative to the project base directory directory.
- *
+ *
* @parameter
*/
private String pathname = "target/compiler-test-compile.txt";
/**
* Runs this mojo.
- *
+ *
* @throws MojoExecutionException If the output file could not be created.
* @throws MojoFailureException If the output file has not been set.
*/
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-core-stubs/maven-deploy-plugin/src/main/java/org/apache/maven/plugin/coreit/DeployMojo.java b/its/core-it-support/core-it-plugins/maven-it-plugin-core-stubs/maven-deploy-plugin/src/main/java/org/apache/maven/plugin/coreit/DeployMojo.java
index 04ac241645..76c17e9ccb 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-core-stubs/maven-deploy-plugin/src/main/java/org/apache/maven/plugin/coreit/DeployMojo.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-core-stubs/maven-deploy-plugin/src/main/java/org/apache/maven/plugin/coreit/DeployMojo.java
@@ -29,10 +29,10 @@ import java.io.IOException;
/**
* Creates a text file in the project base directory.
- *
+ *
* @goal deploy
* @phase deploy
- *
+ *
* @author Benjamin Bentmann
*
*/
@@ -42,7 +42,7 @@ public class DeployMojo
/**
* The current Maven project.
- *
+ *
* @parameter default-value="${project}"
* @required
* @readonly
@@ -51,14 +51,14 @@ public class DeployMojo
/**
* The path to the output file, relative to the project base directory directory.
- *
+ *
* @parameter
*/
private String pathname = "target/deploy-deploy.txt";
/**
* Runs this mojo.
- *
+ *
* @throws MojoExecutionException If the output file could not be created.
* @throws MojoFailureException If the output file has not been set.
*/
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-core-stubs/maven-ear-plugin/src/main/java/org/apache/maven/plugin/coreit/EarMojo.java b/its/core-it-support/core-it-plugins/maven-it-plugin-core-stubs/maven-ear-plugin/src/main/java/org/apache/maven/plugin/coreit/EarMojo.java
index 4e8281a5c6..8b8016073e 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-core-stubs/maven-ear-plugin/src/main/java/org/apache/maven/plugin/coreit/EarMojo.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-core-stubs/maven-ear-plugin/src/main/java/org/apache/maven/plugin/coreit/EarMojo.java
@@ -29,10 +29,10 @@ import java.io.IOException;
/**
* Creates a text file in the project base directory.
- *
+ *
* @goal ear
* @phase package
- *
+ *
* @author Benjamin Bentmann
*
*/
@@ -42,7 +42,7 @@ public class EarMojo
/**
* The current Maven project.
- *
+ *
* @parameter default-value="${project}"
* @required
* @readonly
@@ -51,14 +51,14 @@ public class EarMojo
/**
* The path to the output file, relative to the project base directory directory.
- *
+ *
* @parameter
*/
private String pathname = "target/ear-ear.txt";
/**
* Runs this mojo.
- *
+ *
* @throws MojoExecutionException If the output file could not be created.
* @throws MojoFailureException If the output file has not been set.
*/
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-core-stubs/maven-ear-plugin/src/main/java/org/apache/maven/plugin/coreit/GenerateApplicationXmlMojo.java b/its/core-it-support/core-it-plugins/maven-it-plugin-core-stubs/maven-ear-plugin/src/main/java/org/apache/maven/plugin/coreit/GenerateApplicationXmlMojo.java
index 81ef45c2c3..86362723ad 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-core-stubs/maven-ear-plugin/src/main/java/org/apache/maven/plugin/coreit/GenerateApplicationXmlMojo.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-core-stubs/maven-ear-plugin/src/main/java/org/apache/maven/plugin/coreit/GenerateApplicationXmlMojo.java
@@ -29,10 +29,10 @@ import java.io.IOException;
/**
* Creates a text file in the project base directory.
- *
+ *
* @goal generate-application-xml
* @phase generate-resources
- *
+ *
* @author Benjamin Bentmann
*
*/
@@ -42,7 +42,7 @@ public class GenerateApplicationXmlMojo
/**
* The current Maven project.
- *
+ *
* @parameter default-value="${project}"
* @required
* @readonly
@@ -51,14 +51,14 @@ public class GenerateApplicationXmlMojo
/**
* The path to the output file, relative to the project base directory directory.
- *
+ *
* @parameter
*/
private String pathname = "target/ear-generate-application-xml.txt";
/**
* Runs this mojo.
- *
+ *
* @throws MojoExecutionException If the output file could not be created.
* @throws MojoFailureException If the output file has not been set.
*/
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-core-stubs/maven-ejb-plugin/src/main/java/org/apache/maven/plugin/coreit/EjbMojo.java b/its/core-it-support/core-it-plugins/maven-it-plugin-core-stubs/maven-ejb-plugin/src/main/java/org/apache/maven/plugin/coreit/EjbMojo.java
index adf31ec6dc..607d58f153 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-core-stubs/maven-ejb-plugin/src/main/java/org/apache/maven/plugin/coreit/EjbMojo.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-core-stubs/maven-ejb-plugin/src/main/java/org/apache/maven/plugin/coreit/EjbMojo.java
@@ -29,10 +29,10 @@ import java.io.IOException;
/**
* Creates a text file in the project base directory.
- *
+ *
* @goal ejb
* @phase package
- *
+ *
* @author Benjamin Bentmann
*
*/
@@ -42,7 +42,7 @@ public class EjbMojo
/**
* The current Maven project.
- *
+ *
* @parameter default-value="${project}"
* @required
* @readonly
@@ -51,14 +51,14 @@ public class EjbMojo
/**
* The path to the output file, relative to the project base directory directory.
- *
+ *
* @parameter
*/
private String pathname = "target/ejb-ejb.txt";
/**
* Runs this mojo.
- *
+ *
* @throws MojoExecutionException If the output file could not be created.
* @throws MojoFailureException If the output file has not been set.
*/
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-core-stubs/maven-install-plugin/src/main/java/org/apache/maven/plugin/coreit/InstallMojo.java b/its/core-it-support/core-it-plugins/maven-it-plugin-core-stubs/maven-install-plugin/src/main/java/org/apache/maven/plugin/coreit/InstallMojo.java
index 9b07897ca0..7e85e3bf06 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-core-stubs/maven-install-plugin/src/main/java/org/apache/maven/plugin/coreit/InstallMojo.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-core-stubs/maven-install-plugin/src/main/java/org/apache/maven/plugin/coreit/InstallMojo.java
@@ -29,10 +29,10 @@ import java.io.IOException;
/**
* Creates a text file in the project base directory.
- *
+ *
* @goal install
* @phase install
- *
+ *
* @author Benjamin Bentmann
*
*/
@@ -42,7 +42,7 @@ public class InstallMojo
/**
* The current Maven project.
- *
+ *
* @parameter default-value="${project}"
* @required
* @readonly
@@ -51,14 +51,14 @@ public class InstallMojo
/**
* The path to the output file, relative to the project base directory directory.
- *
+ *
* @parameter
*/
private String pathname = "target/install-install.txt";
/**
* Runs this mojo.
- *
+ *
* @throws MojoExecutionException If the output file could not be created.
* @throws MojoFailureException If the output file has not been set.
*/
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-core-stubs/maven-jar-plugin/src/main/java/org/apache/maven/plugin/coreit/JarMojo.java b/its/core-it-support/core-it-plugins/maven-it-plugin-core-stubs/maven-jar-plugin/src/main/java/org/apache/maven/plugin/coreit/JarMojo.java
index ba7dba3b84..4c89e26373 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-core-stubs/maven-jar-plugin/src/main/java/org/apache/maven/plugin/coreit/JarMojo.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-core-stubs/maven-jar-plugin/src/main/java/org/apache/maven/plugin/coreit/JarMojo.java
@@ -29,10 +29,10 @@ import java.io.IOException;
/**
* Creates a text file in the project base directory.
- *
+ *
* @goal jar
* @phase package
- *
+ *
* @author Benjamin Bentmann
*
*/
@@ -42,7 +42,7 @@ public class JarMojo
/**
* The current Maven project.
- *
+ *
* @parameter default-value="${project}"
* @required
* @readonly
@@ -51,14 +51,14 @@ public class JarMojo
/**
* The path to the output file, relative to the project base directory directory.
- *
+ *
* @parameter
*/
private String pathname = "target/jar-jar.txt";
/**
* Runs this mojo.
- *
+ *
* @throws MojoExecutionException If the output file could not be created.
* @throws MojoFailureException If the output file has not been set.
*/
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-core-stubs/maven-javadoc-plugin/src/main/java/org/apache/maven/plugin/coreit/JarMojo.java b/its/core-it-support/core-it-plugins/maven-it-plugin-core-stubs/maven-javadoc-plugin/src/main/java/org/apache/maven/plugin/coreit/JarMojo.java
index dfde4677bc..2e9c8d7e2b 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-core-stubs/maven-javadoc-plugin/src/main/java/org/apache/maven/plugin/coreit/JarMojo.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-core-stubs/maven-javadoc-plugin/src/main/java/org/apache/maven/plugin/coreit/JarMojo.java
@@ -29,10 +29,10 @@ import java.io.IOException;
/**
* Creates a text file in the project base directory.
- *
+ *
* @goal jar
* @phase package
- *
+ *
* @author Benjamin Bentmann
*
*/
@@ -42,7 +42,7 @@ public class JarMojo
/**
* The current Maven project.
- *
+ *
* @parameter default-value="${project}"
* @required
* @readonly
@@ -51,14 +51,14 @@ public class JarMojo
/**
* The path to the output file, relative to the project base directory directory.
- *
+ *
* @parameter
*/
private String pathname = "target/javadoc-jar.txt";
/**
* Runs this mojo.
- *
+ *
* @throws MojoExecutionException If the output file could not be created.
* @throws MojoFailureException If the output file has not been set.
*/
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-core-stubs/maven-plugin-plugin/src/main/java/org/apache/maven/plugin/coreit/AddPluginArtifactMetadataMojo.java b/its/core-it-support/core-it-plugins/maven-it-plugin-core-stubs/maven-plugin-plugin/src/main/java/org/apache/maven/plugin/coreit/AddPluginArtifactMetadataMojo.java
index 30e54e6c48..a3c2275832 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-core-stubs/maven-plugin-plugin/src/main/java/org/apache/maven/plugin/coreit/AddPluginArtifactMetadataMojo.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-core-stubs/maven-plugin-plugin/src/main/java/org/apache/maven/plugin/coreit/AddPluginArtifactMetadataMojo.java
@@ -29,10 +29,10 @@ import java.io.IOException;
/**
* Creates a text file in the project base directory.
- *
+ *
* @goal addPluginArtifactMetadata
* @phase package
- *
+ *
* @author Benjamin Bentmann
*
*/
@@ -42,7 +42,7 @@ public class AddPluginArtifactMetadataMojo
/**
* The current Maven project.
- *
+ *
* @parameter default-value="${project}"
* @required
* @readonly
@@ -51,14 +51,14 @@ public class AddPluginArtifactMetadataMojo
/**
* The path to the output file, relative to the project base directory directory.
- *
+ *
* @parameter
*/
private String pathname = "target/plugin-add-plugin-artifact-metadata.txt";
/**
* Runs this mojo.
- *
+ *
* @throws MojoExecutionException If the output file could not be created.
* @throws MojoFailureException If the output file has not been set.
*/
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-core-stubs/maven-plugin-plugin/src/main/java/org/apache/maven/plugin/coreit/DescriptorMojo.java b/its/core-it-support/core-it-plugins/maven-it-plugin-core-stubs/maven-plugin-plugin/src/main/java/org/apache/maven/plugin/coreit/DescriptorMojo.java
index 599571a8fe..3f732b5123 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-core-stubs/maven-plugin-plugin/src/main/java/org/apache/maven/plugin/coreit/DescriptorMojo.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-core-stubs/maven-plugin-plugin/src/main/java/org/apache/maven/plugin/coreit/DescriptorMojo.java
@@ -29,10 +29,10 @@ import java.io.IOException;
/**
* Creates a text file in the project base directory.
- *
+ *
* @goal descriptor
* @phase generate-resources
- *
+ *
* @author Benjamin Bentmann
*
*/
@@ -42,7 +42,7 @@ public class DescriptorMojo
/**
* The current Maven project.
- *
+ *
* @parameter default-value="${project}"
* @required
* @readonly
@@ -51,14 +51,14 @@ public class DescriptorMojo
/**
* The path to the output file, relative to the project base directory directory.
- *
+ *
* @parameter
*/
private String pathname = "target/plugin-descriptor.txt";
/**
* Runs this mojo.
- *
+ *
* @throws MojoExecutionException If the output file could not be created.
* @throws MojoFailureException If the output file has not been set.
*/
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-core-stubs/maven-plugin-plugin/src/main/java/org/apache/maven/plugin/coreit/UpdateRegistryMojo.java b/its/core-it-support/core-it-plugins/maven-it-plugin-core-stubs/maven-plugin-plugin/src/main/java/org/apache/maven/plugin/coreit/UpdateRegistryMojo.java
index ae5e7dd645..04fde10616 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-core-stubs/maven-plugin-plugin/src/main/java/org/apache/maven/plugin/coreit/UpdateRegistryMojo.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-core-stubs/maven-plugin-plugin/src/main/java/org/apache/maven/plugin/coreit/UpdateRegistryMojo.java
@@ -29,10 +29,10 @@ import java.io.IOException;
/**
* Creates a text file in the project base directory.
- *
+ *
* @goal updateRegistry
* @phase install
- *
+ *
* @author Benjamin Bentmann
*
*/
@@ -42,7 +42,7 @@ public class UpdateRegistryMojo
/**
* The current Maven project.
- *
+ *
* @parameter default-value="${project}"
* @required
* @readonly
@@ -51,14 +51,14 @@ public class UpdateRegistryMojo
/**
* The path to the output file, relative to the project base directory directory.
- *
+ *
* @parameter
*/
private String pathname = "target/plugin-update-registry.txt";
/**
* Runs this mojo.
- *
+ *
* @throws MojoExecutionException If the output file could not be created.
* @throws MojoFailureException If the output file has not been set.
*/
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-core-stubs/maven-rar-plugin/src/main/java/org/apache/maven/plugin/coreit/RarMojo.java b/its/core-it-support/core-it-plugins/maven-it-plugin-core-stubs/maven-rar-plugin/src/main/java/org/apache/maven/plugin/coreit/RarMojo.java
index ab06615726..0ac43a948d 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-core-stubs/maven-rar-plugin/src/main/java/org/apache/maven/plugin/coreit/RarMojo.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-core-stubs/maven-rar-plugin/src/main/java/org/apache/maven/plugin/coreit/RarMojo.java
@@ -29,10 +29,10 @@ import java.io.IOException;
/**
* Creates a text file in the project base directory.
- *
+ *
* @goal rar
* @phase package
- *
+ *
* @author Benjamin Bentmann
*
*/
@@ -42,7 +42,7 @@ public class RarMojo
/**
* The current Maven project.
- *
+ *
* @parameter default-value="${project}"
* @required
* @readonly
@@ -51,14 +51,14 @@ public class RarMojo
/**
* The path to the output file, relative to the project base directory directory.
- *
+ *
* @parameter
*/
private String pathname = "target/rar-rar.txt";
/**
* Runs this mojo.
- *
+ *
* @throws MojoExecutionException If the output file could not be created.
* @throws MojoFailureException If the output file has not been set.
*/
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-core-stubs/maven-resources-plugin/src/main/java/org/apache/maven/plugin/coreit/TestResourcesMojo.java b/its/core-it-support/core-it-plugins/maven-it-plugin-core-stubs/maven-resources-plugin/src/main/java/org/apache/maven/plugin/coreit/TestResourcesMojo.java
index bd8964a3db..17cf737652 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-core-stubs/maven-resources-plugin/src/main/java/org/apache/maven/plugin/coreit/TestResourcesMojo.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-core-stubs/maven-resources-plugin/src/main/java/org/apache/maven/plugin/coreit/TestResourcesMojo.java
@@ -29,10 +29,10 @@ import java.io.IOException;
/**
* Creates a text file in the project base directory.
- *
+ *
* @goal testResources
* @phase process-test-resources
- *
+ *
* @author Benjamin Bentmann
*
*/
@@ -42,7 +42,7 @@ public class TestResourcesMojo
/**
* The current Maven project.
- *
+ *
* @parameter default-value="${project}"
* @required
* @readonly
@@ -51,14 +51,14 @@ public class TestResourcesMojo
/**
* The path to the output file, relative to the project base directory directory.
- *
+ *
* @parameter
*/
private String pathname = "target/resources-test-resources.txt";
/**
* Runs this mojo.
- *
+ *
* @throws MojoExecutionException If the output file could not be created.
* @throws MojoFailureException If the output file has not been set.
*/
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-core-stubs/maven-site-plugin/src/main/java/org/apache/maven/plugin/coreit/AttachDescriptorMojo.java b/its/core-it-support/core-it-plugins/maven-it-plugin-core-stubs/maven-site-plugin/src/main/java/org/apache/maven/plugin/coreit/AttachDescriptorMojo.java
index 6e21b0d851..51305a1904 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-core-stubs/maven-site-plugin/src/main/java/org/apache/maven/plugin/coreit/AttachDescriptorMojo.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-core-stubs/maven-site-plugin/src/main/java/org/apache/maven/plugin/coreit/AttachDescriptorMojo.java
@@ -29,10 +29,10 @@ import java.io.IOException;
/**
* Creates a text file in the project base directory.
- *
+ *
* @goal attach-descriptor
* @phase package
- *
+ *
* @author Benjamin Bentmann
*
*/
@@ -42,7 +42,7 @@ public class AttachDescriptorMojo
/**
* The current Maven project.
- *
+ *
* @parameter default-value="${project}"
* @required
* @readonly
@@ -51,14 +51,14 @@ public class AttachDescriptorMojo
/**
* The path to the output file, relative to the project base directory directory.
- *
+ *
* @parameter
*/
private String pathname = "target/site-attach-descriptor.txt";
/**
* Runs this mojo.
- *
+ *
* @throws MojoExecutionException If the output file could not be created.
* @throws MojoFailureException If the output file has not been set.
*/
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-core-stubs/maven-site-plugin/src/main/java/org/apache/maven/plugin/coreit/DeployMojo.java b/its/core-it-support/core-it-plugins/maven-it-plugin-core-stubs/maven-site-plugin/src/main/java/org/apache/maven/plugin/coreit/DeployMojo.java
index 953c4ba41c..cf56c44c41 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-core-stubs/maven-site-plugin/src/main/java/org/apache/maven/plugin/coreit/DeployMojo.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-core-stubs/maven-site-plugin/src/main/java/org/apache/maven/plugin/coreit/DeployMojo.java
@@ -29,10 +29,10 @@ import java.io.IOException;
/**
* Creates a text file in the project base directory.
- *
+ *
* @goal deploy
* @phase site-deploy
- *
+ *
* @author Benjamin Bentmann
*
*/
@@ -42,7 +42,7 @@ public class DeployMojo
/**
* The current Maven project.
- *
+ *
* @parameter default-value="${project}"
* @required
* @readonly
@@ -51,14 +51,14 @@ public class DeployMojo
/**
* The path to the output file, relative to the project base directory directory.
- *
+ *
* @parameter
*/
private String pathname = "target/site-deploy.txt";
/**
* Runs this mojo.
- *
+ *
* @throws MojoExecutionException If the output file could not be created.
* @throws MojoFailureException If the output file has not been set.
*/
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-core-stubs/maven-site-plugin/src/main/java/org/apache/maven/plugin/coreit/SiteMojo.java b/its/core-it-support/core-it-plugins/maven-it-plugin-core-stubs/maven-site-plugin/src/main/java/org/apache/maven/plugin/coreit/SiteMojo.java
index da770a6c11..08ab0f9874 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-core-stubs/maven-site-plugin/src/main/java/org/apache/maven/plugin/coreit/SiteMojo.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-core-stubs/maven-site-plugin/src/main/java/org/apache/maven/plugin/coreit/SiteMojo.java
@@ -29,10 +29,10 @@ import java.io.IOException;
/**
* Creates a text file in the project base directory.
- *
+ *
* @goal site
* @phase site
- *
+ *
* @author Benjamin Bentmann
*
*/
@@ -42,7 +42,7 @@ public class SiteMojo
/**
* The current Maven project.
- *
+ *
* @parameter default-value="${project}"
* @required
* @readonly
@@ -51,14 +51,14 @@ public class SiteMojo
/**
* The path to the output file, relative to the project base directory directory.
- *
+ *
* @parameter
*/
private String pathname = "target/site-site.txt";
/**
* Runs this mojo.
- *
+ *
* @throws MojoExecutionException If the output file could not be created.
* @throws MojoFailureException If the output file has not been set.
*/
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-core-stubs/maven-source-plugin/src/main/java/org/apache/maven/plugin/coreit/JarMojo.java b/its/core-it-support/core-it-plugins/maven-it-plugin-core-stubs/maven-source-plugin/src/main/java/org/apache/maven/plugin/coreit/JarMojo.java
index e94854b058..9c869b8161 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-core-stubs/maven-source-plugin/src/main/java/org/apache/maven/plugin/coreit/JarMojo.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-core-stubs/maven-source-plugin/src/main/java/org/apache/maven/plugin/coreit/JarMojo.java
@@ -29,10 +29,10 @@ import java.io.IOException;
/**
* Creates a text file in the project base directory.
- *
+ *
* @goal jar
* @phase package
- *
+ *
* @author Benjamin Bentmann
*
*/
@@ -42,7 +42,7 @@ public class JarMojo
/**
* The current Maven project.
- *
+ *
* @parameter default-value="${project}"
* @required
* @readonly
@@ -51,14 +51,14 @@ public class JarMojo
/**
* The path to the output file, relative to the project base directory directory.
- *
+ *
* @parameter
*/
private String pathname = "target/source-jar.txt";
/**
* Runs this mojo.
- *
+ *
* @throws MojoExecutionException If the output file could not be created.
* @throws MojoFailureException If the output file has not been set.
*/
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-core-stubs/maven-surefire-plugin/src/main/java/org/apache/maven/plugin/coreit/TestMojo.java b/its/core-it-support/core-it-plugins/maven-it-plugin-core-stubs/maven-surefire-plugin/src/main/java/org/apache/maven/plugin/coreit/TestMojo.java
index e70d52d708..0fca6936a9 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-core-stubs/maven-surefire-plugin/src/main/java/org/apache/maven/plugin/coreit/TestMojo.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-core-stubs/maven-surefire-plugin/src/main/java/org/apache/maven/plugin/coreit/TestMojo.java
@@ -29,10 +29,10 @@ import java.io.IOException;
/**
* Creates a text file in the project base directory.
- *
+ *
* @goal test
* @phase test
- *
+ *
* @author Benjamin Bentmann
*
*/
@@ -42,7 +42,7 @@ public class TestMojo
/**
* The current Maven project.
- *
+ *
* @parameter default-value="${project}"
* @required
* @readonly
@@ -51,14 +51,14 @@ public class TestMojo
/**
* The path to the output file, relative to the project base directory directory.
- *
+ *
* @parameter
*/
private String pathname = "target/surefire-test.txt";
/**
* Runs this mojo.
- *
+ *
* @throws MojoExecutionException If the output file could not be created.
* @throws MojoFailureException If the output file has not been set.
*/
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-core-stubs/maven-war-plugin/src/main/java/org/apache/maven/plugin/coreit/WarMojo.java b/its/core-it-support/core-it-plugins/maven-it-plugin-core-stubs/maven-war-plugin/src/main/java/org/apache/maven/plugin/coreit/WarMojo.java
index 7399694698..ad23ea6978 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-core-stubs/maven-war-plugin/src/main/java/org/apache/maven/plugin/coreit/WarMojo.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-core-stubs/maven-war-plugin/src/main/java/org/apache/maven/plugin/coreit/WarMojo.java
@@ -29,10 +29,10 @@ import java.io.IOException;
/**
* Creates a text file in the project base directory.
- *
+ *
* @goal war
* @phase package
- *
+ *
* @author Benjamin Bentmann
*
*/
@@ -42,7 +42,7 @@ public class WarMojo
/**
* The current Maven project.
- *
+ *
* @parameter default-value="${project}"
* @required
* @readonly
@@ -51,14 +51,14 @@ public class WarMojo
/**
* The path to the output file, relative to the project base directory directory.
- *
+ *
* @parameter
*/
private String pathname = "target/war-war.txt";
/**
* Runs this mojo.
- *
+ *
* @throws MojoExecutionException If the output file could not be created.
* @throws MojoFailureException If the output file has not been set.
*/
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-dependency-collection/src/main/java/org/apache/maven/plugin/coreit/CompileMojo.java b/its/core-it-support/core-it-plugins/maven-it-plugin-dependency-collection/src/main/java/org/apache/maven/plugin/coreit/CompileMojo.java
index 055eb312a8..13d42c014a 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-dependency-collection/src/main/java/org/apache/maven/plugin/coreit/CompileMojo.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-dependency-collection/src/main/java/org/apache/maven/plugin/coreit/CompileMojo.java
@@ -24,10 +24,10 @@ import org.apache.maven.plugin.MojoExecutionException;
/**
* Creates text files that list the dependencies with scope compile in the order returned from the Maven core.
- *
+ *
* @goal compile
* @requiresDependencyCollection compile
- *
+ *
* @author Benjamin Bentmann
*
*/
@@ -40,7 +40,7 @@ public class CompileMojo
* UTF-8 encoded file specifies an artifact identifier. If not specified, the artifact list will not be written to
* disk. Unlike the compile artifacts, the collection of project artifacts additionally contains those artifacts
* that do not contribute to the class path.
- *
+ *
* @parameter property="depres.projectArtifacts"
*/
private String projectArtifacts;
@@ -49,14 +49,14 @@ public class CompileMojo
* The path to the output file for the compile artifacts, relative to the project base directory. Each line of this
* UTF-8 encoded file specifies an artifact identifier. If not specified, the artifact list will not be written to
* disk.
- *
+ *
* @parameter property="depres.compileArtifacts"
*/
private String compileArtifacts;
/**
* Runs this mojo.
- *
+ *
* @throws MojoExecutionException If the output file could not be created or any dependency could not be resolved.
*/
public void execute()
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-dependency-collection/src/main/java/org/apache/maven/plugin/coreit/RuntimeMojo.java b/its/core-it-support/core-it-plugins/maven-it-plugin-dependency-collection/src/main/java/org/apache/maven/plugin/coreit/RuntimeMojo.java
index 466721f2e8..08a1042e5b 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-dependency-collection/src/main/java/org/apache/maven/plugin/coreit/RuntimeMojo.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-dependency-collection/src/main/java/org/apache/maven/plugin/coreit/RuntimeMojo.java
@@ -24,10 +24,10 @@ import org.apache.maven.plugin.MojoExecutionException;
/**
* Creates text files that list the dependencies with scope runtime in the order returned from the Maven core.
- *
+ *
* @goal runtime
* @requiresDependencyCollection runtime
- *
+ *
* @author Benjamin Bentmann
*
*/
@@ -40,7 +40,7 @@ public class RuntimeMojo
* UTF-8 encoded file specifies an artifact identifier. If not specified, the artifact list will not be written to
* disk. Unlike the runtime artifacts, the collection of project artifacts additionally contains those artifacts
* that do not contribute to the class path.
- *
+ *
* @parameter property="depres.projectArtifacts"
*/
private String projectArtifacts;
@@ -49,14 +49,14 @@ public class RuntimeMojo
* The path to the output file for the runtime artifacts, relative to the project base directory. Each line of this
* UTF-8 encoded file specifies an artifact identifier. If not specified, the artifact list will not be written to
* disk.
- *
+ *
* @parameter property="depres.runtimeArtifacts"
*/
private String runtimeArtifacts;
/**
* Runs this mojo.
- *
+ *
* @throws MojoExecutionException If the output file could not be created or any dependency could not be resolved.
*/
public void execute()
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-dependency-collection/src/main/java/org/apache/maven/plugin/coreit/TestMojo.java b/its/core-it-support/core-it-plugins/maven-it-plugin-dependency-collection/src/main/java/org/apache/maven/plugin/coreit/TestMojo.java
index e470848e48..adb3da05ab 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-dependency-collection/src/main/java/org/apache/maven/plugin/coreit/TestMojo.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-dependency-collection/src/main/java/org/apache/maven/plugin/coreit/TestMojo.java
@@ -24,10 +24,10 @@ import org.apache.maven.plugin.MojoExecutionException;
/**
* Creates text files that list the dependencies with scope test in the order returned from the Maven core.
- *
+ *
* @goal test
* @requiresDependencyCollection test
- *
+ *
* @author Benjamin Bentmann
*
*/
@@ -40,7 +40,7 @@ public class TestMojo
* UTF-8 encoded file specifies an artifact identifier. If not specified, the artifact list will not be written to
* disk. Unlike the test artifacts, the collection of project artifacts additionally contains those artifacts that
* do not contribute to the class path.
- *
+ *
* @parameter property="depres.projectArtifacts"
*/
private String projectArtifacts;
@@ -49,14 +49,14 @@ public class TestMojo
* The path to the output file for the test artifacts, relative to the project base directory. Each line of this
* UTF-8 encoded file specifies an artifact identifier. If not specified, the artifact list will not be written to
* disk.
- *
+ *
* @parameter property="depres.testArtifacts"
*/
private String testArtifacts;
/**
* Runs this mojo.
- *
+ *
* @throws MojoExecutionException If the output file could not be created or any dependency could not be resolved.
*/
public void execute()
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-dependency-resolution/src/main/java/org/apache/maven/plugin/coreit/CompileMojo.java b/its/core-it-support/core-it-plugins/maven-it-plugin-dependency-resolution/src/main/java/org/apache/maven/plugin/coreit/CompileMojo.java
index e0b6021ab3..d50042dafc 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-dependency-resolution/src/main/java/org/apache/maven/plugin/coreit/CompileMojo.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-dependency-resolution/src/main/java/org/apache/maven/plugin/coreit/CompileMojo.java
@@ -26,10 +26,10 @@ import org.apache.maven.plugin.MojoExecutionException;
* Creates text files that list the dependencies with scope compile in the order returned from the Maven core. The path
* parameters of this mojo support the token @idx@
to dynamically insert a running index in order
* to distinguish multiple executions of the same mojo.
- *
+ *
* @goal compile
* @requiresDependencyResolution compile
- *
+ *
* @author Benjamin Bentmann
*
*/
@@ -42,7 +42,7 @@ public class CompileMojo
* UTF-8 encoded file specifies an artifact identifier. If not specified, the artifact list will not be written to
* disk. Unlike the compile artifacts, the collection of project artifacts additionally contains those artifacts
* that do not contribute to the class path.
- *
+ *
* @parameter property="depres.projectArtifacts"
*/
private String projectArtifacts;
@@ -51,7 +51,7 @@ public class CompileMojo
* The path to the output file for the compile artifacts, relative to the project base directory. Each line of this
* UTF-8 encoded file specifies an artifact identifier. If not specified, the artifact list will not be written to
* disk.
- *
+ *
* @parameter property="depres.compileArtifacts"
*/
private String compileArtifacts;
@@ -60,7 +60,7 @@ public class CompileMojo
* The path to the output file for the compile class path, relative to the project base directory. Each line of
* this UTF-8 encoded file specifies the absolute path to a class path element. If not specified, the class path
* will not be written to disk.
- *
+ *
* @parameter property="depres.compileClassPath"
*/
private String compileClassPath;
@@ -69,14 +69,14 @@ public class CompileMojo
* The path to the properties file for the checksums of the compile class path elements, relative to the project
* base directory. The (trimmed) path to a JAR is used as the property key, the property value is the SHA-1 hash of
* the JAR. If not specified, the class path checksums will not be calculated.
- *
+ *
* @parameter property="depres.compileClassPathChecksums"
*/
private String compileClassPathChecksums;
/**
* Runs this mojo.
- *
+ *
* @throws MojoExecutionException If the output file could not be created or any dependency could not be resolved.
*/
public void execute()
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-dependency-resolution/src/main/java/org/apache/maven/plugin/coreit/CompileRuntimeMojo.java b/its/core-it-support/core-it-plugins/maven-it-plugin-dependency-resolution/src/main/java/org/apache/maven/plugin/coreit/CompileRuntimeMojo.java
index da2f1e5def..13f2d78f6a 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-dependency-resolution/src/main/java/org/apache/maven/plugin/coreit/CompileRuntimeMojo.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-dependency-resolution/src/main/java/org/apache/maven/plugin/coreit/CompileRuntimeMojo.java
@@ -26,10 +26,10 @@ import org.apache.maven.plugin.MojoExecutionException;
* Creates text files that list the dependencies with scope compile and runtime in the order returned from the Maven
* core. The path parameters of this mojo support the token @idx@
to dynamically insert a running
* index in order to distinguish multiple executions of the same mojo.
- *
+ *
* @goal compile-runtime
* @requiresDependencyResolution compile+runtime
- *
+ *
* @author Benjamin Bentmann
*
*/
@@ -42,7 +42,7 @@ public class CompileRuntimeMojo
* UTF-8 encoded file specifies an artifact identifier. If not specified, the artifact list will not be written to
* disk. Unlike the compile artifacts, the collection of project artifacts additionally contains those artifacts
* that do not contribute to the class path.
- *
+ *
* @parameter property="depres.projectArtifacts"
*/
private String projectArtifacts;
@@ -51,7 +51,7 @@ public class CompileRuntimeMojo
* The path to the output file for the compile artifacts, relative to the project base directory. Each line of this
* UTF-8 encoded file specifies an artifact identifier. If not specified, the artifact list will not be written to
* disk.
- *
+ *
* @parameter property="depres.compileArtifacts"
*/
private String compileArtifacts;
@@ -60,7 +60,7 @@ public class CompileRuntimeMojo
* The path to the output file for the compile class path, relative to the project base directory. Each line of
* this UTF-8 encoded file specifies the absolute path to a class path element. If not specified, the class path
* will not be written to disk.
- *
+ *
* @parameter property="depres.compileClassPath"
*/
private String compileClassPath;
@@ -69,7 +69,7 @@ public class CompileRuntimeMojo
* The path to the properties file for the checksums of the compile class path elements, relative to the project
* base directory. The (trimmed) path to a JAR is used as the property key, the property value is the SHA-1 hash of
* the JAR. If not specified, the class path checksums will not be calculated.
- *
+ *
* @parameter property="depres.compileClassPathChecksums"
*/
private String compileClassPathChecksums;
@@ -78,7 +78,7 @@ public class CompileRuntimeMojo
* The path to the output file for the runtime artifacts, relative to the project base directory. Each line of this
* UTF-8 encoded file specifies an artifact identifier. If not specified, the artifact list will not be written to
* disk.
- *
+ *
* @parameter property="depres.runtimeArtifacts"
*/
private String runtimeArtifacts;
@@ -87,7 +87,7 @@ public class CompileRuntimeMojo
* The path to the output file for the runtime class path, relative to the project base directory. Each line of
* this UTF-8 encoded file specifies the absolute path to a class path element. If not specified, the class path
* will not be written to disk.
- *
+ *
* @parameter property="depres.runtimeClassPath"
*/
private String runtimeClassPath;
@@ -96,14 +96,14 @@ public class CompileRuntimeMojo
* The path to the properties file for the checksums of the runtime class path elements, relative to the project
* base directory. The (trimmed) path to a JAR is used as the property key, the property value is the SHA-1 hash of
* the JAR. If not specified, the class path checksums will not be calculated.
- *
+ *
* @parameter property="depres.runtimeClassPathChecksums"
*/
private String runtimeClassPathChecksums;
/**
* Runs this mojo.
- *
+ *
* @throws MojoExecutionException If the output file could not be created or any dependency could not be resolved.
*/
public void execute()
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-dependency-resolution/src/main/java/org/apache/maven/plugin/coreit/ForkTestMojo.java b/its/core-it-support/core-it-plugins/maven-it-plugin-dependency-resolution/src/main/java/org/apache/maven/plugin/coreit/ForkTestMojo.java
index 6ff2d707fe..ec2d1eab9b 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-dependency-resolution/src/main/java/org/apache/maven/plugin/coreit/ForkTestMojo.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-dependency-resolution/src/main/java/org/apache/maven/plugin/coreit/ForkTestMojo.java
@@ -24,10 +24,10 @@ import org.apache.maven.plugin.MojoExecutionException;
/**
* Forks the "test" mojo to check interplay of forking and dependency resolution.
- *
+ *
* @goal fork-test
* @execute goal="test"
- *
+ *
* @author Benjamin Bentmann
*
*/
@@ -37,7 +37,7 @@ public class ForkTestMojo
/**
* Runs this mojo.
- *
+ *
* @throws MojoExecutionException If an error occured.
*/
public void execute()
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-dependency-resolution/src/main/java/org/apache/maven/plugin/coreit/RuntimeMojo.java b/its/core-it-support/core-it-plugins/maven-it-plugin-dependency-resolution/src/main/java/org/apache/maven/plugin/coreit/RuntimeMojo.java
index 0d15522f87..0d8be7f8f4 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-dependency-resolution/src/main/java/org/apache/maven/plugin/coreit/RuntimeMojo.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-dependency-resolution/src/main/java/org/apache/maven/plugin/coreit/RuntimeMojo.java
@@ -26,10 +26,10 @@ import org.apache.maven.plugin.MojoExecutionException;
* Creates text files that list the dependencies with scope runtime in the order returned from the Maven core. The path
* parameters of this mojo support the token @idx@
to dynamically insert a running index in order
* to distinguish multiple executions of the same mojo.
- *
+ *
* @goal runtime
* @requiresDependencyResolution runtime
- *
+ *
* @author Benjamin Bentmann
*
*/
@@ -42,7 +42,7 @@ public class RuntimeMojo
* UTF-8 encoded file specifies an artifact identifier. If not specified, the artifact list will not be written to
* disk. Unlike the runtime artifacts, the collection of project artifacts additionally contains those artifacts
* that do not contribute to the class path.
- *
+ *
* @parameter property="depres.projectArtifacts"
*/
private String projectArtifacts;
@@ -51,7 +51,7 @@ public class RuntimeMojo
* The path to the output file for the runtime artifacts, relative to the project base directory. Each line of this
* UTF-8 encoded file specifies an artifact identifier. If not specified, the artifact list will not be written to
* disk.
- *
+ *
* @parameter property="depres.runtimeArtifacts"
*/
private String runtimeArtifacts;
@@ -60,7 +60,7 @@ public class RuntimeMojo
* The path to the output file for the runtime class path, relative to the project base directory. Each line of
* this UTF-8 encoded file specifies the absolute path to a class path element. If not specified, the class path
* will not be written to disk.
- *
+ *
* @parameter property="depres.runtimeClassPath"
*/
private String runtimeClassPath;
@@ -69,14 +69,14 @@ public class RuntimeMojo
* The path to the properties file for the checksums of the runtime class path elements, relative to the project
* base directory. The (trimmed) path to a JAR is used as the property key, the property value is the SHA-1 hash of
* the JAR. If not specified, the class path checksums will not be calculated.
- *
+ *
* @parameter property="depres.runtimeClassPathChecksums"
*/
private String runtimeClassPathChecksums;
/**
* Runs this mojo.
- *
+ *
* @throws MojoExecutionException If the output file could not be created or any dependency could not be resolved.
*/
public void execute()
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-dependency-resolution/src/main/java/org/apache/maven/plugin/coreit/TestMojo.java b/its/core-it-support/core-it-plugins/maven-it-plugin-dependency-resolution/src/main/java/org/apache/maven/plugin/coreit/TestMojo.java
index 8dbb18c6ed..85e9ebe6fa 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-dependency-resolution/src/main/java/org/apache/maven/plugin/coreit/TestMojo.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-dependency-resolution/src/main/java/org/apache/maven/plugin/coreit/TestMojo.java
@@ -26,10 +26,10 @@ import org.apache.maven.plugin.MojoExecutionException;
* Creates text files that list the dependencies with scope test in the order returned from the Maven core. The path
* parameters of this mojo support the token @idx@
to dynamically insert a running index in order
* to distinguish multiple executions of the same mojo.
- *
+ *
* @goal test
* @requiresDependencyResolution test
- *
+ *
* @author Benjamin Bentmann
*
*/
@@ -42,7 +42,7 @@ public class TestMojo
* UTF-8 encoded file specifies an artifact identifier. If not specified, the artifact list will not be written to
* disk. Unlike the test artifacts, the collection of project artifacts additionally contains those artifacts that
* do not contribute to the class path.
- *
+ *
* @parameter property="depres.projectArtifacts"
*/
private String projectArtifacts;
@@ -52,7 +52,7 @@ public class TestMojo
* of this UTF-8 encoded file specifies an artifact identifier. If not specified, the artifact list will not be
* written to disk. Unlike the test artifacts, the collection of direct project artifacts additionally contains
* those artifacts that do not contribute to the class path.
- *
+ *
* @parameter property="depres.dependencyArtifacts"
*/
private String dependencyArtifacts;
@@ -61,7 +61,7 @@ public class TestMojo
* The path to the output file for the test artifacts, relative to the project base directory. Each line of this
* UTF-8 encoded file specifies an artifact identifier. If not specified, the artifact list will not be written to
* disk.
- *
+ *
* @parameter property="depres.testArtifacts"
*/
private String testArtifacts;
@@ -70,7 +70,7 @@ public class TestMojo
* The path to the output file for the test class path, relative to the project base directory. Each line of
* this UTF-8 encoded file specifies the absolute path to a class path element. If not specified, the class path
* will not be written to disk.
- *
+ *
* @parameter property="depres.testClassPath"
*/
private String testClassPath;
@@ -79,14 +79,14 @@ public class TestMojo
* The path to the properties file for the checksums of the test class path elements, relative to the project base
* directory. The (trimmed) path to a JAR is used as the property key, the property value is the SHA-1 hash of the
* JAR. If not specified, the class path checksums will not be calculated.
- *
+ *
* @parameter property="depres.testClassPathChecksums"
*/
private String testClassPathChecksums;
/**
* Runs this mojo.
- *
+ *
* @throws MojoExecutionException If the output file could not be created or any dependency could not be resolved.
*/
public void execute()
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-error/pom.xml b/its/core-it-support/core-it-plugins/maven-it-plugin-error/pom.xml
index 0c703d6e6c..9c1bbbd42a 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-error/pom.xml
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-error/pom.xml
@@ -30,7 +30,7 @@ under the License.
maven-it-plugin-error
maven-plugin
-
+
Maven IT Plugin :: Error Mojos
A test plugin that throws various sorts of errors when loaded or executed. This plugin is designed to test Maven's ability
@@ -55,7 +55,7 @@ under the License.
provided
-
+
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-error/src/main/java/org/apache/maven/plugin/coreit/MojoComponentLookupExceptionMojo.java b/its/core-it-support/core-it-plugins/maven-it-plugin-error/src/main/java/org/apache/maven/plugin/coreit/MojoComponentLookupExceptionMojo.java
index f19260a479..d824061487 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-error/src/main/java/org/apache/maven/plugin/coreit/MojoComponentLookupExceptionMojo.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-error/src/main/java/org/apache/maven/plugin/coreit/MojoComponentLookupExceptionMojo.java
@@ -30,7 +30,7 @@ import org.apache.maven.plugin.MojoFailureException;
public class MojoComponentLookupExceptionMojo
extends AbstractMojo
{
-
+
public void execute()
throws MojoExecutionException, MojoFailureException
{
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-error/src/main/java/org/apache/maven/plugin/coreit/MojoFailureExceptionMojo.java b/its/core-it-support/core-it-plugins/maven-it-plugin-error/src/main/java/org/apache/maven/plugin/coreit/MojoFailureExceptionMojo.java
index 48c7486bc2..4810153eb8 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-error/src/main/java/org/apache/maven/plugin/coreit/MojoFailureExceptionMojo.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-error/src/main/java/org/apache/maven/plugin/coreit/MojoFailureExceptionMojo.java
@@ -33,20 +33,20 @@ public class MojoFailureExceptionMojo
* Message used in {@link MojoFailureException#MojoFailureException(String)}, unless longMessage
* is supplied; then, this becomes the short message in
* {@link MojoFailureException#MojoFailureException(Object, String, String)}.
- *
+ *
* @parameter property="error.message" default-value="Planned MojoExecutionException."
* @required
*/
private String message;
-
+
/**
* If supplied, The form {@link MojoFailureException#MojoFailureException(Object, String, String)} will be used.
- *
+ *
* @parameter property="error.longMessage"
* @required
*/
private String longMessage;
-
+
/**
* @parameter property="error.source"
*/
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-error/src/main/java/org/apache/maven/plugin/coreit/NoClassDefFoundErrorComponentMojo.java b/its/core-it-support/core-it-plugins/maven-it-plugin-error/src/main/java/org/apache/maven/plugin/coreit/NoClassDefFoundErrorComponentMojo.java
index 85350f7a09..d220ffae93 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-error/src/main/java/org/apache/maven/plugin/coreit/NoClassDefFoundErrorComponentMojo.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-error/src/main/java/org/apache/maven/plugin/coreit/NoClassDefFoundErrorComponentMojo.java
@@ -28,14 +28,14 @@ import junit.framework.TestCase;
/**
* Takes a parameter with a class from a provided-scope dependency, so that the mojo class itself won't be
* loadable when that dependency is missing (in the runtime environment).
- *
+ *
* @goal no-class-def-found-error-param
* @requiresProject false
*/
public class NoClassDefFoundErrorComponentMojo
extends AbstractMojo
{
-
+
/**
* @parameter default-value="foo"
*/
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-error/src/main/java/org/apache/maven/plugin/coreit/NoClassDefFoundErrorInterfaceMojo.java b/its/core-it-support/core-it-plugins/maven-it-plugin-error/src/main/java/org/apache/maven/plugin/coreit/NoClassDefFoundErrorInterfaceMojo.java
index aca13a6b1f..6f88645e90 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-error/src/main/java/org/apache/maven/plugin/coreit/NoClassDefFoundErrorInterfaceMojo.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-error/src/main/java/org/apache/maven/plugin/coreit/NoClassDefFoundErrorInterfaceMojo.java
@@ -29,7 +29,7 @@ import junit.framework.TestCase;
/**
* Implements a class from a provided-scope dependency, so that the mojo class itself won't be
* loadable when that dependency is missing (in the runtime environment).
- *
+ *
* @goal no-class-def-found-error-mojo
* @requiresProject false
*/
@@ -37,7 +37,7 @@ public class NoClassDefFoundErrorInterfaceMojo
extends TestCase
implements Mojo
{
-
+
private Log log;
public void execute()
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-error/src/main/java/org/apache/maven/plugin/coreit/RequirementComponentLookupExceptionMojo.java b/its/core-it-support/core-it-plugins/maven-it-plugin-error/src/main/java/org/apache/maven/plugin/coreit/RequirementComponentLookupExceptionMojo.java
index a685ecd11d..d1a7722fa3 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-error/src/main/java/org/apache/maven/plugin/coreit/RequirementComponentLookupExceptionMojo.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-error/src/main/java/org/apache/maven/plugin/coreit/RequirementComponentLookupExceptionMojo.java
@@ -31,7 +31,7 @@ import org.apache.maven.plugin.MojoFailureException;
public class RequirementComponentLookupExceptionMojo
extends AbstractMojo
{
-
+
/**
* @component role="missing-component" roleHint="triggers-error"
*/
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-extension-consumer/src/main/java/org/apache/maven/plugin/coreit/UpdateSingletonMojo.java b/its/core-it-support/core-it-plugins/maven-it-plugin-extension-consumer/src/main/java/org/apache/maven/plugin/coreit/UpdateSingletonMojo.java
index 6951589ee9..5e204a874a 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-extension-consumer/src/main/java/org/apache/maven/plugin/coreit/UpdateSingletonMojo.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-extension-consumer/src/main/java/org/apache/maven/plugin/coreit/UpdateSingletonMojo.java
@@ -28,10 +28,10 @@ import org.apache.maven.plugin.MojoExecutionException;
/**
* Updates the state of the singleton component and optionally dumps the updated state to a properties file.
- *
+ *
* @goal update-singleton
* @phase initialize
- *
+ *
* @author Benjamin Bentmann
*/
public class UpdateSingletonMojo
@@ -60,7 +60,7 @@ public class UpdateSingletonMojo
/**
* Runs this mojo.
- *
+ *
* @throws MojoExecutionException If the output file could not be created.
*/
public void execute()
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-extension-provider/src/main/java/org/apache/maven/plugin/coreit/UpdateSingletonMojo.java b/its/core-it-support/core-it-plugins/maven-it-plugin-extension-provider/src/main/java/org/apache/maven/plugin/coreit/UpdateSingletonMojo.java
index ba6ce899ec..76ba4b926e 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-extension-provider/src/main/java/org/apache/maven/plugin/coreit/UpdateSingletonMojo.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-extension-provider/src/main/java/org/apache/maven/plugin/coreit/UpdateSingletonMojo.java
@@ -28,10 +28,10 @@ import org.apache.maven.plugin.MojoExecutionException;
/**
* Updates the state of the singleton component and optionally dumps the updated state to a properties file.
- *
+ *
* @goal update-singleton
* @phase initialize
- *
+ *
* @author Benjamin Bentmann
*/
public class UpdateSingletonMojo
@@ -60,7 +60,7 @@ public class UpdateSingletonMojo
/**
* Runs this mojo.
- *
+ *
* @throws MojoExecutionException If the output file could not be created.
*/
public void execute()
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-extension1/pom.xml b/its/core-it-support/core-it-plugins/maven-it-plugin-extension1/pom.xml
index 59f03a50ef..74a1524615 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-extension1/pom.xml
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-extension1/pom.xml
@@ -30,7 +30,7 @@ under the License.
maven-it-plugin-extension1
maven-plugin
-
+
Maven IT Plugin :: Extension 1
A test plugin that contribute an artifact handler.
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-extension1/src/main/resources/META-INF/plexus/components.xml b/its/core-it-support/core-it-plugins/maven-it-plugin-extension1/src/main/resources/META-INF/plexus/components.xml
index 6b20fad6d4..de542bea6f 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-extension1/src/main/resources/META-INF/plexus/components.xml
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-extension1/src/main/resources/META-INF/plexus/components.xml
@@ -30,7 +30,7 @@ under the License.
coreit-1
-
+
org.apache.maven.lifecycle.mapping.LifecycleMapping
coreit-1
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-extension2/src/main/resources/META-INF/plexus/components.xml b/its/core-it-support/core-it-plugins/maven-it-plugin-extension2/src/main/resources/META-INF/plexus/components.xml
index f00dbe1e9f..aa5ccb9da1 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-extension2/src/main/resources/META-INF/plexus/components.xml
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-extension2/src/main/resources/META-INF/plexus/components.xml
@@ -30,7 +30,7 @@ under the License.
coreit-2
-
+
org.apache.maven.lifecycle.mapping.LifecycleMapping
coreit-2
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-fork/src/main/java/org/apache/maven/plugin/coreit/ForkLifecycleNoProjectMojo.java b/its/core-it-support/core-it-plugins/maven-it-plugin-fork/src/main/java/org/apache/maven/plugin/coreit/ForkLifecycleNoProjectMojo.java
index 7a41e032d8..112b14ce8d 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-fork/src/main/java/org/apache/maven/plugin/coreit/ForkLifecycleNoProjectMojo.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-fork/src/main/java/org/apache/maven/plugin/coreit/ForkLifecycleNoProjectMojo.java
@@ -27,7 +27,7 @@ import java.io.File;
/**
* @goal fork-lifecycle-no-project
* @requiresProject false
- *
+ *
* @execute phase="generate-sources" lifecycle="foo"
*/
public class ForkLifecycleNoProjectMojo
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-fork/src/main/java/org/apache/maven/plugin/coreit/TouchMojo.java b/its/core-it-support/core-it-plugins/maven-it-plugin-fork/src/main/java/org/apache/maven/plugin/coreit/TouchMojo.java
index 5401d48070..3c7f4b857d 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-fork/src/main/java/org/apache/maven/plugin/coreit/TouchMojo.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-fork/src/main/java/org/apache/maven/plugin/coreit/TouchMojo.java
@@ -30,7 +30,7 @@ import java.io.IOException;
/**
* @goal touch
- *
+ *
* @phase process-sources
*/
public class TouchMojo
@@ -73,15 +73,15 @@ public class TouchMojo
{
dir.mkdirs();
}
-
+
File touch = new File( dir, file );
// NOTE: Using append mode to track execution count
OutputStreamWriter w = new OutputStreamWriter( new FileOutputStream( touch, true ), "UTF-8" );
-
+
w.write( file );
w.write( "\n" );
-
+
w.close();
}
catch ( IOException e )
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-invalid-descriptor/pom.xml b/its/core-it-support/core-it-plugins/maven-it-plugin-invalid-descriptor/pom.xml
index 4dd1b7c116..03be793112 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-invalid-descriptor/pom.xml
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-invalid-descriptor/pom.xml
@@ -61,14 +61,14 @@ under the License.
${project.build.outputDirectory}
-
+
src/main/resources
true
-
-
+
+
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-log-file/src/main/java/org/apache/maven/plugin/coreit/AbstractLogMojo.java b/its/core-it-support/core-it-plugins/maven-it-plugin-log-file/src/main/java/org/apache/maven/plugin/coreit/AbstractLogMojo.java
index 585b552835..7a5239683a 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-log-file/src/main/java/org/apache/maven/plugin/coreit/AbstractLogMojo.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-log-file/src/main/java/org/apache/maven/plugin/coreit/AbstractLogMojo.java
@@ -31,7 +31,7 @@ import java.io.OutputStreamWriter;
/**
* Provides common services for the mojos of this plugin.
- *
+ *
* @author Benjamin Bentmann
*
*/
@@ -41,7 +41,7 @@ public abstract class AbstractLogMojo
/**
* The project's base directory, used for manual path translation.
- *
+ *
* @parameter default-value="${basedir}"
* @readonly
*/
@@ -49,7 +49,7 @@ public abstract class AbstractLogMojo
/**
* The path to the output file, relative to the project's base directory.
- *
+ *
* @parameter property="log.logFile"
*/
private File logFile;
@@ -61,7 +61,7 @@ public abstract class AbstractLogMojo
/**
* Gets the absolute path to the log file.
- *
+ *
* @return The absolute path to the log file, never null
.
*/
private File getLogFile()
@@ -76,7 +76,7 @@ public abstract class AbstractLogMojo
* Appends the string representation of the specified object to the log file. Logging null
has no other
* effect than touching the file. For each value different from null
, a line terminator will be
* appended to the value's string representation.
- *
+ *
* @param value The object to log, may be null
.
* @throws MojoExecutionException If the log file could not be updated.
*/
@@ -120,7 +120,7 @@ public abstract class AbstractLogMojo
/**
* Clears the contents of the log file by creating a new empty log file.
- *
+ *
* @throws MojoExecutionException If the log file could not be reset.
*/
protected void reset()
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-log-file/src/main/java/org/apache/maven/plugin/coreit/LogStringMojo.java b/its/core-it-support/core-it-plugins/maven-it-plugin-log-file/src/main/java/org/apache/maven/plugin/coreit/LogStringMojo.java
index ddba423a88..1cbca475e8 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-log-file/src/main/java/org/apache/maven/plugin/coreit/LogStringMojo.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-log-file/src/main/java/org/apache/maven/plugin/coreit/LogStringMojo.java
@@ -23,10 +23,10 @@ import org.apache.maven.plugin.MojoExecutionException;
/**
* Appends a string to the log file.
- *
+ *
* @goal log-string
* @phase initialize
- *
+ *
* @author Benjamin Bentmann
*
*/
@@ -36,14 +36,14 @@ public class LogStringMojo
/**
* The string to append to the log file.
- *
+ *
* @parameter property="log.string"
*/
private String string;
/**
* Runs this mojo.
- *
+ *
* @throws MojoExecutionException If the output file could not be created.
*/
public void execute()
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-log-file/src/main/java/org/apache/maven/plugin/coreit/ResetMojo.java b/its/core-it-support/core-it-plugins/maven-it-plugin-log-file/src/main/java/org/apache/maven/plugin/coreit/ResetMojo.java
index a9ebe19bba..3c2a32e252 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-log-file/src/main/java/org/apache/maven/plugin/coreit/ResetMojo.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-log-file/src/main/java/org/apache/maven/plugin/coreit/ResetMojo.java
@@ -23,10 +23,10 @@ import org.apache.maven.plugin.MojoExecutionException;
/**
* Clears the contents of the log file by creating a new empty log file.
- *
+ *
* @goal reset
* @phase initialize
- *
+ *
* @author Benjamin Bentmann
*
*/
@@ -36,7 +36,7 @@ public class ResetMojo
/**
* Runs this mojo.
- *
+ *
* @throws MojoExecutionException If the output file could not be created.
*/
public void execute()
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-log4j/src/main/java/org/apache/maven/plugin/coreit/ItMojo.java b/its/core-it-support/core-it-plugins/maven-it-plugin-log4j/src/main/java/org/apache/maven/plugin/coreit/ItMojo.java
index 0bffe919da..adb8428cef 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-log4j/src/main/java/org/apache/maven/plugin/coreit/ItMojo.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-log4j/src/main/java/org/apache/maven/plugin/coreit/ItMojo.java
@@ -32,9 +32,9 @@ import org.apache.maven.plugin.MojoExecutionException;
/**
* Resolves an artifact and has an (unused) dependency on log4j.
- *
+ *
* @goal it
- *
+ *
* @author Benjamin Bentmann
*
*/
@@ -83,7 +83,7 @@ public class ItMojo
/**
* Runs this mojo.
- *
+ *
* @throws MojoExecutionException If the output file could not be created.
* @throws MojoFailureException If the output file has not been set.
*/
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-no-default-comp/src/main/java/org/apache/maven/plugin/coreit/Component.java b/its/core-it-support/core-it-plugins/maven-it-plugin-no-default-comp/src/main/java/org/apache/maven/plugin/coreit/Component.java
index ea6d48f903..3e4af15b8f 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-no-default-comp/src/main/java/org/apache/maven/plugin/coreit/Component.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-no-default-comp/src/main/java/org/apache/maven/plugin/coreit/Component.java
@@ -21,7 +21,7 @@ package org.apache.maven.plugin.coreit;
/**
* A dummy component.
- *
+ *
* @author Benjamin Bentmann
*/
public interface Component
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-no-default-comp/src/main/java/org/apache/maven/plugin/coreit/ConcreteComponent.java b/its/core-it-support/core-it-plugins/maven-it-plugin-no-default-comp/src/main/java/org/apache/maven/plugin/coreit/ConcreteComponent.java
index baecacb8f8..4e2f75615f 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-no-default-comp/src/main/java/org/apache/maven/plugin/coreit/ConcreteComponent.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-no-default-comp/src/main/java/org/apache/maven/plugin/coreit/ConcreteComponent.java
@@ -23,7 +23,7 @@ import org.codehaus.plexus.component.annotations.Component;
/**
* A dummy component whose role hint is not "default", yet should be used to satisfy an ordinary component requirement.
- *
+ *
* @author Benjamin Bentmann
*/
@Component ( role = org.apache.maven.plugin.coreit.Component.class, hint = "concrete" )
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-no-project/src/main/java/org/apache/maven/plugin/coreit/NoProjectMojo.java b/its/core-it-support/core-it-plugins/maven-it-plugin-no-project/src/main/java/org/apache/maven/plugin/coreit/NoProjectMojo.java
index 752686c82b..65757a740c 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-no-project/src/main/java/org/apache/maven/plugin/coreit/NoProjectMojo.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-no-project/src/main/java/org/apache/maven/plugin/coreit/NoProjectMojo.java
@@ -28,10 +28,10 @@ import java.io.IOException;
/**
* Mojo which touches a file without requiring a project.
- *
+ *
* @goal light-touch
* @requiresProject false
- *
+ *
*/
public class NoProjectMojo
extends AbstractMojo
@@ -62,15 +62,15 @@ public class NoProjectMojo
{
dir.mkdirs();
}
-
+
File touch = new File( dir, file );
-
+
getLog().info( "Touching: " + touch );
-
+
FileWriter w = new FileWriter( touch );
-
+
w.write( file );
-
+
w.close();
}
catch ( IOException e )
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-online/src/main/java/org/apache/maven/plugin/coreit/TouchMojo.java b/its/core-it-support/core-it-plugins/maven-it-plugin-online/src/main/java/org/apache/maven/plugin/coreit/TouchMojo.java
index 4912802efd..2b4b3ef0d9 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-online/src/main/java/org/apache/maven/plugin/coreit/TouchMojo.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-online/src/main/java/org/apache/maven/plugin/coreit/TouchMojo.java
@@ -27,11 +27,11 @@ import java.io.IOException;
/**
* Creates an empty file with a user-specified name. NOTE: This mojo requires online mode.
- *
+ *
* @goal touch
* @phase validate
* @requiresOnline true
- *
+ *
* @author Benjamin Bentmann
*/
public class TouchMojo
@@ -40,14 +40,14 @@ public class TouchMojo
/**
* The path to the output file.
- *
+ *
* @parameter property="touch.outputFile" default-value="target/touch.txt"
*/
private File outputFile;
/**
* Runs this mojo.
- *
+ *
* @throws MojoExecutionException If the output file could not be created.
*/
public void execute()
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-packaging/src/main/java/org/apache/maven/plugin/coreit/PackagingMojo.java b/its/core-it-support/core-it-plugins/maven-it-plugin-packaging/src/main/java/org/apache/maven/plugin/coreit/PackagingMojo.java
index bbe4427237..59ffa0b8bd 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-packaging/src/main/java/org/apache/maven/plugin/coreit/PackagingMojo.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-packaging/src/main/java/org/apache/maven/plugin/coreit/PackagingMojo.java
@@ -27,7 +27,7 @@ import java.io.IOException;
/**
* Creates an empty file to prove this goal was executed.
- *
+ *
* @author Brett Porter
*
* @goal package
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-parameter-implementation/src/main/java/org/apache/maven/plugin/coreit/sub/AnImplementation.java b/its/core-it-support/core-it-plugins/maven-it-plugin-parameter-implementation/src/main/java/org/apache/maven/plugin/coreit/sub/AnImplementation.java
index 19dfecf576..378d777926 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-parameter-implementation/src/main/java/org/apache/maven/plugin/coreit/sub/AnImplementation.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-parameter-implementation/src/main/java/org/apache/maven/plugin/coreit/sub/AnImplementation.java
@@ -30,12 +30,12 @@ public class AnImplementation
public String getField()
{
- return field;
+ return field;
}
public void setField( String field )
{
- this.field = field;
+ this.field = field;
}
public String toString()
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-plexus-utils-11/src/main/java/org/apache/maven/its/plugins/SerializeMojo.java b/its/core-it-support/core-it-plugins/maven-it-plugin-plexus-utils-11/src/main/java/org/apache/maven/its/plugins/SerializeMojo.java
index 8d26a3a8a4..ffb5d6c1eb 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-plexus-utils-11/src/main/java/org/apache/maven/its/plugins/SerializeMojo.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-plexus-utils-11/src/main/java/org/apache/maven/its/plugins/SerializeMojo.java
@@ -58,7 +58,7 @@ public class SerializeMojo
s.setOutput( writer );
Xpp3Dom dom = new Xpp3Dom( "root" );
-
+
dom.writeToSerializer( "", s );
}
catch ( IOException e )
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-plexus-utils-new/src/main/java/org/codehaus/plexus/util/xml/Xpp3Dom.java b/its/core-it-support/core-it-plugins/maven-it-plugin-plexus-utils-new/src/main/java/org/codehaus/plexus/util/xml/Xpp3Dom.java
index b2d1f548e5..c87c0dec93 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-plexus-utils-new/src/main/java/org/codehaus/plexus/util/xml/Xpp3Dom.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-plexus-utils-new/src/main/java/org/codehaus/plexus/util/xml/Xpp3Dom.java
@@ -24,7 +24,7 @@ import java.io.IOException;
import org.codehaus.plexus.util.xml.pull.XmlSerializer;
/**
- *
+ *
*/
public class Xpp3Dom
{
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-plexus-utils-new/src/main/java/org/codehaus/plexus/util/xml/pull/MXSerializer.java b/its/core-it-support/core-it-plugins/maven-it-plugin-plexus-utils-new/src/main/java/org/codehaus/plexus/util/xml/pull/MXSerializer.java
index bcbd797369..bca0dfa083 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-plexus-utils-new/src/main/java/org/codehaus/plexus/util/xml/pull/MXSerializer.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-plexus-utils-new/src/main/java/org/codehaus/plexus/util/xml/pull/MXSerializer.java
@@ -24,7 +24,7 @@ import java.io.OutputStream;
import java.io.Writer;
/**
- *
+ *
*/
public class MXSerializer
implements XmlSerializer
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-plexus-utils-new/src/main/java/org/codehaus/plexus/util/xml/pull/XmlSerializer.java b/its/core-it-support/core-it-plugins/maven-it-plugin-plexus-utils-new/src/main/java/org/codehaus/plexus/util/xml/pull/XmlSerializer.java
index e8c8be5b42..3de35068e6 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-plexus-utils-new/src/main/java/org/codehaus/plexus/util/xml/pull/XmlSerializer.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-plexus-utils-new/src/main/java/org/codehaus/plexus/util/xml/pull/XmlSerializer.java
@@ -24,7 +24,7 @@ import java.io.OutputStream;
import java.io.Writer;
/**
- *
+ *
*/
public interface XmlSerializer
{
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-plugin-dependency/src/main/java/org/apache/maven/plugin/coreit/DerivedItMojo.java b/its/core-it-support/core-it-plugins/maven-it-plugin-plugin-dependency/src/main/java/org/apache/maven/plugin/coreit/DerivedItMojo.java
index ee8078c773..f130452c70 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-plugin-dependency/src/main/java/org/apache/maven/plugin/coreit/DerivedItMojo.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-plugin-dependency/src/main/java/org/apache/maven/plugin/coreit/DerivedItMojo.java
@@ -35,7 +35,7 @@ public class DerivedItMojo
* The path to the output file for the properties with the expression values. For each expression given by the
* parameter {@link #expressions} an similar named properties key will be used to save the expression value. If an
* expression evaluated to null
, there will be no corresponding key in the properties file.
- *
+ *
* @parameter
*/
private File file;
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-project-interpolation/src/main/java/org/apache/maven/plugin/coreit/PluginParamInterpolationMojo.java b/its/core-it-support/core-it-plugins/maven-it-plugin-project-interpolation/src/main/java/org/apache/maven/plugin/coreit/PluginParamInterpolationMojo.java
index 39428a9dcf..c06e4dfb4d 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-project-interpolation/src/main/java/org/apache/maven/plugin/coreit/PluginParamInterpolationMojo.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-project-interpolation/src/main/java/org/apache/maven/plugin/coreit/PluginParamInterpolationMojo.java
@@ -27,7 +27,7 @@ import org.apache.maven.project.MavenProject;
/**
* @goal check-plugin
- *
+ *
* @phase validate
*/
public class PluginParamInterpolationMojo
@@ -44,7 +44,7 @@ public class PluginParamInterpolationMojo
{
myDirectory = normalize( myDirectory );
String value = normalize( new File( project.getBuild().getDirectory(), "foo" ).getAbsolutePath() );
-
+
if ( !myDirectory.equals( value ) )
{
throw new MojoExecutionException( "Directory supplied: " + myDirectory
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-project-interpolation/src/main/java/org/apache/maven/plugin/coreit/PropertyInterpolationMojo.java b/its/core-it-support/core-it-plugins/maven-it-plugin-project-interpolation/src/main/java/org/apache/maven/plugin/coreit/PropertyInterpolationMojo.java
index 2676488be2..2bff6cd811 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-project-interpolation/src/main/java/org/apache/maven/plugin/coreit/PropertyInterpolationMojo.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-project-interpolation/src/main/java/org/apache/maven/plugin/coreit/PropertyInterpolationMojo.java
@@ -27,13 +27,13 @@ import org.apache.maven.project.MavenProject;
/**
* @goal check-property
- *
+ *
* @phase validate
*/
public class PropertyInterpolationMojo
extends AbstractMojo
{
-
+
/** @parameter default-value="${project}" */
private MavenProject project;
@@ -42,14 +42,14 @@ public class PropertyInterpolationMojo
{
String value = normalize( project.getProperties().getProperty( "myDirectory" ) );
String targetValue = normalize( new File( project.getBuild().getDirectory(), "foo" ).getAbsolutePath() );
-
+
if ( !value.equals( targetValue ) )
{
throw new MojoExecutionException( "Property value of 'myDirectory': " + value
+ " should equal the 'foo' subpath of the project build directory: " + targetValue );
}
}
-
+
private String normalize( String src )
{
return src.replace( '/', File.separatorChar ).replace( '\\', File.separatorChar );
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-singleton-component/src/main/java/org/apache/maven/plugin/coreit/Component.java b/its/core-it-support/core-it-plugins/maven-it-plugin-singleton-component/src/main/java/org/apache/maven/plugin/coreit/Component.java
index ea6d48f903..3e4af15b8f 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-singleton-component/src/main/java/org/apache/maven/plugin/coreit/Component.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-singleton-component/src/main/java/org/apache/maven/plugin/coreit/Component.java
@@ -21,7 +21,7 @@ package org.apache.maven.plugin.coreit;
/**
* A dummy component.
- *
+ *
* @author Benjamin Bentmann
*/
public interface Component
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-singleton-component/src/main/java/org/apache/maven/plugin/coreit/DefaultComponent.java b/its/core-it-support/core-it-plugins/maven-it-plugin-singleton-component/src/main/java/org/apache/maven/plugin/coreit/DefaultComponent.java
index 41e226bc9a..da9387fd28 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-singleton-component/src/main/java/org/apache/maven/plugin/coreit/DefaultComponent.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-singleton-component/src/main/java/org/apache/maven/plugin/coreit/DefaultComponent.java
@@ -23,7 +23,7 @@ import org.codehaus.plexus.component.annotations.Component;
/**
* A stateful singleton.
- *
+ *
* @author Benjamin Bentmann
*/
@Component ( role = org.apache.maven.plugin.coreit.Component.class )
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-site/src/main/java/org/apache/maven/plugin/coreit/InfoReport.java b/its/core-it-support/core-it-plugins/maven-it-plugin-site/src/main/java/org/apache/maven/plugin/coreit/InfoReport.java
index 74149db4c6..4d28b60b5e 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-site/src/main/java/org/apache/maven/plugin/coreit/InfoReport.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-site/src/main/java/org/apache/maven/plugin/coreit/InfoReport.java
@@ -36,9 +36,9 @@ import java.util.Properties;
/**
* Creates a properties file in the site output directory.
- *
+ *
* @goal info
- *
+ *
* @author Benjamin Bentmann
*
*/
@@ -49,7 +49,7 @@ public class InfoReport
/**
* The base directory of the current Maven project.
- *
+ *
* @parameter default-value="${basedir}"
* @required
* @readonly
@@ -60,14 +60,14 @@ public class InfoReport
* The path to the properties file, relative to the output directory of the site. The keys
* locale.language
, locale.country
and locale.variant
indicate the report's
* locale.
- *
+ *
* @parameter default-value="info.properties"
*/
private String infoFile = "info.properties";
/**
* The path to the output directory of the site.
- *
+ *
* @parameter default-value="${project.reporting.outputDirectory}"
*/
private File outputDirectory;
@@ -79,7 +79,7 @@ public class InfoReport
/**
* Runs this mojo.
- *
+ *
* @throws MojoExecutionException If the output file could not be created.
* @throws MojoFailureException If the output file has not been set.
*/
@@ -141,7 +141,7 @@ public class InfoReport
/**
* Runs this report.
- *
+ *
* @throws MavenReportException If the report could not be created.
*/
public void generate( Sink sink, Locale locale )
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-site/src/main/java/org/apache/maven/plugin/coreit/ListMojo.java b/its/core-it-support/core-it-plugins/maven-it-plugin-site/src/main/java/org/apache/maven/plugin/coreit/ListMojo.java
index 3d7933716b..5554e7b724 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-site/src/main/java/org/apache/maven/plugin/coreit/ListMojo.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-site/src/main/java/org/apache/maven/plugin/coreit/ListMojo.java
@@ -32,11 +32,11 @@ import java.util.Properties;
/**
* Lists the available/configured reports in a properties file.
- *
+ *
* @goal list
* @phase initialize
* @requiresReports true
- *
+ *
* @author Benjamin Bentmann
*
*/
@@ -48,14 +48,14 @@ public class ListMojo
* The path to the properties file used to list the available reports. The properties file will have a key named
* reports
that gives the total count of reports. The keys reports.0
,
* reports.1
etc. will be used to denote the qualified class names of the reports.
- *
+ *
* @parameter property="site.properties" default-value="target/reports.properties"
*/
private File reportsFile;
/**
* The reports configured for the current build.
- *
+ *
* @parameter default-value="${reports}"
* @required
* @readonly
@@ -64,7 +64,7 @@ public class ListMojo
/**
* Runs this mojo.
- *
+ *
* @throws MojoExecutionException If the output file could not be created.
*/
public void execute()
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-toolchain/src/main/java/org/apache/maven/plugin/coreit/FindToolMojo.java b/its/core-it-support/core-it-plugins/maven-it-plugin-toolchain/src/main/java/org/apache/maven/plugin/coreit/FindToolMojo.java
index 06fec9fe80..651fec9f1a 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-toolchain/src/main/java/org/apache/maven/plugin/coreit/FindToolMojo.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-toolchain/src/main/java/org/apache/maven/plugin/coreit/FindToolMojo.java
@@ -34,7 +34,7 @@ import org.apache.maven.toolchain.ToolchainManager;
/**
* Finds a tool from a previously selected toolchain. This tests the public API just like toolchain-enabled plugins
* would do.
- *
+ *
* @goal find-tool
* @phase validate
*/
@@ -49,7 +49,7 @@ public class FindToolMojo
/**
* The current Maven session holding the selected toolchain.
- *
+ *
* @parameter default-value="${session}"
* @required
* @readonly
@@ -58,21 +58,21 @@ public class FindToolMojo
/**
* The path to the output file for the properties.
- *
+ *
* @parameter property="toolchain.outputFile" default-value="${project.build.directory}/tool.properties"
*/
private File outputFile;
/**
* The type identifier of the toolchain, e.g. "jdk".
- *
+ *
* @parameter property="toolchain.type"
*/
private String type;
/**
* The name of the tool, e.g. "javac".
- *
+ *
* @parameter property="toolchain.tool"
*/
private String tool;
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-touch/src/main/java/org/apache/maven/plugin/coreit/CoreItTouchMojo.java b/its/core-it-support/core-it-plugins/maven-it-plugin-touch/src/main/java/org/apache/maven/plugin/coreit/CoreItTouchMojo.java
index 460e9c8c2f..708685f70a 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-touch/src/main/java/org/apache/maven/plugin/coreit/CoreItTouchMojo.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-touch/src/main/java/org/apache/maven/plugin/coreit/CoreItTouchMojo.java
@@ -32,7 +32,7 @@ import java.util.Map;
/**
* Mojo that creates one touch.txt
or more files with configured filenames in target/
* directory, or cause failure if desired, and set build final name to 'coreitified
'
- *
+ *
* @goal touch
* @phase process-sources
*/
@@ -159,7 +159,7 @@ public class CoreItTouchMojo
w.close();
}
-
+
catch ( IOException e )
{
throw new MojoExecutionException( "Error touching file", e );
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-uses-properties/src/main/java/org/apache/maven/plugin/coreit/UsesPropertiesMojo.java b/its/core-it-support/core-it-plugins/maven-it-plugin-uses-properties/src/main/java/org/apache/maven/plugin/coreit/UsesPropertiesMojo.java
index c10e1ffda0..6b67aa023f 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-uses-properties/src/main/java/org/apache/maven/plugin/coreit/UsesPropertiesMojo.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-uses-properties/src/main/java/org/apache/maven/plugin/coreit/UsesPropertiesMojo.java
@@ -37,7 +37,7 @@ public class UsesPropertiesMojo
* @parameter default-value="${basedir}"
*/
private File basedir;
-
+
/**
* @parameter default-value="${project.properties}"
*/
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-uses-wagon/src/main/java/org/apache/maven/plugin/coreit/DumpVersionMojo.java b/its/core-it-support/core-it-plugins/maven-it-plugin-uses-wagon/src/main/java/org/apache/maven/plugin/coreit/DumpVersionMojo.java
index 7b02347cec..87578c006c 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-uses-wagon/src/main/java/org/apache/maven/plugin/coreit/DumpVersionMojo.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-uses-wagon/src/main/java/org/apache/maven/plugin/coreit/DumpVersionMojo.java
@@ -32,10 +32,10 @@ import java.util.Properties;
/**
* Dumps the version info for a wagon provider to a properties file.
- *
+ *
* @goal dump-version
* @phase validate
- *
+ *
* @author Benjamin Bentmann
*/
public class DumpVersionMojo
@@ -44,7 +44,7 @@ public class DumpVersionMojo
/**
* Project base directory used for manual path alignment.
- *
+ *
* @parameter default-value="${basedir}"
* @readonly
*/
@@ -52,42 +52,42 @@ public class DumpVersionMojo
/**
* The Wagon manager used to lookup the wagon of interest.
- *
+ *
* @component
*/
private WagonManager wagonManager;
/**
* The path to the properties file used to dump the auth infos.
- *
+ *
* @parameter property="wagon.propertiesFile"
*/
private File propertiesFile;
/**
* The role hint for the provider of interest.
- *
+ *
* @parameter property="wagon.providerHint"
*/
private String providerHint;
/**
* The group id for the provider of interest.
- *
+ *
* @parameter property="wagon.providerGroupId"
*/
private String providerGroupId;
/**
* The artifact id for the provider of interest.
- *
+ *
* @parameter property="wagon.providerArtifactId"
*/
private String providerArtifactId;
/**
* Runs this mojo.
- *
+ *
* @throws MojoExecutionException If the output file could not be created.
*/
public void execute()
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-uses-wagon/src/main/java/org/apache/maven/plugin/coreit/LookupWagonMojo.java b/its/core-it-support/core-it-plugins/maven-it-plugin-uses-wagon/src/main/java/org/apache/maven/plugin/coreit/LookupWagonMojo.java
index 8ebf3de051..c1be36ded4 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-uses-wagon/src/main/java/org/apache/maven/plugin/coreit/LookupWagonMojo.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-uses-wagon/src/main/java/org/apache/maven/plugin/coreit/LookupWagonMojo.java
@@ -35,10 +35,10 @@ import java.util.Properties;
/**
* Loads resources from a class loader used to load a wagon provider. The wagon is merely used to access the extension
* class loader it came from which is otherwise not accessible to a plugin.
- *
+ *
* @goal lookup-wagon
* @phase validate
- *
+ *
* @author Benjamin Bentmann
*
*/
@@ -48,28 +48,28 @@ public class LookupWagonMojo
/**
* The Wagon manager used to retrieve wagon providers.
- *
+ *
* @component
*/
private WagonManager wagonManager;
/**
* The path to the properties file used to track the results of the wagon lookups.
- *
+ *
* @parameter property="wagon.outputFile"
*/
private File outputFile;
/**
* The URLs for which to look up wagons.
- *
+ *
* @parameter
*/
private String[] urls;
/**
* Runs this mojo.
- *
+ *
* @throws MojoFailureException If the attached file has not been set.
*/
public void execute()
diff --git a/its/core-it-support/core-it-plugins/maven-it-plugin-uses-wagon/src/main/java/org/apache/maven/plugin/coreit/UsesWagonMojo.java b/its/core-it-support/core-it-plugins/maven-it-plugin-uses-wagon/src/main/java/org/apache/maven/plugin/coreit/UsesWagonMojo.java
index 34427dbc0f..a4813225f9 100644
--- a/its/core-it-support/core-it-plugins/maven-it-plugin-uses-wagon/src/main/java/org/apache/maven/plugin/coreit/UsesWagonMojo.java
+++ b/its/core-it-support/core-it-plugins/maven-it-plugin-uses-wagon/src/main/java/org/apache/maven/plugin/coreit/UsesWagonMojo.java
@@ -38,7 +38,7 @@ public class UsesWagonMojo
* @component
*/
private WagonManager wagonManager;
-
+
public void execute()
throws MojoExecutionException
{
diff --git a/its/core-it-support/core-it-plugins/mng5805-extension/src/main/resources/META-INF/plexus/components.xml b/its/core-it-support/core-it-plugins/mng5805-extension/src/main/resources/META-INF/plexus/components.xml
index e7fb615fb5..8d6421e3e8 100644
--- a/its/core-it-support/core-it-plugins/mng5805-extension/src/main/resources/META-INF/plexus/components.xml
+++ b/its/core-it-support/core-it-plugins/mng5805-extension/src/main/resources/META-INF/plexus/components.xml
@@ -19,7 +19,7 @@ under the License.
-->
-
+
org.apache.maven.lifecycle.mapping.LifecycleMapping
mng5805
@@ -53,7 +53,7 @@ under the License.
-
+
org.apache.maven.artifact.handler.ArtifactHandler
mng5805
@@ -66,6 +66,6 @@ under the License.
mng5805
-
+
diff --git a/its/core-it-support/core-it-plugins/mng5805-extension2/src/main/resources/META-INF/plexus/components.xml b/its/core-it-support/core-it-plugins/mng5805-extension2/src/main/resources/META-INF/plexus/components.xml
index a07744df09..2bfe8d2d29 100644
--- a/its/core-it-support/core-it-plugins/mng5805-extension2/src/main/resources/META-INF/plexus/components.xml
+++ b/its/core-it-support/core-it-plugins/mng5805-extension2/src/main/resources/META-INF/plexus/components.xml
@@ -19,7 +19,7 @@ under the License.
-->
-
+
org.apache.maven.lifecycle.mapping.LifecycleMapping
mng5805
@@ -53,7 +53,7 @@ under the License.
-
+
org.apache.maven.artifact.handler.ArtifactHandler
mng5805
@@ -66,6 +66,6 @@ under the License.
mng5805
-
+
diff --git a/its/core-it-support/core-it-plugins/mng5958-extension/pom.xml b/its/core-it-support/core-it-plugins/mng5958-extension/pom.xml
index 5f412948a7..1bd85d291a 100644
--- a/its/core-it-support/core-it-plugins/mng5958-extension/pom.xml
+++ b/its/core-it-support/core-it-plugins/mng5958-extension/pom.xml
@@ -33,7 +33,7 @@ under the License.
jar
Maven IT Plugin :: mng-5958 extension
-
+
org.apache.maven
diff --git a/its/core-it-support/core-it-plugins/mng5958-extension/src/main/resources/META-INF/plexus/components.xml b/its/core-it-support/core-it-plugins/mng5958-extension/src/main/resources/META-INF/plexus/components.xml
index e61d294637..1dbe8caaa3 100644
--- a/its/core-it-support/core-it-plugins/mng5958-extension/src/main/resources/META-INF/plexus/components.xml
+++ b/its/core-it-support/core-it-plugins/mng5958-extension/src/main/resources/META-INF/plexus/components.xml
@@ -19,13 +19,13 @@ under the License.
-->
-
+
org.apache.maven.lifecycle.mapping.LifecycleMapping
mng5958-good
org.apache.maven.its.mng5958.GoodLifecycleMapping
-
+
org.apache.maven.artifact.handler.ArtifactHandler
mng5958
@@ -38,13 +38,13 @@ under the License.
mng5858-good
-
+
org.apache.maven.lifecycle.mapping.LifecycleMapping
mng5958-bad
org.apache.maven.its.mng5958.BadLifecycleMapping
-
+
org.apache.maven.artifact.handler.ArtifactHandler
mng5958-bad
@@ -57,6 +57,6 @@ under the License.
mng5858-bad
-
+
diff --git a/its/core-it-support/core-it-support-artifacts/src/main/repo/org/apache/maven/its/maven-core-it-support-old-location/1.1/maven-core-it-support-old-location-1.1.pom b/its/core-it-support/core-it-support-artifacts/src/main/repo/org/apache/maven/its/maven-core-it-support-old-location/1.1/maven-core-it-support-old-location-1.1.pom
index 90f87584a2..3e1aa53dfd 100644
--- a/its/core-it-support/core-it-support-artifacts/src/main/repo/org/apache/maven/its/maven-core-it-support-old-location/1.1/maven-core-it-support-old-location-1.1.pom
+++ b/its/core-it-support/core-it-support-artifacts/src/main/repo/org/apache/maven/its/maven-core-it-support-old-location/1.1/maven-core-it-support-old-location-1.1.pom
@@ -19,13 +19,13 @@
4.0.0
- org.apache.maven.its
+ org.apache.maven.its
maven-core-it-support-old-location
1.1
maven-core-it-support
- Testing
+ Testing
diff --git a/its/core-it-support/core-it-support-artifacts/src/main/repo/org/apache/maven/its/maven-core-it-support/1.0/maven-core-it-support-1.0.pom b/its/core-it-support/core-it-support-artifacts/src/main/repo/org/apache/maven/its/maven-core-it-support/1.0/maven-core-it-support-1.0.pom
index 14d347fc49..829bd93266 100644
--- a/its/core-it-support/core-it-support-artifacts/src/main/repo/org/apache/maven/its/maven-core-it-support/1.0/maven-core-it-support-1.0.pom
+++ b/its/core-it-support/core-it-support-artifacts/src/main/repo/org/apache/maven/its/maven-core-it-support/1.0/maven-core-it-support-1.0.pom
@@ -19,7 +19,7 @@
4.0.0
- org.apache.maven.its
+ org.apache.maven.its
maven-core-it-support
1.0
diff --git a/its/core-it-support/core-it-support-artifacts/src/main/repo/org/apache/maven/its/maven-core-it-support/1.1/maven-core-it-support-1.1.pom b/its/core-it-support/core-it-support-artifacts/src/main/repo/org/apache/maven/its/maven-core-it-support/1.1/maven-core-it-support-1.1.pom
index b1dcceb05e..df42841665 100644
--- a/its/core-it-support/core-it-support-artifacts/src/main/repo/org/apache/maven/its/maven-core-it-support/1.1/maven-core-it-support-1.1.pom
+++ b/its/core-it-support/core-it-support-artifacts/src/main/repo/org/apache/maven/its/maven-core-it-support/1.1/maven-core-it-support-1.1.pom
@@ -19,7 +19,7 @@
4.0.0
- org.apache.maven.its
+ org.apache.maven.its
maven-core-it-support
1.1
diff --git a/its/core-it-support/core-it-support-artifacts/src/main/repo/org/apache/maven/its/maven-core-it-support/1.2/maven-core-it-support-1.2.pom b/its/core-it-support/core-it-support-artifacts/src/main/repo/org/apache/maven/its/maven-core-it-support/1.2/maven-core-it-support-1.2.pom
index 3992663d6c..3d92a9ce65 100644
--- a/its/core-it-support/core-it-support-artifacts/src/main/repo/org/apache/maven/its/maven-core-it-support/1.2/maven-core-it-support-1.2.pom
+++ b/its/core-it-support/core-it-support-artifacts/src/main/repo/org/apache/maven/its/maven-core-it-support/1.2/maven-core-it-support-1.2.pom
@@ -19,7 +19,7 @@
4.0.0
- org.apache.maven.its
+ org.apache.maven.its
maven-core-it-support
it-packaging
1.2
diff --git a/its/core-it-support/core-it-support-artifacts/src/main/repo/org/apache/maven/its/maven-core-it-support/1.3/maven-core-it-support-1.3.pom b/its/core-it-support/core-it-support-artifacts/src/main/repo/org/apache/maven/its/maven-core-it-support/1.3/maven-core-it-support-1.3.pom
index bafb14c5ab..3fc759be0e 100644
--- a/its/core-it-support/core-it-support-artifacts/src/main/repo/org/apache/maven/its/maven-core-it-support/1.3/maven-core-it-support-1.3.pom
+++ b/its/core-it-support/core-it-support-artifacts/src/main/repo/org/apache/maven/its/maven-core-it-support/1.3/maven-core-it-support-1.3.pom
@@ -19,7 +19,7 @@
4.0.0
- org.apache.maven.its
+ org.apache.maven.its
maven-core-it-support
1.3
diff --git a/its/core-it-support/core-it-support-artifacts/src/main/repo/org/apache/maven/its/maven-core-it-support/1.4/maven-core-it-support-1.4.pom b/its/core-it-support/core-it-support-artifacts/src/main/repo/org/apache/maven/its/maven-core-it-support/1.4/maven-core-it-support-1.4.pom
index e3a4cf770e..1ab4e9b5e4 100644
--- a/its/core-it-support/core-it-support-artifacts/src/main/repo/org/apache/maven/its/maven-core-it-support/1.4/maven-core-it-support-1.4.pom
+++ b/its/core-it-support/core-it-support-artifacts/src/main/repo/org/apache/maven/its/maven-core-it-support/1.4/maven-core-it-support-1.4.pom
@@ -19,7 +19,7 @@
4.0.0
- org.apache.maven.its
+ org.apache.maven.its
maven-core-it-support
1.4
diff --git a/its/core-it-support/maven-it-helper/src/main/java/org/apache/maven/it/AbstractMavenIntegrationTestCase.java b/its/core-it-support/maven-it-helper/src/main/java/org/apache/maven/it/AbstractMavenIntegrationTestCase.java
index abe02a380a..57426a6839 100644
--- a/its/core-it-support/maven-it-helper/src/main/java/org/apache/maven/it/AbstractMavenIntegrationTestCase.java
+++ b/its/core-it-support/maven-it-helper/src/main/java/org/apache/maven/it/AbstractMavenIntegrationTestCase.java
@@ -610,7 +610,7 @@ public abstract class AbstractMavenIntegrationTestCase
{
// noop
}
-
+
return verifier;
}
diff --git a/its/core-it-support/maven-it-sample-archetype/src/main/resources/archetype-resources/src/test/java/MavenITmngXXXXDescriptionOfProblemTest.java b/its/core-it-support/maven-it-sample-archetype/src/main/resources/archetype-resources/src/test/java/MavenITmngXXXXDescriptionOfProblemTest.java
index db2a28d1da..50aa5c8ed2 100644
--- a/its/core-it-support/maven-it-sample-archetype/src/main/resources/archetype-resources/src/test/java/MavenITmngXXXXDescriptionOfProblemTest.java
+++ b/its/core-it-support/maven-it-sample-archetype/src/main/resources/archetype-resources/src/test/java/MavenITmngXXXXDescriptionOfProblemTest.java
@@ -38,7 +38,7 @@ import ${package}.util.ResourceExtractor;
* project in the resources folder. It then checks the
* results. This is a non-trivial example that shows two
* phases. See more information inline in the code.
- *
+ *
* @author Brian Fox
* @version ${symbol_dollar}Id: MavenITmngXXXXDescriptionOfProblemTest.java 707999 2008-10-26 14:42:38Z bentmann ${symbol_dollar}
*/
diff --git a/its/core-it-support/maven-it-sample-archetype/src/main/resources/archetype-resources/src/test/resources/mng-xxxx/checkstyle-assembly/src/main/resources/rule_set.xml b/its/core-it-support/maven-it-sample-archetype/src/main/resources/archetype-resources/src/test/resources/mng-xxxx/checkstyle-assembly/src/main/resources/rule_set.xml
index 1976ebff24..e38360a0f0 100644
--- a/its/core-it-support/maven-it-sample-archetype/src/main/resources/archetype-resources/src/test/resources/mng-xxxx/checkstyle-assembly/src/main/resources/rule_set.xml
+++ b/its/core-it-support/maven-it-sample-archetype/src/main/resources/archetype-resources/src/test/resources/mng-xxxx/checkstyle-assembly/src/main/resources/rule_set.xml
@@ -30,9 +30,9 @@ under the License.
This ruleset checks EPHS code
-
+
+
-
@@ -66,16 +66,16 @@ under the License.
-
+
-
+
-
-
-
+
+
+
@@ -116,17 +116,17 @@ under the License.
-
+
-
+
-
+
-
+
diff --git a/its/core-it-support/maven-it-sample-archetype/src/main/resources/archetype-resources/src/test/resources/mng-xxxx/checkstyle-assembly/src/main/resources/stc_checks.xml b/its/core-it-support/maven-it-sample-archetype/src/main/resources/archetype-resources/src/test/resources/mng-xxxx/checkstyle-assembly/src/main/resources/stc_checks.xml
index 6fdf5628da..88c0375dca 100644
--- a/its/core-it-support/maven-it-sample-archetype/src/main/resources/archetype-resources/src/test/resources/mng-xxxx/checkstyle-assembly/src/main/resources/stc_checks.xml
+++ b/its/core-it-support/maven-it-sample-archetype/src/main/resources/archetype-resources/src/test/resources/mng-xxxx/checkstyle-assembly/src/main/resources/stc_checks.xml
@@ -80,8 +80,8 @@
-
-
+
+
@@ -105,17 +105,17 @@
+ -->
diff --git a/its/core-it-support/maven-it-sample-archetype/src/main/resources/archetype-resources/src/test/resources/mng-xxxx/checkstyle-test/pom.xml b/its/core-it-support/maven-it-sample-archetype/src/main/resources/archetype-resources/src/test/resources/mng-xxxx/checkstyle-test/pom.xml
index d64c4adb9c..3a89204aae 100644
--- a/its/core-it-support/maven-it-sample-archetype/src/main/resources/archetype-resources/src/test/resources/mng-xxxx/checkstyle-test/pom.xml
+++ b/its/core-it-support/maven-it-sample-archetype/src/main/resources/archetype-resources/src/test/resources/mng-xxxx/checkstyle-test/pom.xml
@@ -47,9 +47,9 @@ under the License.
diff --git a/its/core-it-support/maven-it-sample-archetype/src/main/resources/archetype-resources/src/test/resources/mng-xxxx/checkstyle-test/src/main/java/Class.java b/its/core-it-support/maven-it-sample-archetype/src/main/resources/archetype-resources/src/test/resources/mng-xxxx/checkstyle-test/src/main/java/Class.java
index 49a95de7e9..01748be45a 100644
--- a/its/core-it-support/maven-it-sample-archetype/src/main/resources/archetype-resources/src/test/resources/mng-xxxx/checkstyle-test/src/main/java/Class.java
+++ b/its/core-it-support/maven-it-sample-archetype/src/main/resources/archetype-resources/src/test/resources/mng-xxxx/checkstyle-test/src/main/java/Class.java
@@ -27,5 +27,5 @@ public static void main(String[] args)
{
System.out.println("hello");
}
-
+
}
\ No newline at end of file
diff --git a/its/core-it-support/maven-it-sample/src/test/java/org/apache/maven/it/MavenITmngXXXXDescriptionOfProblemTest.java b/its/core-it-support/maven-it-sample/src/test/java/org/apache/maven/it/MavenITmngXXXXDescriptionOfProblemTest.java
index f8026864d4..311d02b478 100644
--- a/its/core-it-support/maven-it-sample/src/test/java/org/apache/maven/it/MavenITmngXXXXDescriptionOfProblemTest.java
+++ b/its/core-it-support/maven-it-sample/src/test/java/org/apache/maven/it/MavenITmngXXXXDescriptionOfProblemTest.java
@@ -35,7 +35,7 @@ import org.apache.maven.it.util.ResourceExtractor;
* project in the resources folder. It then checks the
* results. This is a non-trivial example that shows two
* phases. See more information inline in the code.
- *
+ *
* @author Brian Fox
*
*/
diff --git a/its/core-it-support/maven-it-sample/src/test/resources/mng-xxxx/checkstyle-assembly/src/main/resources/rule_set.xml b/its/core-it-support/maven-it-sample/src/test/resources/mng-xxxx/checkstyle-assembly/src/main/resources/rule_set.xml
index c03a644f0a..8cbc876d08 100644
--- a/its/core-it-support/maven-it-sample/src/test/resources/mng-xxxx/checkstyle-assembly/src/main/resources/rule_set.xml
+++ b/its/core-it-support/maven-it-sample/src/test/resources/mng-xxxx/checkstyle-assembly/src/main/resources/rule_set.xml
@@ -27,9 +27,9 @@ under the License.
This ruleset checks EPHS code
-
+
+
-
@@ -63,16 +63,16 @@ under the License.
-
+
-
+
-
-
-
+
+
+
@@ -113,17 +113,17 @@ under the License.
-
+
-
+
-
+
-
+
diff --git a/its/core-it-support/maven-it-sample/src/test/resources/mng-xxxx/checkstyle-assembly/src/main/resources/stc_checks.xml b/its/core-it-support/maven-it-sample/src/test/resources/mng-xxxx/checkstyle-assembly/src/main/resources/stc_checks.xml
index 5771c53f60..c43c01cd07 100644
--- a/its/core-it-support/maven-it-sample/src/test/resources/mng-xxxx/checkstyle-assembly/src/main/resources/stc_checks.xml
+++ b/its/core-it-support/maven-it-sample/src/test/resources/mng-xxxx/checkstyle-assembly/src/main/resources/stc_checks.xml
@@ -95,8 +95,8 @@ under the License.
-
-
+
+
@@ -120,17 +120,17 @@ under the License.
+ -->
diff --git a/its/core-it-support/maven-it-sample/src/test/resources/mng-xxxx/checkstyle-test/pom.xml b/its/core-it-support/maven-it-sample/src/test/resources/mng-xxxx/checkstyle-test/pom.xml
index 9aabb09aba..d6a69b84a3 100644
--- a/its/core-it-support/maven-it-sample/src/test/resources/mng-xxxx/checkstyle-test/pom.xml
+++ b/its/core-it-support/maven-it-sample/src/test/resources/mng-xxxx/checkstyle-test/pom.xml
@@ -44,9 +44,9 @@ under the License.
diff --git a/its/core-it-support/maven-it-sample/src/test/resources/mng-xxxx/checkstyle-test/src/main/java/Class.java b/its/core-it-support/maven-it-sample/src/test/resources/mng-xxxx/checkstyle-test/src/main/java/Class.java
index 9dfe4d7041..f22e6c3a01 100644
--- a/its/core-it-support/maven-it-sample/src/test/resources/mng-xxxx/checkstyle-test/src/main/java/Class.java
+++ b/its/core-it-support/maven-it-sample/src/test/resources/mng-xxxx/checkstyle-test/src/main/java/Class.java
@@ -23,5 +23,5 @@ public static void main(String[] args)
{
System.out.println("hello");
}
-
+
}
\ No newline at end of file
diff --git a/its/pom.xml b/its/pom.xml
index dcef45c414..49ecbb8658 100644
--- a/its/pom.xml
+++ b/its/pom.xml
@@ -40,7 +40,7 @@ under the License.
Mark Ingram
-
+
@@ -68,7 +68,7 @@ under the License.
${user.home}/maven-sites
true
1.7
- 1.7
+ 1.7
@@ -150,7 +150,7 @@ under the License.
apache.releases.https
-
org.eclipse.m2e