Skip to content

Commit 6491753

Browse files
author
Andreas Sewe
committed
Consume ASM 6.0 BETA (spotbugs#268)
1 parent 9e668cd commit 6491753

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ This is the changelog for SpotBugs. This follows [Keep a Changelog v0.3](http://
88

99
* The `YourKitProfiler` class has been removed and the `findbugs.yourkit.enabled` system property is no longer supported ([#289](https://github.com/spotbugs/spotbugs/issues/289))
1010

11+
### Changed
12+
13+
* SpotBugs now consumes ASM 6.0 *beta* rather than *alpha* ([#268](https://github.com/spotbugs/spotbugs/issues/268))
14+
1115
## 3.1.0-RC4 (2017/Jul/21)
1216

1317
### Added

eclipsePlugin-test/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ sourceSets {
1414
}
1515

1616
dependencies {
17-
compile 'org.ow2.asm:asm-debug-all:6.0_ALPHA'
17+
compile 'org.ow2.asm:asm-debug-all:6.0_BETA'
1818
compile 'net.jcip:jcip-annotations:1.0'
1919
compile 'dom4j:dom4j:1.6.1'
2020
compile 'commons-lang:commons-lang:2.6'

spotbugs-tests/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apply from: "$rootDir/gradle/checkstyle.gradle"
22

33
dependencies {
4-
compile 'org.ow2.asm:asm-debug-all:6.0_ALPHA'
4+
compile 'org.ow2.asm:asm-debug-all:6.0_BETA'
55
compile 'net.jcip:jcip-annotations:1.0'
66
compile 'dom4j:dom4j:1.6.1'
77
compile 'commons-lang:commons-lang:2.6'

spotbugs/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ sourceSets {
2828
}
2929

3030
dependencies {
31-
compile 'org.ow2.asm:asm-debug-all:6.0_ALPHA'
31+
compile 'org.ow2.asm:asm-debug-all:6.0_BETA'
3232
compile 'net.jcip:jcip-annotations:1.0'
3333
compile 'dom4j:dom4j:1.6.1'
3434
compile 'jaxen:jaxen:1.1.6' // only transitive through dom4j:dom4j:1.6.1, which has an *optional* dependency on jaxen:jaxen.
@@ -116,7 +116,7 @@ jar {
116116
manifest {
117117
attributes 'Main-Class': 'edu.umd.cs.findbugs.LaunchAppropriateUI',
118118
'Bundle-Version': project.version,
119-
'Class-Path': 'dom4j-1.6.1.jar jaxen-1.1.6.jar asm-debug-all-6.0_ALPHA.jar jsr305-3.0.1.jar jFormatString-3.0.0.jar commons-lang-2.6.jar'
119+
'Class-Path': 'dom4j-1.6.1.jar jaxen-1.1.6.jar asm-debug-all-6.0_BETA.jar jsr305-3.0.1.jar jFormatString-3.0.0.jar commons-lang-2.6.jar'
120120
}
121121
}
122122

0 commit comments

Comments
 (0)