Skip to content

Commit 9588cf0

Browse files
author
vprasanna
committed
Deployed java-ssltest-cli@1.0.13
1 parent b20a918 commit 9588cf0

File tree

7 files changed

+9
-6
lines changed

7 files changed

+9
-6
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ apply plugin: 'java-library'
1111
apply plugin: 'java'
1212
apply plugin: 'eclipse'
1313

14-
version = '1.0.12'
14+
version = '1.0.13'
1515
sourceCompatibility = 1.8
1616
targetCompatibility = 1.8
1717
// In this section you declare where to find the dependencies of your project
-205 KB
Binary file not shown.

jdeploy-bundle/javassltest.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
#!/usr/bin/env bash
22

3+
CURRENTDIR=`dirname $0`
34
CLI_ARGS=
45
while [ "$1" != "" ]; do
56
CLI_ARGS="$CLI_ARGS ${1}" && shift;
67
done;
78
#echo "CLI_ARGS = $CLI_ARGS"
8-
java -jar *.jar $CLI_ARGS
9+
java -jar $CURRENTDIR/*.jar $CLI_ARGS

jdeploy-bundle/jdeploy.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ function getJdeploySupportDir() {
6565
var fs = require('fs');
6666
var os = require('os');
6767
var path = require('path');
68-
var jarName = "java-ssl-test-1.0.12.jar";
68+
var jarName = "java-ssl-test-1.0.13.jar";
6969
var mainClass = "{{MAIN_CLASS}}";
7070
var classPath = "{{CLASSPATH}}";
7171
var port = "0";

jdeploy-bundle/welcome.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ elif [ -e ${binLink} ] ; then
88
echo "Looks like it is the first run. Have fun!"
99
fi
1010
ln -s $CURRENTDIR/javassltest.sh $binLink
11+
cd ~/bin
12+
ln -s $CURRENTDIR/*.jar
1113
echo "A softlink $binLink has been added!"
1214

1315
if [[ :$PATH: == *:$HOME/bin:* ]]; then

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"main": "index.js",
88
"preferGlobal": true,
99
"repository": "",
10-
"version": "1.0.12",
10+
"version": "1.0.13",
1111
"keywords": [
1212
"java",
1313
"ssl",
@@ -17,7 +17,7 @@
1717
"connection"
1818
],
1919
"jdeploy": {
20-
"jar": "build/libs/java-ssl-test-1.0.12.jar"
20+
"jar": "build/libs/java-ssl-test-1.0.13.jar"
2121
},
2222
"dependencies": {
2323
"shelljs": "^0.7.5"

0 commit comments

Comments
 (0)