Test code added unnecessary jar to final plugin
git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@613918 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/bundleplugin/src/test/java/org/apache/felix/bundleplugin/BundleAllPluginTest.java b/bundleplugin/src/test/java/org/apache/felix/bundleplugin/BundleAllPluginTest.java
index 11e9c40..4eeb713 100644
--- a/bundleplugin/src/test/java/org/apache/felix/bundleplugin/BundleAllPluginTest.java
+++ b/bundleplugin/src/test/java/org/apache/felix/bundleplugin/BundleAllPluginTest.java
@@ -55,7 +55,7 @@
plugin.setBasedir( basedir );
File buildDirectory = new File( basedir, "target" );
plugin.setBuildDirectory( buildDirectory.getPath() );
- File outputDirectory = new File( buildDirectory, "classes" );
+ File outputDirectory = new File( buildDirectory, "test-classes" );
plugin.setOutputDirectory( outputDirectory );
plugin.setMaven2OsgiConverter( new DefaultMaven2OsgiConverter() );
}
@@ -81,7 +81,7 @@
public void testNoReBundling()
throws Exception
{
- File testFile = getTestFile( "target/classes/org.apache.maven.maven-model_1.0.0.0.jar" );
+ File testFile = getTestFile( "target/test-classes/org.apache.maven.maven-model_1.0.0.0.jar" );
if ( testFile.exists() )
{
testFile.delete();