Return-Path: Delivered-To: apmail-maven-continuum-commits-archive@www.apache.org Received: (qmail 20132 invoked from network); 18 Aug 2005 01:09:53 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 18 Aug 2005 01:09:53 -0000 Received: (qmail 36769 invoked by uid 500); 18 Aug 2005 01:09:53 -0000 Delivered-To: apmail-maven-continuum-commits-archive@maven.apache.org Received: (qmail 36743 invoked by uid 500); 18 Aug 2005 01:09:53 -0000 Mailing-List: contact continuum-commits-help@maven.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: continuum-dev@maven.apache.org Delivered-To: mailing list continuum-commits@maven.apache.org Received: (qmail 36729 invoked by uid 99); 18 Aug 2005 01:09:53 -0000 X-ASF-Spam-Status: No, hits=-9.8 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.29) with SMTP; Wed, 17 Aug 2005 18:09:51 -0700 Received: (qmail 20126 invoked by uid 65534); 18 Aug 2005 01:09:51 -0000 Message-ID: <20050818010951.20125.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r233277 - /maven/continuum/trunk/continuum-core/src/main/java/org/apache/maven/continuum/execution/maven/m2/DefaultMavenBuilderHelper.java Date: Thu, 18 Aug 2005 01:09:51 -0000 To: continuum-commits@maven.apache.org From: brett@apache.org X-Mailer: svnmailer-1.0.3 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: brett Date: Wed Aug 17 18:09:46 2005 New Revision: 233277 URL: http://svn.apache.org/viewcvs?rev=233277&view=rev Log: back to a specific api Modified: maven/continuum/trunk/continuum-core/src/main/java/org/apache/maven/continuum/execution/maven/m2/DefaultMavenBuilderHelper.java Modified: maven/continuum/trunk/continuum-core/src/main/java/org/apache/maven/continuum/execution/maven/m2/DefaultMavenBuilderHelper.java URL: http://svn.apache.org/viewcvs/maven/continuum/trunk/continuum-core/src/main/java/org/apache/maven/continuum/execution/maven/m2/DefaultMavenBuilderHelper.java?rev=233277&r1=233276&r2=233277&view=diff ============================================================================== --- maven/continuum/trunk/continuum-core/src/main/java/org/apache/maven/continuum/execution/maven/m2/DefaultMavenBuilderHelper.java (original) +++ maven/continuum/trunk/continuum-core/src/main/java/org/apache/maven/continuum/execution/maven/m2/DefaultMavenBuilderHelper.java Wed Aug 17 18:09:46 2005 @@ -39,6 +39,7 @@ import java.io.File; import java.io.IOException; import java.util.ArrayList; +import java.util.Collections; import java.util.Iterator; import java.util.List; @@ -192,7 +193,7 @@ // TODO: we probably need to pass in some profiles here, perhaps from settings.xml // This seems like code that is shared with DefaultMaven, so it should be mobed to the project // builder perhaps - project = projectBuilder.build( file, getRepository(), null ); + project = projectBuilder.build( file, getRepository(), Collections.EMPTY_LIST ); } catch ( Exception e ) {