Skip to content

Instantly share code, notes, and snippets.

@spencergibb
Created February 5, 2021 23:35
Show Gist options
  • Save spencergibb/d01cda84de5a3cb191efa02a662689be to your computer and use it in GitHub Desktop.
Save spencergibb/d01cda84de5a3cb191efa02a662689be to your computer and use it in GitHub Desktop.
deploy maven
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