Skip to content

Commit

Permalink
Upgrade to Gradle 8.4
Browse files Browse the repository at this point in the history
  • Loading branch information
philipp94831 committed Jan 22, 2025
1 parent 611091c commit 2bbf1a4
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
9 changes: 4 additions & 5 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,9 @@ subprojects {
}

dependencies {
val junitVersion = "5.11.4"
"testImplementation"("org.junit.jupiter:junit-jupiter-api:$junitVersion")
"testImplementation"("org.junit.jupiter:junit-jupiter-params:$junitVersion")
"testRuntimeOnly"("org.junit.jupiter:junit-jupiter-engine:$junitVersion")
"testImplementation"(group = "org.assertj", name = "assertj-core", version = "3.27.2")
"testImplementation"("org.junit.jupiter:junit-jupiter-api:5.10.1")
"testImplementation"("org.junit.jupiter:junit-jupiter-params:5.10.1")
"testRuntimeOnly"("org.junit.jupiter:junit-jupiter-engine:5.10.1")
"testImplementation"(group = "org.assertj", name = "assertj-core", version = "3.25.1")
}
}
6 changes: 3 additions & 3 deletions common/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ description = "Typical implementation of similarity measures, duplicate detectio

dependencies {
"api"(project(":core"))
"api"(group = "org.apache.commons", name = "commons-text", version = "1.13.0")
"api"(group = "commons-codec", name = "commons-codec", version = "1.17.2")
"api"(group = "org.apache.commons", name = "commons-text", version = "1.11.0")
"api"(group = "commons-codec", name = "commons-codec", version = "1.16.0")

implementation(group = "com.google.guava", name = "guava", version = "33.4.0-jre")
implementation(group = "com.google.guava", name = "guava", version = "33.0.0-jre")
implementation(group = "org.jgrapht", name = "jgrapht-core", version = "1.5.2")
}
2 changes: 1 addition & 1 deletion examples/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ description = "Concise examples of using the deduplication DSL."
dependencies {
implementation(project(":common"))

testImplementation(group = "org.apache.commons", name = "commons-csv", version = "1.13.0")
testImplementation(group = "org.apache.commons", name = "commons-csv", version = "1.10.0")
}

0 comments on commit 2bbf1a4

Please sign in to comment.