Version 0.9.8

This commit is contained in:
Erik C. Thauvin 2024-08-30 12:58:10 -07:00
parent 9f3ff8aa35
commit 0e7a31fd1e
Signed by: erik
GPG key ID: 776702A6A2DA330E
3 changed files with 3 additions and 5 deletions

View file

@ -1,7 +1,6 @@
bld.downloadExtensionJavadoc=false
bld.downloadExtensionSources=true
bld.downloadLocation=
bld.extension-exec=com.uwyn.rife2:bld-exec:1.0.3-SNAPSHOT
bld.extension-jacoco=com.uwyn.rife2:bld-jacoco-report:0.9.8-SNAPSHOT
bld.extension-jacoco=com.uwyn.rife2:bld-jacoco-report:0.9.8
bld.repositories=MAVEN_LOCAL,MAVEN_CENTRAL,RIFE2_SNAPSHOTS,RIFE2_RELEASES
bld.version=2.1.0

View file

@ -34,7 +34,7 @@ public class JacocoReportOperationBuild extends Project {
public JacocoReportOperationBuild() {
pkg = "rife.bld.extension";
name = "JacocoReportOperation";
version = version(0, 9, 8, "SNAPSHOT");
version = version(0, 9, 8);
javaRelease = 17;

View file

@ -113,8 +113,7 @@ public class JacocoReportOperation extends AbstractOperation<JacocoReportOperati
* @see #classFiles(Collection)
*/
public JacocoReportOperation classFiles(File... classFiles) {
classFiles_.addAll(List.of(classFiles));
return this;
return classFiles(List.of(classFiles));
}
/**