Skip to content

Commit

Permalink
Consume ASM 6.0 BETA (spotbugs#268)
Browse files Browse the repository at this point in the history
  • Loading branch information
Andreas Sewe committed Aug 4, 2017
1 parent 9e668cd commit 6491753
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ This is the changelog for SpotBugs. This follows [Keep a Changelog v0.3](http://

* 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))

### Changed

* SpotBugs now consumes ASM 6.0 *beta* rather than *alpha* ([#268](https://github.com/spotbugs/spotbugs/issues/268))

## 3.1.0-RC4 (2017/Jul/21)

### Added
Expand Down
2 changes: 1 addition & 1 deletion eclipsePlugin-test/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ sourceSets {
}

dependencies {
compile 'org.ow2.asm:asm-debug-all:6.0_ALPHA'
compile 'org.ow2.asm:asm-debug-all:6.0_BETA'
compile 'net.jcip:jcip-annotations:1.0'
compile 'dom4j:dom4j:1.6.1'
compile 'commons-lang:commons-lang:2.6'
Expand Down
2 changes: 1 addition & 1 deletion spotbugs-tests/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apply from: "$rootDir/gradle/checkstyle.gradle"

dependencies {
compile 'org.ow2.asm:asm-debug-all:6.0_ALPHA'
compile 'org.ow2.asm:asm-debug-all:6.0_BETA'
compile 'net.jcip:jcip-annotations:1.0'
compile 'dom4j:dom4j:1.6.1'
compile 'commons-lang:commons-lang:2.6'
Expand Down
4 changes: 2 additions & 2 deletions spotbugs/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ sourceSets {
}

dependencies {
compile 'org.ow2.asm:asm-debug-all:6.0_ALPHA'
compile 'org.ow2.asm:asm-debug-all:6.0_BETA'
compile 'net.jcip:jcip-annotations:1.0'
compile 'dom4j:dom4j:1.6.1'
compile 'jaxen:jaxen:1.1.6' // only transitive through dom4j:dom4j:1.6.1, which has an *optional* dependency on jaxen:jaxen.
Expand Down Expand Up @@ -116,7 +116,7 @@ jar {
manifest {
attributes 'Main-Class': 'edu.umd.cs.findbugs.LaunchAppropriateUI',
'Bundle-Version': project.version,
'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'
'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'
}
}

Expand Down

0 comments on commit 6491753

Please sign in to comment.