Skip to content

Commit

Permalink
Bumped dependencies and fixed vulnerabilities
Browse files Browse the repository at this point in the history
  • Loading branch information
blootsvoets committed Jan 10, 2022
1 parent a80ae91 commit 11becbb
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
10 changes: 9 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
`maven-publish`
signing
id("org.jetbrains.dokka") apply false
id("com.github.ben-manes.versions") version "0.39.0"
id("com.github.ben-manes.versions") version "0.41.0"
id("io.github.gradle-nexus.publish-plugin") version "1.1.0"
}

Expand Down Expand Up @@ -42,6 +42,14 @@ subprojects {
val dokkaVersion: String by project
configurations["dokkaHtmlPlugin"]("org.jetbrains.dokka:kotlin-as-java-plugin:$dokkaVersion")

val jacksonVersion: String by project
configurations["dokkaPlugin"](platform("com.fasterxml.jackson:jackson-bom:$jacksonVersion"))
configurations["dokkaRuntime"](platform("com.fasterxml.jackson:jackson-bom:$jacksonVersion"))

val jsoupVersion: String by project
configurations["dokkaPlugin"]("org.jsoup:jsoup:$jsoupVersion")
configurations["dokkaRuntime"]("org.jsoup:jsoup:$jsoupVersion")

val log4j2Version: String by project
val testRuntimeOnly by configurations
testRuntimeOnly("org.apache.logging.log4j:log4j-slf4j-impl:$log4j2Version")
Expand Down
7 changes: 4 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ org.gradle.vfs.watch=true
kotlin.code.style=official

kotlinVersion=1.6.10
dokkaVersion=1.6.0
dokkaVersion=1.6.10
jsoupVersion=1.14.3

jerseyVersion=3.0.3
grizzlyVersion=3.0.1
Expand All @@ -20,7 +21,7 @@ jakartaWsRsVersion=3.0.0
jakartaAnnotationVersion=2.0.0
jacksonVersion=2.12.6
slf4jVersion=1.7.32
log4j2Version=2.17.0
log4j2Version=2.17.1
jakartaXmlBindVersion=3.0.1
jakartaJaxbCoreVersion=3.0.2
jakartaJaxbRuntimeVersion=3.0.2
Expand All @@ -32,4 +33,4 @@ mustacheVersion=0.9.10
hibernateVersion=5.6.3.Final
liquibaseVersion=4.6.2
postgresVersion=42.3.1
h2Version=2.0.204
h2Version=2.0.206

0 comments on commit 11becbb

Please sign in to comment.