Skip to content
This repository has been archived by the owner on Jan 3, 2024. It is now read-only.

Commit

Permalink
Update version of jdt to 0.18.0 and buildpack to 0.1.2 (#6)
Browse files Browse the repository at this point in the history
* Update deploy buildpack job URL.

* Update launcher.sh for jdt 0.18.0 (#26)
  • Loading branch information
idantr authored and GitHub Enterprise committed May 22, 2018
1 parent 475a3e2 commit 24621b7
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ leave the rest empty and press build.
make sure you have sap-devx-language-server-buildpack-{your version}.git.zip file under your version number.

## Phase 3 - deploy to CF
1. Go to Jass Project ls_buildpack_deploy : https://jaas.wdf.sap.corp:30437/job/ls_buildpack_deploy/
1. Go to Jass Project ls_buildpack_deploy : https://jaas.wdf.sap.corp:50311/job/lsp_deploy_buidpack/
2. Press Build with Parameters and fill in the parameters.
3. Press build and wait to see that the build succeeded.
4. You can enter your space in cf and check that {APP_NAME}-{your version} was deployed.
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<groupId>com.sap.devx.cf.language.server.buildpack</groupId>
<artifactId>sap-devx-language-server-buildpack</artifactId>
<name>SAP language server buildpack </name>
<version>0.1.1</version>
<version>0.1.2</version>
<build>
<plugins>
<plugin>
Expand Down
6 changes: 3 additions & 3 deletions resources/language_server_bin_exec_jdt/launcher.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ if [ -d "$HOME/jdt_ws_root/$moduleWs" ] && [ -n "$moduleWs" ]; then
echo "Already exists $moduleWs"
else
echo "Create $HOME/jdt_ws_root/$moduleWs"
mkdir $HOME/jdt_ws_root/$moduleWs
mkdir -p $HOME/jdt_ws_root/$moduleWs
fi
exec $JAVA_HOME/bin/java -Declipse.application=org.eclipse.jdt.ls.core.id1 -Dosgi.bundles.defaultStartLevel=4 -Declipse.product=org.eclipse.jdt.ls.core.product -Dlog.protocol=true -Dlog.level=ALL -Duser.home=$HOME -noverify -Xmx350M -XX:+UseG1GC -XX:+UseStringDeduplication -jar ./plugins/org.eclipse.equinox.launcher_1.5.0.v20180119-0753.jar -configuration ./config_linux -data $HOME/jdt_ws_root/$moduleWs
exec $JAVA_HOME/bin/java -Declipse.application=org.eclipse.jdt.ls.core.id1 -Dosgi.bundles.defaultStartLevel=4 -Declipse.product=org.eclipse.jdt.ls.core.product -Dlog.protocol=true -Dlog.level=ALL -Duser.home=$HOME -noverify -Xmx350M -XX:+UseG1GC -XX:+UseStringDeduplication -jar ./plugins/org.eclipse.equinox.launcher_1.5.0.v20180207-1446.jar -configuration ./config_linux -data $HOME/jdt_ws_root/$moduleWs
else
exec $JAVA_HOME/bin/java -Declipse.application=org.eclipse.jdt.ls.core.id1 -Dosgi.bundles.defaultStartLevel=4 -Declipse.product=org.eclipse.jdt.ls.core.product -Dlog.protocol=true -Dlog.level=ALL -Duser.home=$HOME -noverify -Xmx350M -XX:+UseG1GC -XX:+UseStringDeduplication -jar ./plugins/org.eclipse.equinox.launcher_1.5.0.v20180119-0753.jar -configuration ./config_linux -data $HOME/jdt_ws_root
exec $JAVA_HOME/bin/java -Declipse.application=org.eclipse.jdt.ls.core.id1 -Dosgi.bundles.defaultStartLevel=4 -Declipse.product=org.eclipse.jdt.ls.core.product -Dlog.protocol=true -Dlog.level=ALL -Duser.home=$HOME -noverify -Xmx350M -XX:+UseG1GC -XX:+UseStringDeduplication -jar ./plugins/org.eclipse.equinox.launcher_1.5.0.v20180207-1446.jar -configuration ./config_linux -data $HOME/jdt_ws_root
fi

0 comments on commit 24621b7

Please sign in to comment.