assertTrue( "Check if relocated artifact matches",
FileUtils.contentEquals( artifactFile, artifact.getFile() ) );
Artifact pomArtifact = createArtifact( "relocated-test", "relocated-v3artifact", "1.0.0", "1.0.0", "pom" );
- File pomFile = getTestFile( "src/test/target-repository/" + targetRepository.pathOf( pomArtifact ) );
+ File pomFile = getTestFile( "src/test/expected-files/" + targetRepository.pathOf( pomArtifact ) );
File testFile = getTestFile( "target/test-target-repository/" + targetRepository.pathOf( pomArtifact ) );
assertTrue( "Check if expected relocated pom matches", FileUtils.contentEquals( pomFile, testFile ) );
Artifact orig = createArtifact( "test", "relocated-v3artifact", "1.0.0", "1.0.0", "pom" );
artifactFile = new File( targetRepository.getBasedir(), targetRepository.pathOf( orig ) );
assertTrue( "Check if relocation artifact pom is created", artifactFile.exists() );
- testFile = getTestFile( "src/test/target-repository/" + targetRepository.pathOf( orig ) );
+ testFile = getTestFile( "src/test/expected-files/" + targetRepository.pathOf( orig ) );
assertTrue( "Check if expected artifact matches", FileUtils.contentEquals( artifactFile, testFile ) );
}
+++ /dev/null
-<project>
- <modelVersion>4.0.0</modelVersion>
- <groupId>relocated-test</groupId>
- <artifactId>relocated-v3artifact</artifactId>
- <version>1.0.0</version>
- <scm>
- <connection>scm:cvs:ext:${maven.username}@localhost:/home/cvs</connection>
- </scm>
- <dependencies>
- <dependency>
- <groupId>groupId</groupId>
- <artifactId>artifactId</artifactId>
- <version>version</version>
- </dependency>
- <dependency>
- <groupId>groupId</groupId>
- <artifactId>test-artifactId</artifactId>
- <version>version</version>
- <scope>test</scope>
- </dependency>
- </dependencies>
-</project>
\ No newline at end of file
+++ /dev/null
-<project>
- <groupId>test</groupId>
- <artifactId>relocated-v3artifact</artifactId>
- <version>1.0.0</version>
- <distributionManagement>
- <relocation>
- <groupId>relocated-test</groupId>
- <artifactId>relocated-v3artifact</artifactId>
- <version>1.0.0</version>
- </relocation>
- </distributionManagement>
-</project>
\ No newline at end of file