Created
February 5, 2021 23:35
-
-
Save spencergibb/d01cda84de5a3cb191efa02a662689be to your computer and use it in GitHub Desktop.
deploy maven
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://github.com/spring-cloud/spring-cloud-build/blob/master/pom.xml#L793-L808 | |
<plugins> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-gpg-plugin</artifactId> | |
<version>${maven-gpg-plugin.version}</version> | |
<executions> | |
<execution> | |
<id>sign-artifacts</id> | |
<phase>verify</phase> | |
<goals> | |
<goal>sign</goal> | |
</goals> | |
</execution> | |
</executions> | |
</plugin> | |
</plugins> | |
<repository> | |
<id>sonatype-nexus-staging</id> | |
<name>Nexus Release Repository</name> | |
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> | |
</repository> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment