diff --git a/pom.xml b/pom.xml index 3bfe566..04202f8 100644 --- a/pom.xml +++ b/pom.xml @@ -3,7 +3,7 @@ 4.0.0 WaarpExec jar - 3.0.4 + 3.0.5 WaarpExec The Waarp Exec project is about a Daemon for local execution of system commands (as System.exec) but through client/server model and not within the same JVM. @@ -46,7 +46,7 @@ Waarp WaarpCommon - 3.0.11 + 3.1.0 xom @@ -94,7 +94,7 @@ org.codehaus.mojo animal-sniffer-maven-plugin - 1.15 + 1.16 org.codehaus.mojo.signature diff --git a/src/main/java/org/waarp/commandexec/utils/Version.java b/src/main/java/org/waarp/commandexec/utils/Version.java index bcfd302..d4aa107 100644 --- a/src/main/java/org/waarp/commandexec/utils/Version.java +++ b/src/main/java/org/waarp/commandexec/utils/Version.java @@ -3,7 +3,7 @@ /** Provides the version information of Waarp Exec. */ public final class Version { /** The version identifier. */ - public static final String ID = "3.0.3"; + public static final String ID = "3.0.5"; /** Prints out the version identifier to stdout. */ public static void main(String[] args) { System.out.println(ID); } private Version() { super(); }