File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -49,3 +49,12 @@ echo "Deploying project to ${REPOSITORY_URL}/${REPOSITORY_NAME}"
49
49
mvn -q deploy -Drepository.url=" $REPOSITORY_URL " -Drepository.name=" $REPOSITORY_NAME " -DskipTests
50
50
51
51
echo " Successfully deployed project to ${REPOSITORY_URL} /${REPOSITORY_NAME} "
52
+
53
+ # shellcheck disable=SC2016
54
+ PACKAGES=" $( mvn -Dexec.executable=' echo' -Dexec.args=' ${project.artifactId}' exec:exec -q) "
55
+ printf " The following artifacts have been created for upload:\n\n"
56
+ for PACKAGE in $PACKAGES ; do
57
+ if [[ " $PACKAGE " != * " -sample" * ]] && [[ " $PACKAGE " != " spring-cloud-oci-docs" ]] && [[ " $PACKAGE " != " spring-cloud-oci-dependencies" ]]; then
58
+ echo " com.oracle.cloud.spring:${PACKAGE} :${VERSION} "
59
+ fi
60
+ done
You can’t perform that action at this time.
0 commit comments