Author: jdcasey
Date: Wed Dec 7 09:39:54 2005
New Revision: 354811
URL: http://svn.apache.org/viewcvs?rev=354811&view=rev
Log:
PR: MNG-1379
Commented out the line in EclipsePlugin.java that reconfigures the artifact
file based on dependency systemPath, and reran the tests...it seems to pass
just fine, so I assume the problem has been fixed as a side effect of another
issue's resolution. I'm leaving the code in there (but commenting out the
method call), just in case this proves to be incorrect.
Modified:
maven/plugins/trunk/maven-eclipse-plugin/src/main/java/org/apache/maven/plugin/eclipse/EclipsePlugin.java
Modified:
maven/plugins/trunk/maven-eclipse-plugin/src/main/java/org/apache/maven/plugin/eclipse/EclipsePlugin.java
URL:
http://svn.apache.org/viewcvs/maven/plugins/trunk/maven-eclipse-plugin/src/main/java/org/apache/maven/plugin/eclipse/EclipsePlugin.java?rev=354811&r1=354810&r2=354811&view=diff
==============================================================================
---
maven/plugins/trunk/maven-eclipse-plugin/src/main/java/org/apache/maven/plugin/eclipse/EclipsePlugin.java
(original)
+++
maven/plugins/trunk/maven-eclipse-plugin/src/main/java/org/apache/maven/plugin/eclipse/EclipsePlugin.java
Wed Dec 7 09:39:54 2005
@@ -341,7 +341,7 @@
Collection artifacts = project.getTestArtifacts();
EclipseUtils.fixMissingOptionalArtifacts( artifacts,
project.getDependencyArtifacts(), localRepository,
artifactResolver,
remoteArtifactRepositories, getLog() );
- EclipseUtils.fixSystemScopeArtifacts( artifacts,
project.getDependencies() );
+// EclipseUtils.fixSystemScopeArtifacts( artifacts,
project.getDependencies() );
return artifacts;
}