Skip to content

Commit

Permalink
bump (#285)
Browse files Browse the repository at this point in the history
  • Loading branch information
jovany-wang authored and senyer committed Nov 30, 2019
1 parent d4b0464 commit d56bf49
Show file tree
Hide file tree
Showing 12 changed files with 15 additions and 15 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.1-SNAPSHOT</version>
<version>0.1.1</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.1-SNAPSHOT</version>
<version>0.1.1</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.1-SNAPSHOT</version>
<version>0.1.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
8 changes: 4 additions & 4 deletions install_dst.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
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.1-SNAPSHOT</version>
<version>0.1.1</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.1-SNAPSHOT</version>
<version>0.1.1</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.1-SNAPSHOT</version>
<version>0.1.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>

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.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
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.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
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.1-SNAPSHOT</version>
<version>0.1.1</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.1-SNAPSHOT</version>
<version>0.1.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>

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.1-SNAPSHOT-jar-with-dependencies.jar";
+ File.separator + "dst-server-0.1.1-jar-with-dependencies.jar";

private static Process rpcServerProcess = null;

Expand Down

0 comments on commit d56bf49

Please sign in to comment.