diff --git a/client/pom.xml b/client/pom.xml
index 0408890af..741b0944f 100644
--- a/client/pom.xml
+++ b/client/pom.xml
@@ -5,7 +5,7 @@
dst-superpom
com.distkv
- 0.1.1-SNAPSHOT
+ 0.1.1
4.0.0
diff --git a/common/pom.xml b/common/pom.xml
index e2f965fe2..28c642b86 100644
--- a/common/pom.xml
+++ b/common/pom.xml
@@ -5,7 +5,7 @@
dst-superpom
com.distkv
- 0.1.1-SNAPSHOT
+ 0.1.1
4.0.0
dst-common
diff --git a/core/pom.xml b/core/pom.xml
index 8db3223e6..3172faaf5 100644
--- a/core/pom.xml
+++ b/core/pom.xml
@@ -5,7 +5,7 @@
dst-superpom
com.distkv
- 0.1.1-SNAPSHOT
+ 0.1.1
4.0.0
diff --git a/install_dst.sh b/install_dst.sh
index 9da95b675..77ce0bf56 100755
--- a/install_dst.sh
+++ b/install_dst.sh
@@ -17,8 +17,8 @@ SCRIPT_DIR=$(dirname $SCRIPT_ABS)
mvn clean install -DskipTests
-SERVER_JAR=$SCRIPT_DIR/server/target/dst-server-0.1.1-SNAPSHOT-jar-with-dependencies.jar
-CLIENT_JAR=$SCRIPT_DIR/client/target/dst-client-0.1.1-SNAPSHOT-jar-with-dependencies.jar
+SERVER_JAR=$SCRIPT_DIR/server/target/dst-server-0.1.1-jar-with-dependencies.jar
+CLIENT_JAR=$SCRIPT_DIR/client/target/dst-client-0.1.1-jar-with-dependencies.jar
SERVER_INSTALLING_DEST=/usr/local/dst-all/server
CLIENT_INSTALLING_DEST=/usr/local/dst-all/client
@@ -31,8 +31,8 @@ sudo mkdir -p $CLIENT_INSTALLING_DEST
sudo cp $SCRIPT_DIR/scripts/run_dst_server.sh $SERVER_INSTALLING_DEST/dst-server
sudo cp $SCRIPT_DIR/scripts/run_dst_cli.sh $CLIENT_INSTALLING_DEST/dst-cli
-sudo cp $SERVER_JAR $SERVER_INSTALLING_DEST/dst-server-0.1.1-SNAPSHOT-jar-with-dependencies.jar
-sudo cp $CLIENT_JAR $CLIENT_INSTALLING_DEST/dst-client-0.1.1-SNAPSHOT-jar-with-dependencies.jar
+sudo cp $SERVER_JAR $SERVER_INSTALLING_DEST/dst-server-0.1.1-jar-with-dependencies.jar
+sudo cp $CLIENT_JAR $CLIENT_INSTALLING_DEST/dst-client-0.1.1-jar-with-dependencies.jar
# create soft link to binaries.
ln -s $SERVER_INSTALLING_DEST/dst-server /usr/local/bin/dst-server
diff --git a/parser/pom.xml b/parser/pom.xml
index 454b657a4..173174d4d 100644
--- a/parser/pom.xml
+++ b/parser/pom.xml
@@ -5,7 +5,7 @@
dst-superpom
com.distkv
- 0.1.1-SNAPSHOT
+ 0.1.1
4.0.0
diff --git a/pom.xml b/pom.xml
index 4ed7befc0..7d8d197fe 100644
--- a/pom.xml
+++ b/pom.xml
@@ -7,7 +7,7 @@
com.distkv
dst-superpom
pom
- 0.1.1-SNAPSHOT
+ 0.1.1
core
server
diff --git a/rpc/pom.xml b/rpc/pom.xml
index 05f2b3053..e6d0281bd 100644
--- a/rpc/pom.xml
+++ b/rpc/pom.xml
@@ -5,7 +5,7 @@
dst-superpom
com.distkv
- 0.1.1-SNAPSHOT
+ 0.1.1
4.0.0
diff --git a/scripts/run_dst_cli.sh b/scripts/run_dst_cli.sh
index ea5f353c7..3c3abf1e3 100644
--- a/scripts/run_dst_cli.sh
+++ b/scripts/run_dst_cli.sh
@@ -12,4 +12,4 @@ fi
SCRIPT_DIR=$(dirname $SCRIPT_ABS)
-java -classpath $SCRIPT_DIR/dst-client-0.1.1-SNAPSHOT-jar-with-dependencies.jar com.distkv.dst.client.commandlinetool.DstCmdStarter
+java -classpath $SCRIPT_DIR/dst-client-0.1.1-jar-with-dependencies.jar com.distkv.dst.client.commandlinetool.DstCmdStarter
diff --git a/scripts/run_dst_server.sh b/scripts/run_dst_server.sh
index b08be3a49..b408246e0 100644
--- a/scripts/run_dst_server.sh
+++ b/scripts/run_dst_server.sh
@@ -12,4 +12,4 @@ fi
SCRIPT_DIR=$(dirname $SCRIPT_ABS)
-java -classpath $SCRIPT_DIR/dst-server-0.1.1-SNAPSHOT-jar-with-dependencies.jar com.distkv.dst.server.service.DstRpcServer
+java -classpath $SCRIPT_DIR/dst-server-0.1.1-jar-with-dependencies.jar com.distkv.dst.server.service.DstRpcServer
diff --git a/server/pom.xml b/server/pom.xml
index 656f36255..af51463e5 100644
--- a/server/pom.xml
+++ b/server/pom.xml
@@ -5,7 +5,7 @@
dst-superpom
com.distkv
- 0.1.1-SNAPSHOT
+ 0.1.1
4.0.0
diff --git a/test/pom.xml b/test/pom.xml
index f1e2d08ae..8aee51c0b 100644
--- a/test/pom.xml
+++ b/test/pom.xml
@@ -5,7 +5,7 @@
dst-superpom
com.distkv
- 0.1.1-SNAPSHOT
+ 0.1.1
4.0.0
diff --git a/test/src/test/java/com/distkv/dst/test/supplier/TestUtil.java b/test/src/test/java/com/distkv/dst/test/supplier/TestUtil.java
index 2d99638b0..2e1f88778 100644
--- a/test/src/test/java/com/distkv/dst/test/supplier/TestUtil.java
+++ b/test/src/test/java/com/distkv/dst/test/supplier/TestUtil.java
@@ -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.1-SNAPSHOT-jar-with-dependencies.jar";
+ + File.separator + "dst-server-0.1.1-jar-with-dependencies.jar";
private static Process rpcServerProcess = null;