From fb5ffdccb035ac448d7ae64916f527b2c8d078fd Mon Sep 17 00:00:00 2001 From: Roland Grunberg Date: Thu, 7 Nov 2024 14:08:51 -0500 Subject: [PATCH] Add Maven flag for updating artifacts from snapshot repositories. - With JDT-LS depending on static (eg. latest) repositories, the Tycho build system may end up using stale artifacts cached locally, even when newer ones exist. Signed-off-by: Roland Grunberg --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index dcf9b8df1..a65a409b0 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -86,7 +86,7 @@ jobs: - name: Build JDT-LS if: "${{ inputs.JDT_LS_VERSION == '' }}" run: | - ./mvnw clean verify -B -DskipTests -Pserver-distro + ./mvnw clean verify -B -U -DskipTests -Pserver-distro mkdir ../staging cp org.eclipse.jdt.ls.product/distro/jdt-language-server-*.tar.gz ../staging - name: Check Out VS Code Java