Skip to content

Commit

Permalink
Merge pull request #256 from pontem-network/fix-commons-dep
Browse files Browse the repository at this point in the history
add apache.commons.text dependency to provide StringEscapeUtils
  • Loading branch information
mkurnikov authored Dec 2, 2024
2 parents 6170f5e + 547f6a8 commit 19a1c7f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ fun prop(name: String): String =

val shortPlatformVersion = prop("shortPlatformVersion")
val useInstaller = prop("useInstaller").toBooleanStrict()
val codeVersion = "1.41.0"
val codeVersion = "1.41.1"

val pluginVersion = "$codeVersion.$shortPlatformVersion"
val pluginGroup = "org.move"
Expand Down Expand Up @@ -65,6 +65,8 @@ allprojects {
// cannot be updated further, problems with underlying library
implementation("com.github.ajalt.clikt:clikt:3.5.4")
implementation("com.fasterxml.jackson.module:jackson-module-kotlin:2.18.+")
// required for the StringEscapeUtils
implementation("org.apache.commons:commons-text:1.12.0")

testImplementation("junit:junit:4.13.2")
testImplementation("org.opentest4j:opentest4j:1.3.0")
Expand Down

0 comments on commit 19a1c7f

Please sign in to comment.