Authentication with Artifactory is necessary to resolve the io.spring.docresources:spring-doc-resources:0.2.5 artifact from repo.spring.io/release.
9 lines
312 B
Bash
Executable File
9 lines
312 B
Bash
Executable File
#!/bin/bash -x
|
|
|
|
set -eou pipefail
|
|
|
|
GRADLE_OPTS="-Duser.name=jenkins -Djava.io.tmpdir=/tmp -Dgradle.user.home=/tmp/geode/boot/build-gradle-cache" \
|
|
./gradlew --no-daemon --refresh-dependencies --stacktrace clean check \
|
|
-PartifactoryUsername=$ARTIFACTORY_USERNAME \
|
|
-PartifactoryPassword=$ARTIFACTORY_PASSWORD
|