[Yanel-commits] rev 42354 - public/yanel/trunk/src/build/resource-types

guillaume at wyona.com guillaume at wyona.com
Tue Apr 14 12:39:54 CEST 2009


Author: guillaume
Date: 2009-04-14 12:39:54 +0200 (Tue, 14 Apr 2009)
New Revision: 42354

Modified:
   public/yanel/trunk/src/build/resource-types/resource-type.build.xml
Log:
Added support for auxiliary, supposedly resource-related fileset/classpath
 referenced through maven2.resource.fileset/maven.resource.cp:
 sometimes it seems to be used to distinguish between runtime and non-runtime
libraries so YMMV... :(
Anyway we need to add it for backward compatibility of some (many?) of the resources' build scripts.

Issue: 6898


Modified: public/yanel/trunk/src/build/resource-types/resource-type.build.xml
===================================================================
--- public/yanel/trunk/src/build/resource-types/resource-type.build.xml	2009-04-14 09:29:22 UTC (rev 42353)
+++ public/yanel/trunk/src/build/resource-types/resource-type.build.xml	2009-04-14 10:39:54 UTC (rev 42354)
@@ -26,6 +26,7 @@
 
     <path id="classpath">
       <pathelement path="${maven2.cp}"/>
+      <pathelement path="${maven2.resource.cp}"/>
     </path>
     <property name="resource.build.dir" value="${resource.home.dir}/build"/>
     <property name="resource.classes.dir" value="${resource.build.dir}/classes"/>
@@ -45,6 +46,7 @@
 
     <path id="eclipse.classpath">
       <fileset refid="maven2.fileset"/>
+      <fileset refid="maven2.resource.fileset"/>
       <fileset refid="Yanel.test.jars.fileset"/>
     </path>
     <ant dir="${yanel.home}/tools/eclipse.settings" target="update-classpath"



More information about the Yanel-commits mailing list