You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@gump.apache.org by aj...@apache.org on 2004/10/08 20:51:26 UTC

svn commit: rev 54102 - in gump/trunk: python/gump/build src/documentation/content/xdocs/metadata

Author: ajack
Date: Fri Oct  8 11:51:25 2004
New Revision: 54102

Modified:
   gump/trunk/python/gump/build/maven.py
   gump/trunk/src/documentation/content/xdocs/metadata/maven.xml
Log:
Don't exclude boot classpath jars from Maven jar overrides, include them
just as others.

Modified: gump/trunk/python/gump/build/maven.py
==============================================================================
--- gump/trunk/python/gump/build/maven.py	(original)
+++ gump/trunk/python/gump/build/maven.py	Fri Oct  8 11:51:25 2004
@@ -249,7 +249,7 @@
         (classpath,bootclasspath)=languageHelper.getClasspathObjects(project)
         
         # :TODO: write...
-        for annotatedPath in classpath.getPathParts():
+        for annotatedPath in classpath.getPathParts()+bootclasspath.getPathParts():
             if isinstance(annotatedPath,gump.language.path.AnnotatedPath):
                 props.write(('# Contributor: %s\nmaven.jar.%s=%s\n') % \
                     (	annotatedPath.getContributor(),	

Modified: gump/trunk/src/documentation/content/xdocs/metadata/maven.xml
==============================================================================
--- gump/trunk/src/documentation/content/xdocs/metadata/maven.xml	(original)
+++ gump/trunk/src/documentation/content/xdocs/metadata/maven.xml	Fri Oct  8 11:51:25 2004
@@ -46,7 +46,7 @@
     
     <p>
     	 Gump generates a <strong>build.properties</strong> file for Maven, in which is specifies the jar
-		 overrides, and also any <link href="project.html#property">properties</link> that are passes into
+		 <link href="http://maven.apache.org/reference/user-guide.html#Overriding_Stated_Dependencies">overrides</link>, and also any <link href="project.html#property">properties</link> that are passes into
 		 the &lt;maven element.
     </p>