Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 2D837200B92 for ; Wed, 28 Sep 2016 11:43:32 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 2C1F6160AD4; Wed, 28 Sep 2016 09:43:32 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 4E8E0160AB4 for ; Wed, 28 Sep 2016 11:43:31 +0200 (CEST) Received: (qmail 32392 invoked by uid 500); 28 Sep 2016 09:43:30 -0000 Mailing-List: contact cvs-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: general@incubator.apache.org Delivered-To: mailing list cvs@incubator.apache.org Received: (qmail 32383 invoked by uid 99); 28 Sep 2016 09:43:30 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd4-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 28 Sep 2016 09:43:30 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd4-us-west.apache.org (ASF Mail Server at spamd4-us-west.apache.org) with ESMTP id 17C59C0E29 for ; Wed, 28 Sep 2016 09:43:30 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd4-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: 0.374 X-Spam-Level: X-Spam-Status: No, score=0.374 tagged_above=-999 required=6.31 tests=[KAM_ASCII_DIVIDERS=0.8, KAM_LAZY_DOMAIN_SECURITY=1, RP_MATCHES_RCVD=-1.426] autolearn=disabled Received: from mx2-lw-us.apache.org ([10.40.0.8]) by localhost (spamd4-us-west.apache.org [10.40.0.11]) (amavisd-new, port 10024) with ESMTP id rS3kYu6KJqb7 for ; Wed, 28 Sep 2016 09:43:28 +0000 (UTC) Received: from mailrelay1-us-west.apache.org (mailrelay1-us-west.apache.org [209.188.14.139]) by mx2-lw-us.apache.org (ASF Mail Server at mx2-lw-us.apache.org) with ESMTP id E55C35FC80 for ; Wed, 28 Sep 2016 09:43:27 +0000 (UTC) Received: from svn01-us-west.apache.org (svn.apache.org [10.41.0.6]) by mailrelay1-us-west.apache.org (ASF Mail Server at mailrelay1-us-west.apache.org) with ESMTP id 6139EE0147 for ; Wed, 28 Sep 2016 09:43:27 +0000 (UTC) Received: from svn01-us-west.apache.org (localhost [127.0.0.1]) by svn01-us-west.apache.org (ASF Mail Server at svn01-us-west.apache.org) with ESMTP id 5C3F03A027B for ; Wed, 28 Sep 2016 09:43:27 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r998465 - in /websites/staging/incubator/trunk/content: ./ guides/releasemanagement.html report-next-month.html sitemap.html Date: Wed, 28 Sep 2016 09:43:27 -0000 To: cvs@incubator.apache.org From: buildbot@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20160928094327.5C3F03A027B@svn01-us-west.apache.org> archived-at: Wed, 28 Sep 2016 09:43:32 -0000 Author: buildbot Date: Wed Sep 28 09:43:27 2016 New Revision: 998465 Log: Staging update by buildbot for incubator Modified: websites/staging/incubator/trunk/content/ (props changed) websites/staging/incubator/trunk/content/guides/releasemanagement.html websites/staging/incubator/trunk/content/report-next-month.html websites/staging/incubator/trunk/content/sitemap.html Propchange: websites/staging/incubator/trunk/content/ ------------------------------------------------------------------------------ --- cms:source-revision (original) +++ cms:source-revision Wed Sep 28 09:43:27 2016 @@ -1 +1 @@ -1762589 +1762627 Modified: websites/staging/incubator/trunk/content/guides/releasemanagement.html ============================================================================== --- websites/staging/incubator/trunk/content/guides/releasemanagement.html (original) +++ websites/staging/incubator/trunk/content/guides/releasemanagement.html Wed Sep 28 09:43:27 2016 @@ -345,6 +345,10 @@ NOTICE files Subversion Best Practices +
  • +Git with Maven Best Practices + +
  • Reproducibility @@ -1558,6 +1562,26 @@ This ensure that all the source for the changes then the release will no longer be complete reproducible.

    +

    Git with Maven Best Practices

    +
    +

    +First and important: configure the maven-release-plugin to operate 'locally' +https://github.com/apache/deltaspike/blob/master/pom.xml#L123 +

    +

    +The important parts are: +

    +
    +<pushChanges>false</pushChanges> +<localCheckout>true</localCheckout> + +
    +

    +This will configure maven to NOT push you changes upstream to the repo mentioned in the SCM section, but only keep it local. +And during the release:perform this will also pick up the tag from local. +That means you need to push it to e.g. github yourself. +

    +

    Reproducibility

    @@ -1577,6 +1601,18 @@ is not mature enough for a full Apache r The requirements of the build should be fully documented. The versions of tools and platforms used to build the release should be noted.

    +

    +The following are examples of how existing ASF projects have documented their release +process. +

    +

    Release As Advertising

    Modified: websites/staging/incubator/trunk/content/report-next-month.html ============================================================================== --- websites/staging/incubator/trunk/content/report-next-month.html (original) +++ websites/staging/incubator/trunk/content/report-next-month.html Wed Sep 28 09:43:27 2016 @@ -67,7 +67,7 @@

    Apache Incubator Podlings needing to prepare report for October

    -Generated on 2016-09-27T22:54:02Z +Generated on 2016-09-28T09:42:57Z