Compare commits
2 commits
08821a6e41
...
2a4829b31c
Author | SHA1 | Date | |
---|---|---|---|
2a4829b31c | |||
e9e535f5ef |
3 changed files with 3 additions and 3 deletions
2
.idea/misc.xml
generated
2
.idea/misc.xml
generated
|
@ -1,4 +1,3 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project version="4">
|
<project version="4">
|
||||||
<component name="EntryPointsManager">
|
<component name="EntryPointsManager">
|
||||||
<entry_points version="2.0">
|
<entry_points version="2.0">
|
||||||
|
@ -33,7 +32,6 @@
|
||||||
<component name="PDMPlugin">
|
<component name="PDMPlugin">
|
||||||
<option name="customRuleSets">
|
<option name="customRuleSets">
|
||||||
<list>
|
<list>
|
||||||
<option value="K:\java\semver\config\pmd.xml" />
|
|
||||||
<option value="$PROJECT_DIR$/config/pmd.xml" />
|
<option value="$PROJECT_DIR$/config/pmd.xml" />
|
||||||
</list>
|
</list>
|
||||||
</option>
|
</option>
|
||||||
|
|
|
@ -49,7 +49,7 @@ public class JacocoReportOperationBuild extends Project {
|
||||||
scope(test)
|
scope(test)
|
||||||
.include(dependency("org.junit.jupiter", "junit-jupiter", version(5, 10, 0)))
|
.include(dependency("org.junit.jupiter", "junit-jupiter", version(5, 10, 0)))
|
||||||
.include(dependency("org.junit.platform", "junit-platform-console-standalone", version(1, 10, 0)))
|
.include(dependency("org.junit.platform", "junit-platform-console-standalone", version(1, 10, 0)))
|
||||||
.include(dependency("org.assertj:assertj-joda-time:2.2.0"));
|
.include(dependency("org.assertj", "assertj-core", version(3, 24, 2)));
|
||||||
|
|
||||||
javadocOperation()
|
javadocOperation()
|
||||||
.javadocOptions()
|
.javadocOptions()
|
||||||
|
|
|
@ -211,6 +211,8 @@ public class JacocoReportOperation extends AbstractOperation<JacocoReportOperati
|
||||||
|
|
||||||
//noinspection ResultOfMethodCallIgnored
|
//noinspection ResultOfMethodCallIgnored
|
||||||
buildJacocoReportsDir.mkdirs();
|
buildJacocoReportsDir.mkdirs();
|
||||||
|
//noinspection ResultOfMethodCallIgnored
|
||||||
|
buildJacocoExecDir.mkdirs();
|
||||||
|
|
||||||
var loader = loadExecFiles();
|
var loader = loadExecFiles();
|
||||||
var bundle = analyze(loader.getExecutionDataStore());
|
var bundle = analyze(loader.getExecutionDataStore());
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue