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() );