Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
452 changes: 452 additions & 0 deletions .github/workflows/deployment-ea.yml

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@ testing {
}

java {
sourceCompatibility = JavaVersion.VERSION_24
targetCompatibility = JavaVersion.VERSION_24
toolchain {
// If this is updated, also update
// - build.gradle -> jacoco -> toolVersion (because JaCoCo does not support newest JDK out of the box. Check versions at https://www.jacoco.org/jacoco/trunk/doc/changes.html)
Expand Down
5 changes: 4 additions & 1 deletion jabgui/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,10 @@ dependencies {
testImplementation("org.testfx:testfx-core:4.0.16-alpha")
testImplementation("org.testfx:testfx-junit5:4.0.16-alpha")

testImplementation("org.mockito:mockito-core:5.17.0")
testImplementation("org.mockito:mockito-core:5.17.0") {
exclude(group = "net.bytebuddy", module = "byte-buddy")
}
testImplementation("net.bytebuddy:byte-buddy:1.17.5")

// recommended by https://github.com/wiremock/wiremock/issues/2149#issuecomment-1835775954
testImplementation("org.wiremock:wiremock-standalone:3.12.1")
Expand Down
5 changes: 4 additions & 1 deletion jabkit/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,10 @@ dependencies {
implementation("org.apache.lucene:lucene-queryparser:${luceneVersion}")

testImplementation(project(":test-support"))
testImplementation("org.mockito:mockito-core:5.17.0")
testImplementation("org.mockito:mockito-core:5.17.0") {
exclude(group = "net.bytebuddy", module = "byte-buddy")
}
testImplementation("net.bytebuddy:byte-buddy:1.17.5")
}

/*
Expand Down
5 changes: 4 additions & 1 deletion jablib/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,10 @@ dependencies {
testImplementation("org.junit.jupiter:junit-jupiter-params:5.12.2")
testImplementation("org.junit.platform:junit-platform-launcher:1.12.2")

testImplementation("org.mockito:mockito-core:5.17.0")
testImplementation("org.mockito:mockito-core:5.17.0") {
exclude(group = "net.bytebuddy", module = "byte-buddy")
}
testImplementation("net.bytebuddy:byte-buddy:1.17.5")

testImplementation("org.xmlunit:xmlunit-core:2.10.0")
testImplementation("org.xmlunit:xmlunit-matchers:2.10.0")
Expand Down
5 changes: 4 additions & 1 deletion jabsrv/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,10 @@ dependencies {
exclude(group = "org.antlr")
}

testImplementation("org.mockito:mockito-core:5.17.0")
testImplementation("org.mockito:mockito-core:5.17.0") {
exclude(group = "net.bytebuddy", module = "byte-buddy")
}
testImplementation("net.bytebuddy:byte-buddy:1.17.5")
}

javafx {
Expand Down
6 changes: 5 additions & 1 deletion test-support/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,11 @@ dependencies {
implementation("org.apache.logging.log4j:log4j-to-slf4j:2.24.3")

implementation("org.junit.jupiter:junit-jupiter-api:5.12.2")
implementation("org.mockito:mockito-core:5.17.0")

implementation("org.mockito:mockito-core:5.17.0") {
exclude(group = "net.bytebuddy", module = "byte-buddy")
}
implementation("net.bytebuddy:byte-buddy:1.17.5")

implementation("org.jspecify:jspecify:1.0.0")
}
Expand Down