Skip to content

Commit

Permalink
Bump version to 0.1.2 (#394)
Browse files Browse the repository at this point in the history
* Bump version to 0.1.2

* Fix
  • Loading branch information
senyer authored and jovany-wang committed Dec 29, 2019
1 parent 5204ae0 commit 6b83bee
Show file tree
Hide file tree
Showing 15 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>dst-superpom</artifactId>
<groupId>com.distkv</groupId>
<version>0.1.2-SNAPSHOT</version>
<version>0.1.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>dst-superpom</artifactId>
<groupId>com.distkv</groupId>
<version>0.1.2-SNAPSHOT</version>
<version>0.1.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>dst-common</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>dst-superpom</artifactId>
<groupId>com.distkv</groupId>
<version>0.1.2-SNAPSHOT</version>
<version>0.1.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion dmeta/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>dst-superpom</artifactId>
<groupId>com.distkv</groupId>
<version>0.1.2-SNAPSHOT</version>
<version>0.1.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion fclt/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>dst-superpom</artifactId>
<groupId>com.distkv</groupId>
<version>0.1.2-SNAPSHOT</version>
<version>0.1.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion parser/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>dst-superpom</artifactId>
<groupId>com.distkv</groupId>
<version>0.1.2-SNAPSHOT</version>
<version>0.1.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<groupId>com.distkv</groupId>
<artifactId>dst-superpom</artifactId>
<packaging>pom</packaging>
<version>0.1.2-SNAPSHOT</version>
<version>0.1.2</version>
<modules>
<module>core</module>
<module>server</module>
Expand Down
2 changes: 1 addition & 1 deletion rpc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>dst-superpom</artifactId>
<groupId>com.distkv</groupId>
<version>0.1.2-SNAPSHOT</version>
<version>0.1.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
8 changes: 4 additions & 4 deletions scripts/install_dst.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ pushd ..
mvn clean install -DskipTests
popd

SERVER_JAR=$SCRIPT_DIR/../server/target/dst-server-0.1.2-SNAPSHOT-jar-with-dependencies.jar
CLIENT_JAR=$SCRIPT_DIR/../client/target/dst-client-0.1.2-SNAPSHOT-jar-with-dependencies.jar
SERVER_JAR=$SCRIPT_DIR/../server/target/dst-server-0.1.2-jar-with-dependencies.jar
CLIENT_JAR=$SCRIPT_DIR/../client/target/dst-client-0.1.2-jar-with-dependencies.jar

SERVER_INSTALLING_DEST=/usr/local/dst-all/server
CLIENT_INSTALLING_DEST=/usr/local/dst-all/client
Expand All @@ -33,8 +33,8 @@ sudo mkdir -p $CLIENT_INSTALLING_DEST
sudo cp $SCRIPT_DIR/run_dst_server.sh $SERVER_INSTALLING_DEST/dst-server
sudo cp $SCRIPT_DIR/run_dst_cli.sh $CLIENT_INSTALLING_DEST/dst-cli

sudo cp $SERVER_JAR $SERVER_INSTALLING_DEST/dst-server-0.1.2-SNAPSHOT-jar-with-dependencies.jar
sudo cp $CLIENT_JAR $CLIENT_INSTALLING_DEST/dst-client-0.1.2-SNAPSHOT-jar-with-dependencies.jar
sudo cp $SERVER_JAR $SERVER_INSTALLING_DEST/dst-server-0.1.2-jar-with-dependencies.jar
sudo cp $CLIENT_JAR $CLIENT_INSTALLING_DEST/dst-client-0.1.2-jar-with-dependencies.jar

# create soft link to binaries.
ln -s $SERVER_INSTALLING_DEST/dst-server /usr/local/bin/dst-server
Expand Down
2 changes: 1 addition & 1 deletion scripts/run_dst_cli.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ fi

SCRIPT_DIR=$(dirname $SCRIPT_ABS)

java -classpath $SCRIPT_DIR/dst-client-0.1.2-SNAPSHOT-jar-with-dependencies.jar com.distkv.dst.client.commandlinetool.DstCommandLineToolStarter
java -classpath $SCRIPT_DIR/dst-client-0.1.2-jar-with-dependencies.jar com.distkv.dst.client.commandlinetool.DstCommandLineToolStarter
2 changes: 1 addition & 1 deletion scripts/run_dst_server.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ fi

SCRIPT_DIR=$(dirname $SCRIPT_ABS)

java -classpath $SCRIPT_DIR/dst-server-0.1.2-SNAPSHOT-jar-with-dependencies.jar com.distkv.dst.server.DstServer
java -classpath $SCRIPT_DIR/dst-server-0.1.2-jar-with-dependencies.jar com.distkv.dst.server.DstServer
2 changes: 1 addition & 1 deletion server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>dst-superpom</artifactId>
<groupId>com.distkv</groupId>
<version>0.1.2-SNAPSHOT</version>
<version>0.1.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>dst-superpom</artifactId>
<groupId>com.distkv</groupId>
<version>0.1.2-SNAPSHOT</version>
<version>0.1.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public class DmetaTestUtil {
private static final Logger LOGGER = LoggerFactory.getLogger(DmetaTestUtil.class);

private static final String SERVER_SUFFIX_JAR_DIR = "dmeta" + File.separator + "target"
+ File.separator + "dst-dmeta-0.1.2-SNAPSHOT-jar-with-dependencies.jar";
+ File.separator + "dst-dmeta-0.1.2-jar-with-dependencies.jar";
private static final int NODE_NUM = 3;

private static Process[] processes = new Process[NODE_NUM];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public class TestUtil {
private static final int KILL_PROCESS_WAIT_TIMEOUT_SECONDS = 1;

private static final String SUFFIX_JAR_DIR = "server" + File.separator + "target"
+ File.separator + "dst-server-0.1.2-SNAPSHOT-jar-with-dependencies.jar";
+ File.separator + "dst-server-0.1.2-jar-with-dependencies.jar";

private static Process rpcServerProcess = null;

Expand Down

0 comments on commit 6b83bee

Please sign in to comment.