Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
b0n541 committed Jul 31, 2022
1 parent 8653cfe commit 63cf7d0
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 10 deletions.
15 changes: 8 additions & 7 deletions build.gradle.kts
Expand Up @@ -22,13 +22,14 @@ subprojects {
apply(plugin = "java")

dependencies {
implementation("org.slf4j", "slf4j-api", "1.7.32")
implementation("ch.qos.logback", "logback-classic", "1.2.7")

testImplementation("org.junit.jupiter", "junit-jupiter-api", "5.8.2")
testRuntimeOnly("org.junit.jupiter", "junit-jupiter-engine", "5.8.2")
testImplementation("org.mockito", "mockito-core", "4.1.0")
testImplementation("org.assertj", "assertj-core", "3.21.0")
implementation("org.slf4j", "slf4j-api", "1.7.36")
implementation("ch.qos.logback", "logback-classic", "1.2.11")
implementation("com.google.guava", "guava", "31.1-jre")

testImplementation("org.junit.jupiter", "junit-jupiter-api", "5.9.0")
testRuntimeOnly("org.junit.jupiter", "junit-jupiter-engine", "5.9.0")
testImplementation("org.mockito", "mockito-core", "4.6.1")
testImplementation("org.assertj", "assertj-core", "3.23.1")
}

java {
Expand Down
1 change: 0 additions & 1 deletion jskat-base/build.gradle.kts
@@ -1,4 +1,3 @@
dependencies {
implementation("com.google.guava", "guava", "31.0.1-jre")
implementation("org.apache.commons", "commons-math3", "3.6.1")
}
1 change: 0 additions & 1 deletion jskat-javafx-gui/build.gradle.kts
Expand Up @@ -5,7 +5,6 @@ plugins {
dependencies {
implementation(project(":jskat-base"))
implementation(project(":jskat-swing-gui"))
implementation("com.google.guava", "guava", "31.0.1-jre")
}

javafx {
Expand Down
1 change: 0 additions & 1 deletion jskat-swing-gui/build.gradle.kts
Expand Up @@ -4,7 +4,6 @@ plugins {

dependencies {
implementation(project(":jskat-base"))
implementation("com.google.guava", "guava", "31.0.1-jre")
implementation("com.miglayout", "miglayout-swing", "11.0")
}

Expand Down

0 comments on commit 63cf7d0

Please sign in to comment.