We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b5e6330 commit 4dc398eCopy full SHA for 4dc398e
1 file changed
Jenkinsfile
@@ -15,7 +15,7 @@ def buildVscodeExtension(){
15
node('rhel7'){
16
stage 'Build JDT LS'
17
git url: 'https://github.com/eclipse/eclipse.jdt.ls.git'
18
- sh "./mvnw clean verify -B -U -e -Pserver-distro -DdisableP2Mirrors=true"
+ sh "./mvnw clean verify -B -U -e -Pserver-distro -Dtycho.disableP2Mirrors=true"
19
20
def files = findFiles(glob: '**/org.eclipse.jdt.ls.product/distro/**.tar.gz')
21
stash name: 'server_distro', includes :files[0].path
@@ -46,7 +46,7 @@ node('rhel7'){
46
sh "npm run compile" //compile the test code too
47
sh "npm test --silent"
48
}
49
-
+
50
stage 'Upload vscode-java to staging'
51
def vsix = findFiles(glob: '**.vsix')
52
sh "rsync -Pzrlt --rsh=ssh --protocol=28 ${vsix[0].path} ${UPLOAD_LOCATION}/jdt.ls/staging"
0 commit comments