diff --git a/maven-plugins/maven-eclipse-plugin/src/main/java/org/apache/maven/plugin/eclipse/EclipsePlugin.java b/maven-plugins/maven-eclipse-plugin/src/main/java/org/apache/maven/plugin/eclipse/EclipsePlugin.java index fae7805148..79ed931a2c 100644 --- a/maven-plugins/maven-eclipse-plugin/src/main/java/org/apache/maven/plugin/eclipse/EclipsePlugin.java +++ b/maven-plugins/maven-eclipse-plugin/src/main/java/org/apache/maven/plugin/eclipse/EclipsePlugin.java @@ -143,7 +143,7 @@ public class EclipsePlugin * * @parameter expression="${eclipse.downloadSources}" */ - private boolean downloadSources = true; + private boolean downloadSources = false; /** * Eclipse workspace directory. diff --git a/maven-plugins/maven-project-info-reports-plugin/src/main/java/org/apache/maven/report/projectinfo/DependenciesReport.java b/maven-plugins/maven-project-info-reports-plugin/src/main/java/org/apache/maven/report/projectinfo/DependenciesReport.java index 56187e31a7..ab5ff4abdb 100644 --- a/maven-plugins/maven-project-info-reports-plugin/src/main/java/org/apache/maven/report/projectinfo/DependenciesReport.java +++ b/maven-plugins/maven-project-info-reports-plugin/src/main/java/org/apache/maven/report/projectinfo/DependenciesReport.java @@ -279,7 +279,7 @@ public class DependenciesReport throw new IllegalArgumentException( "Can't find a valid Maven project in the repository for the artifact [" + artifact.getGroupId() + ":" + artifact.getArtifactId() + ":" - + artifact.getVersion() + "]." ); + + artifact.getVersion() + "].", e ); } tableRow( new String[]{artifact.getGroupId(), artifact.getArtifactId(), artifact.getVersion(), artifactProject.getDescription(), diff --git a/maven-plugins/maven-war-plugin/src/main/java/org/apache/maven/plugin/war/WarMojo.java b/maven-plugins/maven-war-plugin/src/main/java/org/apache/maven/plugin/war/WarMojo.java index fb1c2214c9..de16e2b71e 100644 --- a/maven-plugins/maven-war-plugin/src/main/java/org/apache/maven/plugin/war/WarMojo.java +++ b/maven-plugins/maven-war-plugin/src/main/java/org/apache/maven/plugin/war/WarMojo.java @@ -314,7 +314,10 @@ public class WarMojo { generateExplodedWebapp(); - if ( !"exploded".equals( mode ) ) + // TODO: make a separate 'exploded' Mojo. For now, + // disable not making an artifact so the install phase + // doesn't fail. + // if ( !"exploded".equals( mode ) ) { //generate war file getLog().info( "Generating war " + warFile.getAbsolutePath() );