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.downloadExtensionJavadoc=false
|
||||||
bld.downloadExtensionSources=true
|
bld.downloadExtensionSources=true
|
||||||
bld.extensions=com.uwyn.rife2:bld-kotlin:0.9.4
|
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.repositories=MAVEN_LOCAL,MAVEN_CENTRAL,RIFE2_SNAPSHOTS,RIFE2_RELEASES
|
||||||
bld.downloadLocation=
|
bld.downloadLocation=
|
||||||
bld.sourceDirectories=
|
bld.sourceDirectories=
|
||||||
|
|
|
@ -34,7 +34,7 @@ public class DetektOperationBuild extends Project {
|
||||||
public DetektOperationBuild() {
|
public DetektOperationBuild() {
|
||||||
pkg = "rife.bld.extension";
|
pkg = "rife.bld.extension";
|
||||||
name = "DetektOperation";
|
name = "DetektOperation";
|
||||||
version = version(0, 9, 4, "SNAPSHOT");
|
version = version(0, 9, 4);
|
||||||
|
|
||||||
javaRelease = 17;
|
javaRelease = 17;
|
||||||
downloadSources = true;
|
downloadSources = true;
|
||||||
|
@ -88,12 +88,11 @@ public class DetektOperationBuild extends Project {
|
||||||
new DetektOperationBuild().start(args);
|
new DetektOperationBuild().start(args);
|
||||||
}
|
}
|
||||||
|
|
||||||
@BuildCommand(summary = "Check source code with PMD")
|
@BuildCommand(summary = "Checks source code with PMD")
|
||||||
public void pmd() {
|
public void pmd() {
|
||||||
new PmdOperation()
|
new PmdOperation()
|
||||||
.fromProject(this)
|
.fromProject(this)
|
||||||
.ruleSets("config/pmd.xml")
|
.ruleSets("config/pmd.xml")
|
||||||
.execute();
|
.execute();
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -17,7 +17,7 @@
|
||||||
package rife.bld.extension;
|
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 id the report-id
|
||||||
* @param path the given path
|
* @param path the given path
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue