You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by rm...@apache.org on 2020/08/09 16:00:01 UTC

[logging-log4cxx] branch master updated: Fixed assembly definition. don't comit artifacts immediately

This is an automated email from the ASF dual-hosted git repository.

rmiddleton pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/logging-log4cxx.git


The following commit(s) were added to refs/heads/master by this push:
     new afcad95  Fixed assembly definition.  don't comit artifacts immediately
afcad95 is described below

commit afcad955e73c564517bc09e80ca9bebc663295d7
Author: Robert Middleton <ro...@rm5248.com>
AuthorDate: Sun Aug 9 11:59:42 2020 -0400

    Fixed assembly definition.  don't comit artifacts immediately
---
 pom.xml            | 2 +-
 release_perform.sh | 5 +++--
 2 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index fe1cccc..e08e09f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -347,7 +347,7 @@
 				<version>2.3</version>
 				<configuration>
 					<tagNameFormat>v@{project.version}-RCx</tagNameFormat>
-					<goals>site-deploy assembly:assembly</goals>
+					<goals>site-deploy assembly:single</goals>
 				</configuration>
 			</plugin>
 		</plugins>
diff --git a/release_perform.sh b/release_perform.sh
index ff83c0e..a6d8565 100755
--- a/release_perform.sh
+++ b/release_perform.sh
@@ -91,8 +91,9 @@ function sign_and_copy
 function publish_for_vote
 {
   pushd "${WD_DIST_DEV}" > /dev/null
-  svn add --force *.*
-  svn ci  -m "Publishing artifacts for new release to vote on."
+  echo "Please validate the files in $(pwd)"
+  #svn add --force *.*
+  #svn ci  -m "Publishing artifacts for new release to vote on."
 }
 
 main