Author: mcculls
Date: Mon Jan 21 07:48:36 2008
New Revision: 613918
URL: http://svn.apache.org/viewvc?rev=613918&view=rev
Log:
Test code added unnecessary jar to final plugin
Modified:
felix/trunk/bundleplugin/src/test/java/org/apache/felix/bundleplugin/BundleAllPluginTest.java
Modified:
felix/trunk/bundleplugin/src/test/java/org/apache/felix/bundleplugin/BundleAllPluginTest.java
URL:
http://svn.apache.org/viewvc/felix/trunk/bundleplugin/src/test/java/org/apache/felix/bundleplugin/BundleAllPluginTest.java?rev=613918&r1=613917&r2=613918&view=diff
==============================================================================
---
felix/trunk/bundleplugin/src/test/java/org/apache/felix/bundleplugin/BundleAllPluginTest.java
(original)
+++
felix/trunk/bundleplugin/src/test/java/org/apache/felix/bundleplugin/BundleAllPluginTest.java
Mon Jan 21 07:48:36 2008
@@ -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();