Skip to content

Commit 7036c9d

Browse files
committed
Build using the upstream lsp4mp repo
Signed-off-by: Fred Bricon <fbricon@gmail.com>
1 parent c2761c9 commit 7036c9d

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

Jenkinsfile

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@
33
node('rhel8'){
44
stage('Checkout repos') {
55
deleteDir()
6+
def hasLsp4mpDir = fileExists 'lsp4mp'
7+
if (!hasLsp4mpDir){
8+
sh 'mkdir lsp4mp'
9+
}
10+
dir ('lsp4mp') {
11+
git url: 'https://github.com/eclipse/lsp4mp.git'
12+
}
613
def hasServerDir = fileExists 'quarkus-ls'
714
if (!hasServerDir){
815
sh 'mkdir quarkus-ls'

gulpfile.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ const rename = require('gulp-rename');
1616
const cp = require('child_process');
1717

1818
const microprofileServerName = 'org.eclipse.lsp4mp.ls-uber.jar';
19-
const microprofileServerDir = '../quarkus-ls/microprofile.ls/org.eclipse.lsp4mp.ls';
19+
const microprofileServerDir = '../lsp4mp/microprofile.ls/org.eclipse.lsp4mp.ls';
2020

2121
const quarkusServerExtGlob = 'com.redhat.quarkus.ls!(*-sources).jar';
2222
const quarkusServerExtDir = '../quarkus-ls/quarkus.ls.ext/com.redhat.quarkus.ls'
2323

24-
const microprofileExtensionDir = '../quarkus-ls/microprofile.jdt';
24+
const microprofileExtensionDir = '../lsp4mp/microprofile.jdt';
2525
const microprofileExtension = 'org.eclipse.lsp4mp.jdt.core';
2626

2727
const quarkusExtensionDir = '../quarkus-ls/quarkus.jdt.ext';

0 commit comments

Comments
 (0)