Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
felldo committed Nov 17, 2023
1 parent 78c1ef0 commit 7dd75ee
Showing 1 changed file with 7 additions and 10 deletions.
17 changes: 7 additions & 10 deletions lib/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ plugins {
`java-library`
`maven-publish`
signing
id("com.github.ben-manes.versions") version "0.47.0"
id("com.github.ben-manes.versions") version "0.50.0"

//https://github.com/melix/jmh-gradle-plugin
id("me.champeau.jmh") version "0.7.1"
id("me.champeau.jmh") version "0.7.2"
}


Expand Down Expand Up @@ -77,7 +77,7 @@ repositories {
}

dependencies {
implementation("com.fasterxml.jackson.core:jackson-databind:2.15.2")
implementation("com.fasterxml.jackson.core:jackson-databind:2.16.0")
}

testing {
Expand Down Expand Up @@ -230,10 +230,7 @@ signing {
val signingKeyId = findPropertyOrNull("JEMOJI_SIGNING_KEY_ID")
val signingPassword = findPropertyOrNull("JEMOJI_SIGNING_PASSWORD")
if (System.getenv("SKIP_SIGNING").toBoolean()) {
println("++++++++++++++++++SIGNING NOT REQUIRED")
isRequired = false
} else{
println("++++++++++++++++++SIGNING REQUIRED")
}

useInMemoryPgpKeys(signingKeyId, signingKey, signingPassword)
Expand Down Expand Up @@ -274,12 +271,12 @@ buildscript {
mavenCentral()
}
dependencies {
classpath("com.fasterxml.jackson.core:jackson-databind:2.15.2")
classpath("com.fasterxml.jackson.module:jackson-module-kotlin:2.15.2")
classpath("com.fasterxml.jackson.core:jackson-databind:2.16.0")
classpath("com.fasterxml.jackson.module:jackson-module-kotlin:2.16.0")
classpath("com.squareup.okhttp3:okhttp:4.9.3")

classpath("org.jsoup:jsoup:1.16.1")
classpath("com.github.javaparser:javaparser-symbol-solver-core:3.25.4")
classpath("org.jsoup:jsoup:1.16.2")
classpath("com.github.javaparser:javaparser-symbol-solver-core:3.25.6")
classpath(files(project.rootDir.path + "\\libs\\jemoji.jar"))
}
}
Expand Down

0 comments on commit 7dd75ee

Please sign in to comment.