From continuum-commits-return-3186-apmail-maven-continuum-commits-archive=maven.apache.org@maven.apache.org Mon Jun 11 13:59:38 2007 Return-Path: Delivered-To: apmail-maven-continuum-commits-archive@www.apache.org Received: (qmail 81432 invoked from network); 11 Jun 2007 13:59:35 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 11 Jun 2007 13:59:35 -0000 Received: (qmail 26958 invoked by uid 500); 11 Jun 2007 13:59:20 -0000 Delivered-To: apmail-maven-continuum-commits-archive@maven.apache.org Received: (qmail 26912 invoked by uid 500); 11 Jun 2007 13:59:20 -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 26878 invoked by uid 99); 11 Jun 2007 13:59:20 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 11 Jun 2007 06:59:20 -0700 X-ASF-Spam-Status: No, hits=-99.5 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 11 Jun 2007 06:59:15 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 6D50A1A981A; Mon, 11 Jun 2007 06:58:55 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r546153 - /maven/continuum/trunk/continuum-data-management/data-management-cli/src/main/java/org/apache/maven/continuum/management/DataManagementCli.java Date: Mon, 11 Jun 2007 13:58:55 -0000 To: continuum-commits@maven.apache.org From: brett@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20070611135855.6D50A1A981A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: brett Date: Mon Jun 11 06:58:54 2007 New Revision: 546153 URL: http://svn.apache.org/viewvc?view=rev&rev=546153 Log: more IDE tweaks - for using the entire continuum reactor in the IDE Modified: maven/continuum/trunk/continuum-data-management/data-management-cli/src/main/java/org/apache/maven/continuum/management/DataManagementCli.java Modified: maven/continuum/trunk/continuum-data-management/data-management-cli/src/main/java/org/apache/maven/continuum/management/DataManagementCli.java URL: http://svn.apache.org/viewvc/maven/continuum/trunk/continuum-data-management/data-management-cli/src/main/java/org/apache/maven/continuum/management/DataManagementCli.java?view=diff&rev=546153&r1=546152&r2=546153 ============================================================================== --- maven/continuum/trunk/continuum-data-management/data-management-cli/src/main/java/org/apache/maven/continuum/management/DataManagementCli.java (original) +++ maven/continuum/trunk/continuum-data-management/data-management-cli/src/main/java/org/apache/maven/continuum/management/DataManagementCli.java Mon Jun 11 06:58:54 2007 @@ -127,11 +127,17 @@ String id = urlEF.substring( urlEF.lastIndexOf( '/', idEndIdx - 1 ) + 1, idEndIdx ); // continuum-legacy included because the IDE doesn't do the proper assembly of enhanced classes and JDO metadata if ( !"data-management-api".equals( id ) && !"data-management-cli".equals( id ) && - !"continuum-legacy".equals( id ) ) + !"continuum-legacy".equals( id ) && !"continuum-model".equals( id ) ) { exclusions.add( "org.apache.maven.continuum:" + id ); jars.add( new File( url.getPath() ) ); } + } + + // Sometimes finds its way into the IDE. Make sure it is loaded in the extra classloader too + if ( urlEF.contains( "jpox-enhancer" ) ) + { + jars.add( new File( url.getPath() ) ); } } ArtifactFilter filter = new ExcludesArtifactFilter( exclusions );