mirror of https://github.com/apache/maven.git
o Moved build output to target where it belongs and is captured by clean
git-svn-id: https://svn.apache.org/repos/asf/maven/core-integration-testing/trunk@697477 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
755d7baa81
commit
909b355191
|
@ -20,7 +20,7 @@ public class MavenIT0014Test
|
|||
|
||||
Verifier verifier = new Verifier( testDir.getAbsolutePath() );
|
||||
verifier.executeGoal( "org.apache.maven.its.plugins:maven-it-plugin-file::file" );
|
||||
verifier.assertFilePresent( "plugin-configuration.txt" );
|
||||
verifier.assertFilePresent( "target/plugin-configuration.txt" );
|
||||
verifier.verifyErrorFreeLog();
|
||||
verifier.resetStreams();
|
||||
}
|
||||
|
|
|
@ -20,7 +20,7 @@ public class MavenIT0024Test
|
|||
|
||||
Verifier verifier = new Verifier( testDir.getAbsolutePath() );
|
||||
verifier.executeGoal( "initialize" );
|
||||
verifier.assertFilePresent( "plugin-exec-configuration.txt" );
|
||||
verifier.assertFilePresent( "target/plugin-exec-configuration.txt" );
|
||||
verifier.verifyErrorFreeLog();
|
||||
verifier.resetStreams();
|
||||
}
|
||||
|
|
|
@ -20,7 +20,7 @@ public class MavenIT0028Test
|
|||
|
||||
Verifier verifier = new Verifier( testDir.getAbsolutePath() );
|
||||
verifier.executeGoal( "org.apache.maven.its.plugins:maven-it-plugin-file::file" );
|
||||
verifier.assertFilePresent( "file.txt" );
|
||||
verifier.assertFilePresent( "target/file.txt" );
|
||||
verifier.verifyErrorFreeLog();
|
||||
verifier.resetStreams();
|
||||
}
|
||||
|
|
|
@ -21,7 +21,7 @@ public class MavenIT0029Test
|
|||
verifier.deleteArtifact( "org.apache.maven.it", "maven-it-it0029", "1.0-SNAPSHOT", "jar" );
|
||||
verifier.deleteArtifact( "org.apache.maven.it", "maven-it-it0029-child", "1.0-SNAPSHOT", "jar" );
|
||||
verifier.executeGoal( "install" );
|
||||
verifier.assertFilePresent( "plugin-management-configuration.txt" );
|
||||
verifier.assertFilePresent( "target/plugin-management-configuration.txt" );
|
||||
verifier.verifyErrorFreeLog();
|
||||
verifier.resetStreams();
|
||||
}
|
||||
|
|
|
@ -38,7 +38,7 @@ under the License.
|
|||
<groupId>org.apache.maven.its.plugins</groupId>
|
||||
<artifactId>maven-it-plugin-file</artifactId>
|
||||
<configuration>
|
||||
<pathname>plugin-configuration.txt</pathname>
|
||||
<pathname>target/plugin-configuration.txt</pathname>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
|
|
|
@ -43,7 +43,7 @@ under the License.
|
|||
<id>test</id>
|
||||
<phase>initialize</phase>
|
||||
<configuration>
|
||||
<pathname>plugin-exec-configuration.txt</pathname>
|
||||
<pathname>target/plugin-exec-configuration.txt</pathname>
|
||||
</configuration>
|
||||
<goals>
|
||||
<goal>file</goal>
|
||||
|
|
|
@ -41,7 +41,7 @@ under the License.
|
|||
<groupId>org.apache.maven.its.plugins</groupId>
|
||||
<artifactId>maven-it-plugin-file</artifactId>
|
||||
<configuration>
|
||||
<pathname>plugin-management-configuration.txt</pathname>
|
||||
<pathname>target/plugin-management-configuration.txt</pathname>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
|
|
Loading…
Reference in New Issue