Commit ff8ea0b 1 parent 45faae7 commit ff8ea0b Copy full SHA for ff8ea0b
File tree 1 file changed +4
-1
lines changed
1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -45,13 +45,16 @@ tasks.withType(Jar).all {
45
45
// Manually define what goes into the default jar, since it's not only main sourceset
46
46
jar {
47
47
from sourceSets. main. output
48
+ from zipTree(" $projectDir /lib/bcel-6.1-20161207.023659-9.jar" ). matching {
49
+ exclude ' META-INF/**'
50
+ }
48
51
49
52
baseName ' spotbugs' // Needed until we rename the directory
50
53
51
54
manifest {
52
55
attributes ' Main-Class' : ' edu.umd.cs.findbugs.LaunchAppropriateUI' ,
53
56
' Bundle-Version' : project. version,
54
- ' Class-Path' : ' bcel-6.1-20161207.023659-9.jar dom4j-1.6.1.jar jaxen-1.1.6.jar asm-debug-all-6.0_ALPHA.jar jsr305.jar jFormatString.jar commons-lang-2.6.jar'
57
+ ' Class-Path' : ' dom4j-1.6.1.jar jaxen-1.1.6.jar asm-debug-all-6.0_ALPHA.jar jsr305.jar jFormatString.jar commons-lang-2.6.jar'
55
58
}
56
59
}
57
60
You can’t perform that action at this time.
0 commit comments