Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
vprasanna committed Apr 20, 2018
1 parent 6672d7e commit b20a918
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 5 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ apply plugin: 'java-library'
apply plugin: 'java'
apply plugin: 'eclipse'

version = '1.0.11'
version = '1.0.12'
sourceCompatibility = 1.8
targetCompatibility = 1.8
// In this section you declare where to find the dependencies of your project
Expand Down
Binary file not shown.
2 changes: 1 addition & 1 deletion jdeploy-bundle/jdeploy.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ function getJdeploySupportDir() {
var fs = require('fs');
var os = require('os');
var path = require('path');
var jarName = "java-ssl-test-1.0.11.jar";
var jarName = "java-ssl-test-1.0.12.jar";
var mainClass = "{{MAIN_CLASS}}";
var classPath = "{{CLASSPATH}}";
var port = "0";
Expand Down
18 changes: 18 additions & 0 deletions jdeploy-bundle/welcome.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
#!/usr/bin/env bash

CURRENTDIR=`dirname $0`
binLink=~/bin/javassltest
if [ -L ${binLink} ] ; then
rm ${binLink}
elif [ -e ${binLink} ] ; then
echo "Looks like it is the first run. Have fun!"
fi
ln -s $CURRENTDIR/javassltest.sh $binLink
echo "A softlink $binLink has been added!"

if [[ :$PATH: == *:$HOME/bin:* ]]; then
echo "Please add below to your PATH";
echo "PATH=\$HOME/bin:\$PATH"
fi

source $binLink
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"main": "index.js",
"preferGlobal": true,
"repository": "",
"version": "1.0.11",
"version": "1.0.12",
"keywords": [
"java",
"ssl",
Expand All @@ -17,7 +17,7 @@
"connection"
],
"jdeploy": {
"jar": "build/libs/java-ssl-test-1.0.11.jar"
"jar": "build/libs/java-ssl-test-1.0.12.jar"
},
"dependencies": {
"shelljs": "^0.7.5"
Expand Down

0 comments on commit b20a918

Please sign in to comment.