]> source.dussan.org Git - sonarqube.git/blob
013d05fa6d5f084579ad9649d58ba03377a2a6b6
[sonarqube.git] /
1 import java.io.*;
2 import java.util.zip.*;
3
4 File file = new File( basedir, "target/test-1.0.jar" );
5 if ( !file.isFile() )
6 {
7     throw new FileNotFoundException( "Could not find generated JAR: " + file );
8 }
9
10 ZipFile zipFile = new ZipFile(file);
11 try {
12   if (zipFile.getEntry("META-INF/lib/plexus-utils-1.5.6.jar")==null) {
13     throw new FileNotFoundException("The dependency plexus-utils must be copied in JAR");
14   }
15 } finally {
16   zipFile.close();
17 }