Skip to content
This repository has been archived by the owner on Oct 29, 2019. It is now read-only.

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
Bruno Carlin committed Jul 16, 2019
1 parent c4cb014 commit 76615ca
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<artifactId>WaarpExec</artifactId>
<packaging>jar</packaging>
<version>3.0.4</version>
<version>3.0.5</version>
<name>WaarpExec</name>
<description>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.</description>
Expand Down Expand Up @@ -46,7 +46,7 @@
<dependency>
<groupId>Waarp</groupId>
<artifactId>WaarpCommon</artifactId>
<version>3.0.11</version>
<version>3.1.0</version>
<exclusions>
<exclusion>
<artifactId>xom</artifactId>
Expand Down Expand Up @@ -94,7 +94,7 @@
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>animal-sniffer-maven-plugin</artifactId>
<version>1.15</version>
<version>1.16</version>
<configuration>
<signature>
<groupId>org.codehaus.mojo.signature</groupId>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/waarp/commandexec/utils/Version.java
Original file line number Diff line number Diff line change
Expand Up @@ -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(); }
Expand Down

0 comments on commit 76615ca

Please sign in to comment.