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 Apr 13, 2023
1 parent fd4ab15 commit eff3d35
Show file tree
Hide file tree
Showing 11 changed files with 2,713 additions and 2,167 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
28 changes: 14 additions & 14 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.0.14"
}
}

Expand All @@ -32,27 +32,27 @@ 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.26"
annotationProcessor "org.projectlombok:lombok:1.18.26"

implementation 'com.google.guava:guava:31.1-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.springframework:spring-context:6.0.8"
implementation "org.springframework:spring-context:6.0.8"
implementation "com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.14.2"

testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.9.2'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.9.2'
testImplementation "org.assertj:assertj-core:3.24.2"
testImplementation "org.springframework:spring-test:6.0.8"
testImplementation "org.mockito:mockito-core:5.3.0"
testImplementation "org.mockito:mockito-junit-jupiter:5.3.0"
}

checkstyle {
toolVersion = '8.14'
toolVersion = '8.45.1'
}

tasks.withType(Checkstyle) {
Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
3 changes: 2 additions & 1 deletion gradle/wrapper/gradle-wrapper.properties
@@ -1,5 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6.1-bin.zip
networkTimeout=10000
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit eff3d35

Please sign in to comment.