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"