Skip to content

Commit 74c0035

Browse files
committed
update dependencies:
- rxjava 1.0.14 -> 1.0.16 (e.g. BlockingSingle) - cglib finally java 8 compatible -> 3.2.0
1 parent cd6f59f commit 74c0035

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

build.gradle

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,15 @@ repositories {
1919
}
2020

2121
def googleGuavaVersion = '18.0'
22-
def rxJavaVersion = '1.0.14'
22+
def rxJavaVersion = '1.0.16'
2323
def rxSwingVersion = '0.25.0'
2424
def jcipVersion = '1.0'
2525
def jsr305Version = '3.0.1'
2626
def commonsLang3Version = '3.4'
2727

2828
def groovyVersion = '2.4.5'
2929
def spockVersion = '1.0-groovy-2.4'
30-
def cglibVersion = '3.1'
31-
def asmVersion = '5.0.4'
30+
def cglibVersion = '3.2.0'
3231
def swingXVersion = '1.6.5-1'
3332

3433
dependencies {
@@ -44,10 +43,7 @@ dependencies {
4443
testCompile("org.spockframework:spock-core:${spockVersion}") {
4544
exclude group: 'org.codehaus.groovy'
4645
}
47-
testCompile("cglib:cglib:${cglibVersion}") { // spock mocks
48-
exclude group: 'org.ow2.asm'
49-
}
50-
testCompile "org.ow2.asm:asm:${asmVersion}" // spock mocks
46+
testCompile("cglib:cglib:${cglibVersion}") // spock mocks
5147
}
5248

5349
sourceSets.main.java.srcDirs = ['src/main/java']

0 commit comments

Comments
 (0)