Return-Path: Delivered-To: apmail-maven-continuum-commits-archive@www.apache.org Received: (qmail 64098 invoked from network); 14 Aug 2006 22:14:02 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 14 Aug 2006 22:14:02 -0000 Received: (qmail 40678 invoked by uid 500); 14 Aug 2006 22:14:02 -0000 Delivered-To: apmail-maven-continuum-commits-archive@maven.apache.org Received: (qmail 40650 invoked by uid 500); 14 Aug 2006 22:14:02 -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 40639 invoked by uid 99); 14 Aug 2006 22:14:02 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 14 Aug 2006 15:14:02 -0700 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [140.211.166.113] (HELO eris.apache.org) (140.211.166.113) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 14 Aug 2006 15:14:01 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 748041A981A; Mon, 14 Aug 2006 15:13:41 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r431444 - /maven/continuum/trunk/continuum-api/src/main/java/org/apache/maven/continuum/Continuum.java Date: Mon, 14 Aug 2006 22:13:41 -0000 To: continuum-commits@maven.apache.org From: carlos@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20060814221341.748041A981A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: carlos Date: Mon Aug 14 15:13:40 2006 New Revision: 431444 URL: http://svn.apache.org/viewvc?rev=431444&view=rev Log: Add javadocs Modified: maven/continuum/trunk/continuum-api/src/main/java/org/apache/maven/continuum/Continuum.java Modified: maven/continuum/trunk/continuum-api/src/main/java/org/apache/maven/continuum/Continuum.java URL: http://svn.apache.org/viewvc/maven/continuum/trunk/continuum-api/src/main/java/org/apache/maven/continuum/Continuum.java?rev=431444&r1=431443&r2=431444&view=diff ============================================================================== --- maven/continuum/trunk/continuum-api/src/main/java/org/apache/maven/continuum/Continuum.java (original) +++ maven/continuum/trunk/continuum-api/src/main/java/org/apache/maven/continuum/Continuum.java Mon Aug 14 15:13:40 2006 @@ -144,10 +144,24 @@ int addProject( Project project, String executorId ) throws ContinuumException; + /** + * Add a Maven 2 project to the list of projects. + * + * @param metadataUrl url of the pom.xml + * @return a holder with the projects, project groups and errors occurred during the project adding + * @throws ContinuumException + */ ContinuumProjectBuildingResult addMavenTwoProject( String metadataUrl ) throws ContinuumException; - ContinuumProjectBuildingResult addMavenOneProject( String metadataUrl ) + /** + * Add a Maven 1 project to the list of projects. + * + * @param metadataUrl url of the project.xml + * @return a holder with the projects, project groups and errors occurred during the project adding + * @throws ContinuumException + */ + ContinuumProjectBuildingResult addMavenOneProject( String metadataUrl ) throws ContinuumException; void updateProject( Project project )