Merge branch 'master' of github.com:spring-projects/sts4

This commit is contained in:
Kris De Volder
2017-11-24 11:58:21 -08:00
8 changed files with 16 additions and 14 deletions

View File

@@ -24,7 +24,7 @@
"dependencies": {
"atom-package-deps": "^4.6.0",
"download": "^6.2.5",
"pivotal-atom-languageclient-commons": "0.0.16"
"pivotal-atom-languageclient-commons": "0.0.17"
},
"devDependencies": {
"coffeelint": "^1.10.1"

View File

@@ -19,7 +19,7 @@
"dependencies": {
"atom-package-deps": "^4.6.0",
"download": "^6.2.5",
"pivotal-atom-languageclient-commons": "0.0.16"
"pivotal-atom-languageclient-commons": "0.0.17"
},
"devDependencies": {
"coffeelint": "^1.10.1"

View File

@@ -19,7 +19,7 @@
"dependencies": {
"atom-package-deps": "^4.6.0",
"download": "^6.2.5",
"pivotal-atom-languageclient-commons": "0.0.16"
"pivotal-atom-languageclient-commons": "0.0.17"
},
"configSchema": {
"bosh": {

View File

@@ -19,7 +19,7 @@
"dependencies": {
"atom-package-deps": "^4.6.0",
"download": "^6.2.5",
"pivotal-atom-languageclient-commons": "0.0.16"
"pivotal-atom-languageclient-commons": "0.0.17"
},
"devDependencies": {
"coffeelint": "^1.10.1"

View File

@@ -1,6 +1,6 @@
{
"name": "pivotal-atom-languageclient-commons",
"version": "0.0.16",
"version": "0.0.17",
"description": "Atom language client commons for STS4 language servers",
"repository": "https://github.com/spring-projects/sts4",
"license": "MIT",
@@ -12,9 +12,12 @@
"decompress": "^4.2.0",
"portfinder": "^1.0.13",
"remote-file-size": "^3.0.3",
"postinstall-build": "^3.0.0"
"postinstall-build": "5.0.1"
},
"main": "./build/lib/index",
"files": [
"build/"
],
"scripts": {
"clean": "rm -rf build",
"compile": "babel lib --out-dir build/lib",

View File

@@ -19,7 +19,7 @@
"dependencies": {
"atom-package-deps": "^4.6.0",
"download": "^6.2.5",
"pivotal-atom-languageclient-commons": "0.0.16"
"pivotal-atom-languageclient-commons": "0.0.17"
},
"devDependencies": {
"coffeelint": "^1.10.1"

View File

@@ -3,19 +3,18 @@ set -e
set -v
workdir=`pwd`
output=$workdir/out
# atom_commons=$workdir/sts4/atom-extensions/atom-commons
# atom_package=$workdir/package_sources
atom_commons=$workdir/sts4/atom-extensions/atom-commons
atom_package=$workdir/sts4/atom-extensions/$package_name
url=`cat fatjar/url`
fatjar_version=`cat fatjar/version`
# cd $atom_commons
# npm install
cd $atom_commons
npm install
cd $atom_package
# npm install ${atom_commons}
npm install ${atom_commons}
cat > properties.json << EOF
{
@@ -48,7 +47,7 @@ git add .
git commit \
-m "Publish ${fatjar_version}"
# Publsuh linkable artifact to S3
# Publish linkable artifact to S3
cd $atom_package
npm install bundle-deps

View File

@@ -37,7 +37,7 @@ public class SpringBootJavaLanguageServer extends STS4LanguageServerProcessStrea
commands.add("-Dlsp.lazy.completions.disable=true");
commands.add("-Dlsp.completions.indentation.enable=true");
commands.add("-Xmx200m");
commands.add("-Xmx1024m");
commands.add("-cp");
commands.add(getToolsJAR() + ":" + getLanguageServerJARLocation());
commands.add("org.springframework.boot.loader.JarLauncher");