forked from hazelcast/hazelcast
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Corrected client scripts to use correct classpath and match style of
other scripts better.
- Loading branch information
bsalzberg
committed
Apr 15, 2012
1 parent
656ec95
commit 6b0805e
Showing
2 changed files
with
2 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
@ECHO OFF | ||
|
||
java -jar ../lib/hazelcast-client-${project.version}.jar | ||
java -Djava.net.preferIPv4Stack=true -classpath ../lib/hazelcast-${project.version}.jar:../lib/hazelcast-client-${project.version}.jar com.hazelcast.client.examples.TestClientApp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
#!/bin/sh | ||
|
||
java -Djava.net.preferIPv4Stack=true -jar ../lib/hazelcast-client-${project.version}.jar | ||
|
||
java -Djava.net.preferIPv4Stack=true -classpath ../lib/hazelcast-${project.version}.jar:../lib/hazelcast-client-${project.version}.jar com.hazelcast.client.examples.TestClientApp |