Enable Maven Threads.

This commit is contained in:
Corneil du Plessis
2023-02-08 13:32:38 +02:00
parent 1808157b83
commit 760a67f66c
2 changed files with 3 additions and 3 deletions

View File

@@ -21,4 +21,4 @@ jobs:
with:
branch: 'main'
verbose: ${{ inputs.verbose == 'true' }}
useMavenThreads: false
useMavenThreads: true

View File

@@ -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"