#7 Nexus에서 War 다운 받기 Shell
star
Tasks
down_test_war.sh#
Example#
- nexus server url : https://karaf.io
- com.test.openzone/test.openzone.obp/1.0.0-SNAPSHOT.war
- filename: test.war
NEXUS_URL=https://karaf.io
MAVEN_REPO=karaf-snapshots
GROUP_ID=com.test.openzone
ARTIFACT_ID=test.openzone.obp
VERSION=1.0.0-SNAPSHOT
FILE_EXTENSION=war
OUTPUT_FILENAME=test.war
curl -L -u nexusUser:nexusPass -X GET "${NEXUS_URL}/service/rest/v1/search/assets/download\
?repository=${MAVEN_REPO}\
&maven.groupId=${GROUP_ID}\
&maven.artifactId=${ARTIFACT_ID}\
&maven.baseVersion=${VERSION}\
&maven.extension=${FILE_EXTENSION}\
&sort=version" \
--output ${OUTPUT_FILENAME}
Comment 0
-
Added
KKoZZi added
nexuslabel 2022-12-17 -
KKoZZi added
infralabel 2022-12-17
Add a comment
Comment 0