remove unneeded/non-existant deps

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@312894 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Brett Leslie Porter 2005-10-11 14:36:51 +00:00
parent 3968063fb2
commit 8d011d92c0
2 changed files with 7 additions and 26 deletions

View File

@ -88,24 +88,6 @@
<version>1.6</version> <version>1.6</version>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-artifact-manager</artifactId>
<version>2.0-beta-1-SNAPSHOT</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-core</artifactId>
<version>2.0-beta-1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>2.0-beta-3-SNAPSHOT</version>
<scope>test</scope>
</dependency>
<dependency> <dependency>
<groupId>plexus</groupId> <groupId>plexus</groupId>
<artifactId>plexus-i18n</artifactId> <artifactId>plexus-i18n</artifactId>

View File

@ -16,12 +16,6 @@ package org.apache.maven.report.projectinfo;
* limitations under the License. * limitations under the License.
*/ */
import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.util.Locale;
import org.apache.maven.Maven;
import org.apache.maven.profiles.DefaultProfileManager; import org.apache.maven.profiles.DefaultProfileManager;
import org.apache.maven.profiles.ProfileManager; import org.apache.maven.profiles.ProfileManager;
import org.apache.maven.project.MavenProject; import org.apache.maven.project.MavenProject;
@ -34,6 +28,11 @@ import org.codehaus.plexus.util.cli.CommandLineUtils;
import org.codehaus.plexus.util.cli.Commandline; import org.codehaus.plexus.util.cli.Commandline;
import org.codehaus.plexus.util.cli.DefaultConsumer; import org.codehaus.plexus.util.cli.DefaultConsumer;
import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.util.Locale;
/** /**
* An abstract TestCase class to test <code>Maven Reports</code> generated. * An abstract TestCase class to test <code>Maven Reports</code> generated.
* *
@ -150,10 +149,10 @@ public abstract class AbstractMavenReportTestCase
{ {
File projectDir = getTestProjectDir( projectDirName ); File projectDir = getTestProjectDir( projectDirName );
File pom = new File( projectDir, Maven.POMv4 ); File pom = new File( projectDir, "pom.xml" );
if ( !pom.exists() ) if ( !pom.exists() )
{ {
throw new IllegalArgumentException( "No '" + Maven.POMv4 + "' file exists in the test project directory '" throw new IllegalArgumentException( "No 'pom.xml' file exists in the test project directory '"
+ projectDir.getAbsolutePath() + "'" ); + projectDir.getAbsolutePath() + "'" );
} }