diff --git a/CHANGELOG.md b/CHANGELOG.md index 9d373ce6e64c65aa71a7a1de5e5329cb294d8a66..9c5cc0dc471f607798002e4b550eec5687b32efd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,9 @@ ## 2.4.1 +* Added nexus staging deployment plugin. +* Removed explicit version from licensing plugin. + ## 2.4.0 * Renamed functional interfaces for transactions from TxHandler to TxAction to conform with Ferma 3.1.0 changes. diff --git a/pom.xml b/pom.xml index 765597a7b7d0e65a6fc1e12fcb04d7cf937417b0..39682d9b02209ee733e649e29c379b8717023250 100644 --- a/pom.xml +++ b/pom.xml @@ -221,16 +221,24 @@ <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> - </plugin> <plugin> <groupId>com.mycila.maven-license-plugin</groupId> <artifactId>maven-license-plugin</artifactId> - <version>1.10.b1</version> <configuration> <skipExistingHeaders>false</skipExistingHeaders> </configuration> </plugin> + <plugin> + <groupId>org.sonatype.plugins</groupId> + <artifactId>nexus-staging-maven-plugin</artifactId> + <extensions>true</extensions> + <configuration> + <serverId>ossrh</serverId> + <nexusUrl>https://oss.sonatype.org/</nexusUrl> + <autoReleaseAfterClose>true</autoReleaseAfterClose> + </configuration> + </plugin> </plugins> </build>