Caleb Cushing
03/04/2024, 6:19 PMresolutionStrategy {
componentSelection {
all {
val spotbugs = Regex("^spotbugs.*")
if (!name.matches(spotbugs) && !candidate.module.matches(spotbugs)) {
val nonRelease = Regex("^[\\d.]+-(M|ea|beta|alpha).*$")
if (candidate.version.matches(nonRelease)) reject("no pre-release")
}
Vampire
03/04/2024, 10:28 PM> Task :test
No test executed. This behavior has been deprecated. This will fail with an error in Gradle 9.0. There are test sources present but no test was executed. Please check your test configuration. Consult the upgrading guide for further information: https://docs.gradle.org/8.6/userguide/upgrading_version_8.html#test_task_fail_on_no_test_executed
Caleb Cushing
03/04/2024, 10:30 PMVampire
03/04/2024, 10:30 PMCaleb Cushing
03/04/2024, 10:32 PMCaleb Cushing
03/04/2024, 10:32 PMVampire
03/04/2024, 10:33 PMVampire
03/04/2024, 10:33 PMCaleb Cushing
03/04/2024, 10:34 PMVampire
03/04/2024, 10:34 PMCaleb Cushing
03/04/2024, 10:35 PMCaleb Cushing
03/04/2024, 10:35 PMCaleb Cushing
03/04/2024, 10:36 PMVampire
03/04/2024, 10:39 PMVampire
03/04/2024, 10:40 PM