Skip to content

Commit

Permalink
[#138] Update to use oss staging and release plugin (#147)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattrpav authored Apr 26, 2022
1 parent cb49809 commit 3c71d55
Showing 1 changed file with 37 additions and 1 deletion.
38 changes: 37 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,18 @@
<id>lexi</id>
<name>Aleksei Valikov</name>
<email>[email protected]</email>
</developer>
<roles>
<role>project creator</role>
</roles>
</developer>
<developer>
<id>mattrpav</id>
<name>Matt Pavlovich</name>
<email>[email protected]</email>
<roles>
<role>maintainer</role>
</roles>
</developer>
<developer>
<id>kohsuke</id>
<name>Kohsuke Kawaguchi</name>
Expand Down Expand Up @@ -132,6 +143,30 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.3</version>
<configuration>
<pushChanges>true</pushChanges>
<localCheckout>true</localCheckout>
<tagNameFormat>@{project.version}</tagNameFormat>
<autoVersionSubmodules>true</autoVersionSubmodules>
<goals>clean package deploy</goals>
</configuration>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>${maven-nexus-staging-maven-plugin.version}</version>
<extensions>true</extensions>
<configuration>
<serverId>oss-sonatype-staging</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>false</autoReleaseAfterClose>
<stagingProgressTimeoutMinutes>30</stagingProgressTimeoutMinutes>
</configuration>
</plugin>
</plugins>
</build>
</profile>
Expand All @@ -143,6 +178,7 @@
<jaxb-core.version>2.3.0.1</jaxb-core.version>
<activation.version>1.2.0</activation.version>
<maven-jaxb2-plugin.version>0.15.1</maven-jaxb2-plugin.version>
<maven-nexus-staging-maven-plugin.version>1.6.8</maven-nexus-staging-maven-plugin.version>
<cxf-codegen-plugin.version>3.3.13</cxf-codegen-plugin.version>
<slf4j.version>1.7.36</slf4j.version>
</properties>
Expand Down

0 comments on commit 3c71d55

Please sign in to comment.