From 760a67f66cd62ba2cc9524b75a8b3cf2ec35f7a7 Mon Sep 17 00:00:00 2001 From: Corneil du Plessis Date: Wed, 8 Feb 2023 13:32:38 +0200 Subject: [PATCH] Enable Maven Threads. --- .github/workflows/ci-main.yml | 2 +- local/download-apps.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci-main.yml b/.github/workflows/ci-main.yml index a405e643..956d92c4 100644 --- a/.github/workflows/ci-main.yml +++ b/.github/workflows/ci-main.yml @@ -21,4 +21,4 @@ jobs: with: branch: 'main' verbose: ${{ inputs.verbose == 'true' }} - useMavenThreads: false + useMavenThreads: true diff --git a/local/download-apps.sh b/local/download-apps.sh index a1ab7cf5..855eee10 100755 --- a/local/download-apps.sh +++ b/local/download-apps.sh @@ -36,10 +36,10 @@ function download_deps() { MILESTONE=$(echo "$DEP" | grep -c "\-M") if ((SNAPSHOT > 0)); then INC_VER=true - URL="https://repo.spring.io/libs-snapshot" + URL="https://repo.spring.io/snapshot" elif ((MILESTONE > 0)); then INC_VER=false - URL="https://repo.spring.io/libs-milestone-local" + URL="https://repo.spring.io/milestone" else INC_VER=false URL="https://repo.maven.apache.org/maven2"