Skip to content

Commit 4f61877

Browse files
upgrade dependencies
1 parent 118de5c commit 4f61877

4 files changed

Lines changed: 10 additions & 12 deletions

File tree

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id 'org.springframework.boot' version '2.3.5.RELEASE'
2+
id 'org.springframework.boot' version '2.4.0'
33
id 'io.spring.dependency-management' version '1.0.10.RELEASE'
44
id 'java'
55
}

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7-bin.zip
1+
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7.1-bin.zip
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStorePath=wrapper/dists

graylog-sdk-spring-boot-samples/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ dependencies {
88
implementation 'org.springframework.boot:spring-boot-starter-web'
99
implementation 'org.springframework.boot:spring-boot-starter-json'
1010

11-
implementation group: 'org.projectlombok', name: 'lombok', version: '1.18.14'
11+
implementation group: 'org.projectlombok', name: 'lombok', version: '1.18.16'
1212
implementation group: 'com.squareup.okhttp3', name: 'okhttp', version: '4.9.0'
1313
implementation group: 'com.joonsang.graylog', name: 'graylog-query-builder', version: '1.0.3'
1414

1515
implementation project(':graylog-sdk-spring-boot-starter')
1616

17-
annotationProcessor("org.projectlombok:lombok:1.18.14")
17+
annotationProcessor("org.projectlombok:lombok:1.18.16")
1818
}

graylog-sdk-spring-boot-starter/build.gradle

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -85,20 +85,18 @@ dependencies {
8585
implementation 'org.springframework.boot:spring-boot-starter-json'
8686
implementation 'org.springframework.boot:spring-boot-configuration-processor'
8787

88-
testImplementation('org.springframework.boot:spring-boot-starter-test') {
89-
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
90-
}
88+
testImplementation 'org.springframework.boot:spring-boot-starter-test'
9189

92-
implementation group: 'org.projectlombok', name: 'lombok', version: '1.18.14'
90+
implementation group: 'org.projectlombok', name: 'lombok', version: '1.18.16'
9391
implementation group: 'com.squareup.okhttp3', name: 'okhttp', version: '4.9.0'
9492
implementation group: 'com.jayway.jsonpath', name: 'json-path', version: '2.4.0'
95-
implementation group: 'com.google.guava', name: 'guava', version: '29.0-jre'
93+
implementation group: 'com.google.guava', name: 'guava', version: '30.0-jre'
9694
implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.11'
9795
implementation group: 'com.fasterxml.uuid', name: 'java-uuid-generator', version: '4.0.1'
98-
implementation group: 'org.mongodb', name: 'bson', version: '4.1.0'
96+
implementation group: 'org.mongodb', name: 'bson', version: '4.1.1'
9997

100-
annotationProcessor("org.projectlombok:lombok:1.18.14")
101-
testAnnotationProcessor("org.projectlombok:lombok:1.18.14")
98+
annotationProcessor("org.projectlombok:lombok:1.18.16")
99+
testAnnotationProcessor("org.projectlombok:lombok:1.18.16")
102100
}
103101

104102
test {

0 commit comments

Comments
 (0)