Return-Path: Delivered-To: apmail-continuum-commits-archive@www.apache.org Received: (qmail 22225 invoked from network); 22 May 2009 23:05:04 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 22 May 2009 23:05:04 -0000 Received: (qmail 43868 invoked by uid 500); 22 May 2009 23:05:16 -0000 Delivered-To: apmail-continuum-commits-archive@continuum.apache.org Received: (qmail 43812 invoked by uid 500); 22 May 2009 23:05:16 -0000 Mailing-List: contact commits-help@continuum.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@continuum.apache.org Delivered-To: mailing list commits@continuum.apache.org Received: (qmail 43803 invoked by uid 99); 22 May 2009 23:05:16 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 22 May 2009 23:05:16 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 22 May 2009 23:05:06 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id B94C0238888D; Fri, 22 May 2009 23:04:45 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r777735 - /continuum/branches/continuum-1.3.x/continuum-core/src/main/java/org/apache/maven/continuum/execution/maven/m2/MavenTwoBuildExecutor.java Date: Fri, 22 May 2009 23:04:45 -0000 To: commits@continuum.apache.org From: ctan@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20090522230445.B94C0238888D@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: ctan Date: Fri May 22 23:04:45 2009 New Revision: 777735 URL: http://svn.apache.org/viewvc?rev=777735&view=rev Log: [CONTINUUM-1979] remove additional checks for projects recently released (CONTINUUM-1815) Modified: continuum/branches/continuum-1.3.x/continuum-core/src/main/java/org/apache/maven/continuum/execution/maven/m2/MavenTwoBuildExecutor.java Modified: continuum/branches/continuum-1.3.x/continuum-core/src/main/java/org/apache/maven/continuum/execution/maven/m2/MavenTwoBuildExecutor.java URL: http://svn.apache.org/viewvc/continuum/branches/continuum-1.3.x/continuum-core/src/main/java/org/apache/maven/continuum/execution/maven/m2/MavenTwoBuildExecutor.java?rev=777735&r1=777734&r2=777735&view=diff ============================================================================== --- continuum/branches/continuum-1.3.x/continuum-core/src/main/java/org/apache/maven/continuum/execution/maven/m2/MavenTwoBuildExecutor.java (original) +++ continuum/branches/continuum-1.3.x/continuum-core/src/main/java/org/apache/maven/continuum/execution/maven/m2/MavenTwoBuildExecutor.java Fri May 22 23:04:45 2009 @@ -410,13 +410,6 @@ MavenProject project = getMavenProject( continuumProject, workingDirectory, buildDefinition ); - //CONTINUUM-1815: additional check for projects recently released - if ( !continuumProject.getVersion().equals( project.getVersion() ) ) - { - log.info( "Found changes in project's version ( maybe project was recently released ), building" ); - return true; - } - if ( changes.isEmpty() ) { if ( log.isInfoEnabled() )