From e919b54063f974643a7123aaf756001477e2a10d Mon Sep 17 00:00:00 2001 From: Andrea Lin Date: Thu, 6 Sep 2018 18:22:22 -0700 Subject: [PATCH 1/2] add that nexus-staging-maven-plugin must be uncommented in order to release to nexus --- RELEASING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RELEASING.md b/RELEASING.md index dd8df7260558..60a40fe80ef3 100644 --- a/RELEASING.md +++ b/RELEASING.md @@ -102,7 +102,7 @@ This script checks out `gh-pages` branch of the repository, builds the documenta 11. Check that you are not trying to release a SNAPSHOT build (the artifacts versions do not have "-SNAPSHOT" suffix) and then run `mvn clean deploy -DskipTests=true --settings ~/.m2/settings.xml -P release` command. It will build and deploy artifacts to the staging repository. -12. Run `mvn nexus-staging:release` to release the artifacts. +12. Uncomment the `nexus-staging-maven-plugin` plugin definition from step 10.2; This plugin needed to release the artifacts. Run `mvn nexus-staging:release` to release the artifacts. 13. Revert the local edits to your `pom.xml` performed a couple steps above by running `git checkout pom.xml`. From 632387980ef90f23831772474e9a4c499fb5ef46 Mon Sep 17 00:00:00 2001 From: Andrea Lin Date: Tue, 11 Sep 2018 12:02:03 -0700 Subject: [PATCH 2/2] grammar --- RELEASING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RELEASING.md b/RELEASING.md index 60a40fe80ef3..ec2c22e2e6d8 100644 --- a/RELEASING.md +++ b/RELEASING.md @@ -102,7 +102,7 @@ This script checks out `gh-pages` branch of the repository, builds the documenta 11. Check that you are not trying to release a SNAPSHOT build (the artifacts versions do not have "-SNAPSHOT" suffix) and then run `mvn clean deploy -DskipTests=true --settings ~/.m2/settings.xml -P release` command. It will build and deploy artifacts to the staging repository. -12. Uncomment the `nexus-staging-maven-plugin` plugin definition from step 10.2; This plugin needed to release the artifacts. Run `mvn nexus-staging:release` to release the artifacts. +12. Uncomment the `nexus-staging-maven-plugin` plugin definition from step 10.2; This plugin is needed to release the artifacts. Run `mvn nexus-staging:release` to release the artifacts. 13. Revert the local edits to your `pom.xml` performed a couple steps above by running `git checkout pom.xml`.