Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update all non-major dependencies #88

Merged
merged 2 commits into from Sep 29, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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
26 changes: 13 additions & 13 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 "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.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"
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
7 changes: 7 additions & 0 deletions renovate.json
Expand Up @@ -32,6 +32,13 @@
"ch.qos.logback:logback-classic"
],
"allowedVersions": "<=1.2.11"
},
{
"matchPackageNames": [
"com.fasterxml.jackson.core:jackson-databind",
"com.fasterxml.jackson.dataformat:jackson-dataformat-xml"
],
"allowedVersions": "<=2.13.4"
}
]
}
Expand Down