Skip to content

Commit d81cb24

Browse files
Applied libraries updates
1 parent 0114f7f commit d81cb24

File tree

3 files changed

+20
-8
lines changed

3 files changed

+20
-8
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22
build
33
out
44
.gradle
5+
/.idea

bitgo-java-api/build.gradle

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,20 @@ apply plugin:'java'
22
apply plugin:'idea'
33

44
group = 'com.bitso'
5-
version='0.0.13'
5+
version='0.0.14'
66

77
repositories {
88
mavenCentral()
99
maven { url 'https://jitpack.io' }
1010
}
1111

1212
dependencies {
13-
compileOnly 'org.projectlombok:lombok:1.18.2'
14-
testCompileOnly 'org.projectlombok:lombok:1.18.2'
15-
annotationProcessor 'org.projectlombok:lombok:1.18.2'
16-
testAnnotationProcessor 'org.projectlombok:lombok:1.18.2'
17-
compile 'org.slf4j:slf4j-api:1.7.25',
18-
'com.fasterxml.jackson.core:jackson-databind:2.9.7'
19-
testCompile 'junit:junit:4.12'
13+
compileOnly 'org.projectlombok:lombok:1.18.34'
14+
annotationProcessor 'org.projectlombok:lombok:1.18.34'
15+
testCompileOnly 'org.projectlombok:lombok:1.18.34'
16+
testAnnotationProcessor 'org.projectlombok:lombok:1.18.34'
17+
18+
implementation 'org.slf4j:slf4j-api:1.7.25',
19+
'com.fasterxml.jackson.core:jackson-databind:2.17.2'
20+
testImplementation 'junit:junit:4.13.2'
2021
}

build.gradle

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
plugins {
2+
id "io.snyk.gradle.plugin.snykplugin" version "0.4"
3+
}
4+
5+
snyk {
6+
severity = 'medium'
7+
autoDownload = true
8+
autoUpdate = true
9+
arguments = '--all-sub-projects --configuration-matching=compile'
10+
}

0 commit comments

Comments
 (0)