Insert the correct Nexus URL in pom files
[demo.git] / scripts / deploy_boot.sh
1 #!/bin/bash
2
3 source repo_config.txt
4
5 SOURCE_DIR=../boot
6 GROUP_ID=org.openecomp.demo.boot
7 VERSION=1.0.0
8
9 cd $SOURCE_DIR
10 ls | xargs -I{} curl -v -u $REPO_USERNAME:$REPO_PASSWORD --upload-file {} $REPO_URL/$GROUP_ID/$VERSION/{}
11