We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12d8f94 commit b9e3660Copy full SHA for b9e3660
buildSrc/src/main/java/org/springframework/boot/build/JavaConventions.java
@@ -156,7 +156,6 @@ private void configureTestConventions(Project project) {
156
project.getTasks().withType(Test.class, (test) -> {
157
test.useJUnitPlatform();
158
test.setMaxHeapSize("1024M");
159
- test.setMaxParallelForks(project.getGradle().getStartParameter().getMaxWorkerCount());
160
project.getTasks().withType(Checkstyle.class, (checkstyle) -> test.mustRunAfter(checkstyle));
161
project.getTasks().withType(CheckFormat.class, (checkFormat) -> test.mustRunAfter(checkFormat));
162
});
0 commit comments