Skip to content

Commit 8c5aa36

Browse files
committed
refs spotbugs#60: use BCEL 6.1-SNAPSHOT
1 parent 41c68bb commit 8c5aa36

File tree

6 files changed

+3
-11
lines changed

6 files changed

+3
-11
lines changed

build.gradle

-4
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,6 @@ subprojects {
1212

1313
repositories {
1414
jcenter()
15-
16-
maven {
17-
url "https://repository.apache.org/content/repositories/snapshots"
18-
}
1915
}
2016
}
2117

eclipsePlugin/META-INF/MANIFEST.MF

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Bundle-Version: 3.1.0.qualifier
66
Bundle-ClassPath: findbugs-plugin.jar,
77
lib/jsr305.jar,
88
lib/annotations.jar,
9-
lib/bcel-6.0.jar,
9+
lib/bcel-6.1-20161207.023659-9.jar,
1010
lib/dom4j-1.6.1.jar,
1111
lib/jaxen-1.1.6.jar,
1212
lib/jFormatString.jar,

eclipsePlugin/build.gradle

-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ dependencies {
4444
includedLibs(project(path:':findbugs', configuration:'annotations')) {
4545
transitive = false
4646
}
47-
includedLibs 'org.apache.bcel:bcel:6.0'
4847
includedLibs 'org.ow2.asm:asm-debug-all:6.0_ALPHA'
4948

5049
embeddedLibs(project(':findbugs')) {

eclipsePlugin/build.properties

+1-3
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ bin.includes = FindBugs.png,\
1616
META-INF/,\
1717
spotbugs.png,\
1818
lib/annotations.jar,\
19-
lib/bcel.jar,\
19+
lib/bcel-6.1-20161207.023659-9.jar,\
2020
lib/commons-lang-2.6.jar,\
2121
lib/dom4j-1.6.1.jar,\
2222
lib/jFormatString.jar,\
@@ -51,5 +51,3 @@ src.includes = FindBugs.png,\
5151
jars.compile.order = findbugs-plugin.jar
5252
source.findbugs-plugin.jar = src/
5353
output.findbugs-plugin.jar = bin_eclipse/
54-
55-

findbugs/build.gradle

+1-2
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ configurations {
2929
}
3030

3131
dependencies {
32-
compile 'org.apache.bcel:bcel:6.1-SNAPSHOT'
3332
compile 'org.ow2.asm:asm-debug-all:6.0_ALPHA'
3433

3534
// TODO : Some of these can be extracted to actual dependencies
@@ -51,7 +50,7 @@ jar {
5150
manifest {
5251
attributes 'Main-Class': 'edu.umd.cs.findbugs.LaunchAppropriateUI',
5352
'Bundle-Version': project.version,
54-
'Class-Path': 'bcel-6.0.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'
53+
'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'
5554
}
5655
}
5756

656 KB
Binary file not shown.

0 commit comments

Comments
 (0)