]> source.dussan.org Git - sonarqube.git/blob
f451481ac5ff93895d4d43da5d01d0735b00b726
[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   throw new FileNotFoundException( "Could not find generated JAR: " + file );
7 }
8
9 ZipFile zipFile = new ZipFile(file);
10 try {
11   if (zipFile.getEntry("META-INF/lib/commons-lang-2.5.jar")!=null) {
12     throw new FileNotFoundException("The dependency commons-lang must not be copied in the plugin");
13   }
14 } finally {
15   zipFile.close();
16 }