Remove test layers four and five
All checks were successful
build-and-test / test (push) Successful in 1m26s
build-and-test / generate-javadoc (push) Successful in 1m35s
build-and-test / build (push) Successful in 1m37s

This commit is contained in:
JeremyStar™ 2024-09-01 16:40:17 +02:00
parent dedcdad002
commit c33e3d3e27
Signed by: JeremyStarTM
GPG key ID: E366BAEF67E4704D
2 changed files with 1 additions and 5 deletions

View file

@ -40,7 +40,7 @@ class DependencyResolverTest extends TestBase {
@ParameterizedTest
@DisplayName("resolve")
@ValueSource(ints = {
0, 1, 2, 3, 4, 5
0, 1, 2, 3
})
void testResolve(int layers) throws UnmetDependenciesException {
if (checkCondition()) return;

View file

@ -21,7 +21,6 @@
plugins {
id("java")
id("io.freefair.lombok") version("${pluginLombok}")
id("maven-publish")
}
// Register task for Javadoc generation for all subsystems
@ -86,13 +85,10 @@ tasks.register("javadocAll", Javadoc) {
}
}
}
// Force doLast block to execute even if task failed
}
// Set group, version and repositories for all projects
allprojects {
group = project.group
version = project.versioningVersion + "-" + project.versioningType + project.versioningTyperelease + project.versioningFork
java {