Skip to content

Commit ff8ea0b

Browse files
committed
refs spotbugs#60: include bcel 6.1 into built artifact
1 parent 45faae7 commit ff8ea0b

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

findbugs/build.gradle

+4-1
Original file line numberDiff line numberDiff line change
@@ -45,13 +45,16 @@ tasks.withType(Jar).all {
4545
// Manually define what goes into the default jar, since it's not only main sourceset
4646
jar {
4747
from sourceSets.main.output
48+
from zipTree("$projectDir/lib/bcel-6.1-20161207.023659-9.jar").matching {
49+
exclude 'META-INF/**'
50+
}
4851

4952
baseName 'spotbugs' // Needed until we rename the directory
5053

5154
manifest {
5255
attributes 'Main-Class': 'edu.umd.cs.findbugs.LaunchAppropriateUI',
5356
'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'
5558
}
5659
}
5760

0 commit comments

Comments
 (0)