Skip to content

Commit

Permalink
refs spotbugs#60: include bcel 6.1 into built artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
KengoTODA committed Jan 7, 2017
1 parent 45faae7 commit ff8ea0b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion findbugs/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -45,13 +45,16 @@ tasks.withType(Jar).all {
// Manually define what goes into the default jar, since it's not only main sourceset
jar {
from sourceSets.main.output
from zipTree("$projectDir/lib/bcel-6.1-20161207.023659-9.jar").matching {
exclude 'META-INF/**'
}

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

manifest {
attributes 'Main-Class': 'edu.umd.cs.findbugs.LaunchAppropriateUI',
'Bundle-Version': project.version,
'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'
'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'
}
}

Expand Down

0 comments on commit ff8ea0b

Please sign in to comment.