Version 0.9.4
This commit is contained in:
parent
6946a3c26d
commit
154359e0cd
3 changed files with 4 additions and 5 deletions
|
@ -1,7 +1,7 @@
|
|||
bld.downloadExtensionJavadoc=false
|
||||
bld.downloadExtensionSources=true
|
||||
bld.extensions=com.uwyn.rife2:bld-kotlin:0.9.4
|
||||
bld.extension-detekt=com.uwyn.rife2:bld-detekt:0.9.4-SNAPSHOT
|
||||
bld.extension-detekt=com.uwyn.rife2:bld-detekt:0.9.4
|
||||
bld.repositories=MAVEN_LOCAL,MAVEN_CENTRAL,RIFE2_SNAPSHOTS,RIFE2_RELEASES
|
||||
bld.downloadLocation=
|
||||
bld.sourceDirectories=
|
||||
|
|
|
@ -34,7 +34,7 @@ public class DetektOperationBuild extends Project {
|
|||
public DetektOperationBuild() {
|
||||
pkg = "rife.bld.extension";
|
||||
name = "DetektOperation";
|
||||
version = version(0, 9, 4, "SNAPSHOT");
|
||||
version = version(0, 9, 4);
|
||||
|
||||
javaRelease = 17;
|
||||
downloadSources = true;
|
||||
|
@ -88,12 +88,11 @@ public class DetektOperationBuild extends Project {
|
|||
new DetektOperationBuild().start(args);
|
||||
}
|
||||
|
||||
@BuildCommand(summary = "Check source code with PMD")
|
||||
@BuildCommand(summary = "Checks source code with PMD")
|
||||
public void pmd() {
|
||||
new PmdOperation()
|
||||
.fromProject(this)
|
||||
.ruleSets("config/pmd.xml")
|
||||
.execute();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
package rife.bld.extension;
|
||||
|
||||
/**
|
||||
* Defines a report for given report-id to be stores in the given path.
|
||||
* Defines a report for the given report-id to be stored on the given path.
|
||||
*
|
||||
* @param id the report-id
|
||||
* @param path the given path
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue