Skip to content

Commit f8d2ca0

Browse files
Merge pull request #132 from bunq/feature/sdk_java#131_update_dependencies
Updated Java SDK dependencies
2 parents dcdc0ee + 7b1a359 commit f8d2ca0

File tree

1 file changed

+15
-10
lines changed

1 file changed

+15
-10
lines changed

build.gradle

Lines changed: 15 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -22,18 +22,23 @@ repositories {
2222

2323
dependencies {
2424
// https://mvnrepository.com/artifact/junit/junit
25-
testCompile group: 'junit', name: 'junit', version: '4.12'
25+
testCompile group: 'junit', name: 'junit', version: '4.13'
2626
// https://mvnrepository.com/artifact/com.google.code.gson/gson
27-
compile group: 'com.google.code.gson', name: 'gson', version: '2.8.1'
28-
compile 'com.squareup.okhttp3:okhttp:3.9.1'
29-
// https://mvnrepository.com/artifact/org.apache.commons/commons-io
30-
compile group: 'org.apache.commons', name: 'commons-io', version: '1.3.2'
27+
compile group: 'com.google.code.gson', name: 'gson', version: '2.8.6'
28+
// https://mvnrepository.com/artifact/com.squareup.okhttp3/okhttp
29+
compile group: 'com.squareup.okhttp3', name: 'okhttp', version: '3.14.9'
30+
// https://mvnrepository.com/artifact/commons-io/commons-io
31+
compile group: 'commons-io', name: 'commons-io', version: '2.7'
3132
// https://mvnrepository.com/artifact/com.squareup.okio/okio
32-
compile group: 'com.squareup.okio', name: 'okio', version: '1.13.0'
33-
34-
compile group: 'javax.xml.bind', name: 'jaxb-api', version: '2.3.0'
35-
compile group: 'com.sun.xml.bind', name: 'jaxb-core', version: '2.3.0'
36-
compile group: 'com.sun.xml.bind', name: 'jaxb-impl', version: '2.3.0'
33+
compile group: 'com.squareup.okio', name: 'okio', version: '1.17.5'
34+
// https://mvnrepository.com/artifact/javax.xml.bind/jaxb-api
35+
compile group: 'javax.xml.bind', name: 'jaxb-api', version: '2.3.1'
36+
// https://mvnrepository.com/artifact/com.sun.xml.bind/jaxb-core
37+
compile group: 'com.sun.xml.bind', name: 'jaxb-core', version: '2.3.0.1'
38+
// https://mvnrepository.com/artifact/com.sun.xml.bind/jaxb-impl
39+
compile group: 'com.sun.xml.bind', name: 'jaxb-impl', version: '2.3.3'
40+
// https://mvnrepository.com/artifact/com.google.code.findbugs/jsr305
41+
compile group: 'com.google.code.findbugs', name: 'jsr305', version: '3.0.2'
3742
}
3843

3944
apply plugin: 'idea'

0 commit comments

Comments
 (0)