Return-Path: Delivered-To: apmail-maven-m2-dev-archive@www.apache.org Received: (qmail 93126 invoked from network); 31 Mar 2005 11:27:18 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 31 Mar 2005 11:27:18 -0000 Received: (qmail 53927 invoked by uid 500); 31 Mar 2005 11:27:18 -0000 Delivered-To: apmail-maven-m2-dev-archive@maven.apache.org Received: (qmail 53904 invoked by uid 500); 31 Mar 2005 11:27:18 -0000 Mailing-List: contact m2-dev-help@maven.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: List-Id: "Maven 2 Developers List" Reply-To: "Maven 2 Developers List" Delivered-To: mailing list m2-dev@maven.apache.org Received: (qmail 53889 invoked by uid 500); 31 Mar 2005 11:27:18 -0000 Delivered-To: apmail-maven-components-cvs@apache.org Received: (qmail 53885 invoked by uid 99); 31 Mar 2005 11:27:18 -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 minotaur.apache.org (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.28) with SMTP; Thu, 31 Mar 2005 03:27:17 -0800 Received: (qmail 93106 invoked by uid 1717); 31 Mar 2005 11:27:16 -0000 Date: 31 Mar 2005 11:27:16 -0000 Message-ID: <20050331112716.93105.qmail@minotaur.apache.org> From: brett@apache.org To: maven-components-cvs@apache.org Subject: cvs commit: maven-components/maven-mboot2/src/main/java MBoot.java X-Virus-Checked: Checked X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N brett 2005/03/31 03:27:16 Modified: maven-mboot2/src/main/java MBoot.java Log: add idea plugin Revision Changes Path 1.77 +13 -10 maven-components/maven-mboot2/src/main/java/MBoot.java Index: MBoot.java =================================================================== RCS file: /home/cvs/maven-components/maven-mboot2/src/main/java/MBoot.java,v retrieving revision 1.76 retrieving revision 1.77 diff -u -r1.76 -r1.77 --- MBoot.java 31 Mar 2005 10:54:32 -0000 1.76 +++ MBoot.java 31 Mar 2005 11:27:16 -0000 1.77 @@ -84,7 +84,7 @@ String[] pluginBuilds = new String[]{"maven-plugins/maven-assemble-plugin", "maven-plugins/maven-clean-plugin", "maven-plugins/maven-compiler-plugin", "maven-plugins/maven-deploy-plugin", - "maven-plugins/maven-ejb-plugin", /*"maven-plugins/maven-idea-plugin",*/ + "maven-plugins/maven-ejb-plugin", "maven-plugins/maven-idea-plugin", "maven-plugins/maven-install-plugin", "maven-plugins/maven-jar-plugin", "maven-plugins/maven-plugin-plugin", "maven-plugins/maven-resources-plugin", "maven-plugins/maven-surefire-plugin", "maven-plugins/maven-war-plugin"}; @@ -686,9 +686,10 @@ File f = new File( repoLocal, dependency ); if ( !f.exists() ) { - throw new FileNotFoundException( - "Missing dependency: " + dependency + - ( !online ? "; run again online" : "; there was a problem downloading it earlier" ) ); + throw new FileNotFoundException( "Missing dependency: " + dependency + + ( !online + ? "; run again online" + : "; there was a problem downloading it earlier" ) ); } cl.addURL( f.toURL() ); @@ -705,9 +706,10 @@ File f = new File( repoLocal, dependency ); if ( !f.exists() ) { - throw new FileNotFoundException( - "Missing dependency: " + dependency + - ( !online ? "; run again online" : "; there was a problem downloading it earlier" ) ); + throw new FileNotFoundException( "Missing dependency: " + dependency + + ( !online + ? "; run again online" + : "; there was a problem downloading it earlier" ) ); } cl.addURL( f.toURL() ); @@ -739,9 +741,10 @@ File f = new File( repoLocal, dependency ); if ( !f.exists() ) { - throw new FileNotFoundException( - "Missing dependency: " + dependency + - ( !online ? "; run again online" : "; there was a problem downloading it earlier" ) ); + throw new FileNotFoundException( "Missing dependency: " + dependency + + ( !online + ? "; run again online" + : "; there was a problem downloading it earlier" ) ); } modelloClassLoader.addURL( f.toURL() );