Skip to content

Commit

Permalink
Update all non-major dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] committed Sep 29, 2023
1 parent 1f9487a commit 33bff84
Show file tree
Hide file tree
Showing 7 changed files with 4,630 additions and 3,558 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
@@ -1,12 +1,12 @@
# Build
FROM openjdk:17-jdk as baseimage
FROM openjdk:17.0.2-jdk as baseimage

WORKDIR swagger-brake
COPY . .
RUN sh gradlew clean build shadowJar -x test

# Actual container
FROM openjdk:17-jdk
FROM openjdk:17.0.2-jdk
WORKDIR swagger-brake
COPY --from=baseimage /swagger-brake/swagger-brake-cli/build/libs/swagger-brake-*-cli.jar swagger-brake.jar

Expand Down
30 changes: 15 additions & 15 deletions build.gradle
Expand Up @@ -9,7 +9,7 @@ buildscript {
}
}
dependencies {
classpath "com.github.spotbugs.snom:spotbugs-gradle-plugin:5.0.12"
classpath "com.github.spotbugs.snom:spotbugs-gradle-plugin:5.1.3"
}
}

Expand All @@ -32,23 +32,23 @@ subprojects {
compileOnly "com.github.spotbugs:spotbugs-annotations:${spotbugs.toolVersion.get()}"
testCompileOnly "com.github.spotbugs:spotbugs-annotations:${spotbugs.toolVersion.get()}"

compileOnly "org.projectlombok:lombok:1.18.24"
annotationProcessor "org.projectlombok:lombok:1.18.24"
compileOnly "org.projectlombok:lombok:1.18.30"
annotationProcessor "org.projectlombok:lombok:1.18.30"

implementation 'com.google.guava:guava:32.1.2-jre'
implementation "org.apache.commons:commons-collections4:4.4"
implementation "org.apache.commons:commons-lang3:3.12.0"
implementation "org.apache.commons:commons-lang3:3.12.0"
implementation "org.springframework:spring-context:6.0.7"
implementation "org.springframework:spring-context:6.0.7"
implementation "com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.13.4"

testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.9.1'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.9.1'
testImplementation "org.assertj:assertj-core:3.23.1"
testImplementation "org.springframework:spring-test:6.0.7"
testImplementation "org.mockito:mockito-core:5.2.0"
testImplementation "org.mockito:mockito-junit-jupiter:5.2.0"
implementation "org.apache.commons:commons-lang3:3.13.0"
implementation "org.apache.commons:commons-lang3:3.13.0"
implementation "org.springframework:spring-context:6.0.12"
implementation "org.springframework:spring-context:6.0.12"
implementation "com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.15.2"

testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.10.0'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.10.0'
testImplementation "org.assertj:assertj-core:3.24.2"
testImplementation "org.springframework:spring-test:6.0.12"
testImplementation "org.mockito:mockito-core:5.5.0"
testImplementation "org.mockito:mockito-junit-jupiter:5.5.0"
}

checkstyle {
Expand Down

0 comments on commit 33bff84

Please sign in to comment.