Compare commits

...

2 commits

Author SHA1 Message Date
1979f58cb9
Version 1.0.5 2025-03-28 07:27:28 -07:00
3efcb61eab
Bump PMD extension from 1.2.1 to 1.2.2 2025-03-28 07:20:58 -07:00
3 changed files with 3 additions and 3 deletions

View file

@ -37,7 +37,7 @@ Use the `failOnExit` function to specify whether a command non-zero exit value (
@BuildCommand
public void startServer() throws Exception {
final List<String> cmds;
if (System.getProperty("os.name").toLowerCase().contains("windows")) {
if (System.getProperty("os.name").toLowerCase().contains("win")) {
cmds = List.of("cmd", "/c", "stop.bat");
} else {
cmds = List.of("./stop.sh");

View file

@ -1,7 +1,7 @@
bld.downloadExtensionJavadoc=false
bld.downloadExtensionSources=true
bld.downloadLocation=
bld.extension-pmd=com.uwyn.rife2:bld-pmd:1.2.1
bld.extension-pmd=com.uwyn.rife2:bld-pmd:1.2.2
bld.repositories=MAVEN_CENTRAL,MAVEN_LOCAL,RIFE2_SNAPSHOTS,RIFE2_RELEASES
bld.sourceDirectories=
bld.version=2.2.1

View file

@ -33,7 +33,7 @@ public class ExecOperationBuild extends Project {
public ExecOperationBuild() {
pkg = "rife.bld.extension";
name = "ExecOperation";
version = version(1, 0, 5, "SNAPSHOT");
version = version(1, 0, 5);
javaRelease = 17;