Ensure execution stops on failure

Bumped JUnit to version 5.10.3
Bumped PMD extension to version 1.1.2
This commit is contained in:
Erik C. Thauvin 2024-06-24 23:26:46 -07:00
parent a6747fdfe5
commit 8ff14ff9f9
Signed by: erik
GPG key ID: 776702A6A2DA330E
6 changed files with 93 additions and 87 deletions

View file

@ -25,8 +25,8 @@ public class ExamplesBuild extends Project {
repositories = List.of(MAVEN_LOCAL, MAVEN_CENTRAL);
scope(test)
.include(dependency("org.junit.jupiter", "junit-jupiter", version(5, 10, 2)))
.include(dependency("org.junit.platform", "junit-platform-console-standalone", version(1, 10, 2)));
.include(dependency("org.junit.jupiter", "junit-jupiter", version(5, 10, 3)))
.include(dependency("org.junit.platform", "junit-platform-console-standalone", version(1, 10, 3)));
}
public static void main(String[] args) {
@ -34,7 +34,7 @@ public class ExamplesBuild extends Project {
}
@BuildCommand(summary = "Generates Jacoco Reports")
public void jacoco() throws IOException {
public void jacoco() throws Exception {
new JacocoReportOperation()
.fromProject(this)
.execute();