Author: dantran Date: Wed Dec 30 11:27:38 2009 New Revision: 894590 URL: http://svn.apache.org/viewvc?rev=894590&view=rev Log: use a much smaller test archive in 'unpack' IT
Modified: maven/plugins/trunk/maven-dependency-plugin/src/it/unpack/pom.xml maven/plugins/trunk/maven-dependency-plugin/src/it/unpack/validate.bsh Modified: maven/plugins/trunk/maven-dependency-plugin/src/it/unpack/pom.xml URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-dependency-plugin/src/it/unpack/pom.xml?rev=894590&r1=894589&r2=894590&view=diff ============================================================================== --- maven/plugins/trunk/maven-dependency-plugin/src/it/unpack/pom.xml (original) +++ maven/plugins/trunk/maven-dependency-plugin/src/it/unpack/pom.xml Wed Dec 30 11:27:38 2009 @@ -52,9 +52,10 @@ <outputDirectory>${project.build.directory}/output spaces directory</outputDirectory> <artifactItems> <artifactItem> - <groupId>tanukisoft</groupId> - <artifactId>wrapper-delta-pack</artifactId> - <version>3.2.3</version> + <groupId>qdox</groupId> + <artifactId>qdox</artifactId> + <version>1.5</version> + <classifier>src</classifier> <type>tar.gz</type> </artifactItem> </artifactItems> Modified: maven/plugins/trunk/maven-dependency-plugin/src/it/unpack/validate.bsh URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-dependency-plugin/src/it/unpack/validate.bsh?rev=894590&r1=894589&r2=894590&view=diff ============================================================================== --- maven/plugins/trunk/maven-dependency-plugin/src/it/unpack/validate.bsh (original) +++ maven/plugins/trunk/maven-dependency-plugin/src/it/unpack/validate.bsh Wed Dec 30 11:27:38 2009 @@ -8,14 +8,14 @@ throw new Exception( "Missing " + file ); } -file = new File( file, "wrapper-delta-pack-3.2.3" ); +file = new File( file, "qdox-1.5" ); System.out.println( "Checking for existence of " + file ); if ( !file.isDirectory() ) { throw new Exception( "Missing " + file ); } -file = new File( file, "jdoc.tar.gz" ); +file = new File( file, "build.xml" ); System.out.println( "Checking for existence of " + file ); if ( !file.isFile() ) {