We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4621372 commit 718817aCopy full SHA for 718817a
Makefile
@@ -90,3 +90,16 @@ stage-maven-bundle: maven-bundle
90
-B \
91
-Dnexus.description="Public release of $$VERSION" \
92
)
93
+
94
+promote-maven-bundle:
95
+ ( \
96
+ NEXUS_USERNAME=`cat $(GNUPG_PATH)/../nexus/username`; \
97
+ NEXUS_PASSWORD=`cat $(GNUPG_PATH)/../nexus/password`; \
98
+ mvn org.sonatype.plugins:nexus-maven-plugin:staging-promote \
99
+ -Dnexus.url=http://oss.sonatype.org \
100
+ -Dnexus.username=$$NEXUS_USERNAME \
101
+ -Dnexus.password=$$NEXUS_PASSWORD \
102
+ -Dnexus.promote.autoSelectOverride=true \
103
+ -DtargetRepositoryId=releases \
104
+ -B \
105
+ )
0 commit comments