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:
parent
a6747fdfe5
commit
8ff14ff9f9
6 changed files with 93 additions and 87 deletions
|
@ -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();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue