Skip to content

Commit 7d107cb

Browse files
committed
Fix Jenkinsfile to find lsp4xml's uber jar
Signed-off-by: Fred Bricon <[email protected]>
1 parent 6180853 commit 7d107cb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Jenkinsfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ node('rhel7'){
1717
git url: 'https://github.com/angelozerr/lsp4xml.git'
1818
sh "./mvnw clean verify -B -U -e"
1919

20-
def files = findFiles(glob: '**/org.eclipse.lsp4xml/target/org.eclipse.lsp4xml-all.jar')
20+
def files = findFiles(glob: '**/org.eclipse.lsp4xml/target/org.eclipse.lsp4xml-uber.jar')
2121
stash name: 'server_distro', includes :files[0].path
2222
}
2323

@@ -34,7 +34,7 @@ node('rhel7'){
3434
stage 'Build vscode-xml'
3535
buildVscodeExtension()
3636
unstash 'server_distro'
37-
def files = findFiles(glob: '**/org.eclipse.lsp4xml/target/org.eclipse.lsp4xml-all.jar')
37+
def files = findFiles(glob: '**/org.eclipse.lsp4xml/target/org.eclipse.lsp4xml-uber.jar')
3838
sh "mkdir ./server"
3939
sh "mv ${files[0].path} ./server"
4040

0 commit comments

Comments
 (0)