Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
jaguililla committed Jun 22, 2024
1 parent 94a1f0d commit 7510a6d
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 12 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ org.gradle.warning.mode=all
org.gradle.console=plain

# Gradle
version=3.5.4
version=3.6.0
group=com.hexagonkt
description=The atoms of your platform

Expand Down
7 changes: 2 additions & 5 deletions gradle/application.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -124,14 +124,11 @@ tasks.register("jlink", Exec) {
commandLine(
[
"jlink",
"--add-modules",
modules,
"--compress=2",
"--add-modules", modules,
"--strip-debug",
"--no-header-files",
"--no-man-pages",
"--output",
"$buildDir/$projectName",
"--output", "$buildDir/$projectName",
]
)

Expand Down
5 changes: 1 addition & 4 deletions http/rest_tools/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,7 @@ dependencies {
"api"(project(":http:rest"))
"api"(project(":http:http_server"))
"api"(project(":http:http_client"))
"api"("com.atlassian.oai:swagger-request-validator-core:$swaggerRequestValidatorVersion") {
exclude(module = "commons-compress")
exclude(module = "commons-codec")
}
"api"("com.atlassian.oai:swagger-request-validator-core:$swaggerRequestValidatorVersion")

"testImplementation"(project(":http:http_client_jetty"))
"testImplementation"(project(":http:http_server_jetty"))
Expand Down
2 changes: 1 addition & 1 deletion serverless/serverless_http_google/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
}

apply(from = "$rootDir/gradle/kotlin.gradle")
apply(from = "$rootDir/gradle/publish.gradle")
//apply(from = "$rootDir/gradle/publish.gradle")
apply(from = "$rootDir/gradle/dokka.gradle")
apply(from = "$rootDir/gradle/detekt.gradle")

Expand Down
2 changes: 1 addition & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ dependencyResolutionManagement {
version("jetty", "12.0.10")

// rest_tools
version("swaggerRequestValidator", "2.40.0")
version("swaggerRequestValidator", "2.41.0")

// serialization
version("jackson", "2.17.1")
Expand Down

0 comments on commit 7510a6d

Please sign in to comment.