and again -----Original Message----- From: Iyad Elayyan [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 18, 2002 11:08 PM To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: RE: ant task calling subprojects
FYI... anyone! -----Original Message----- From: Iyad Elayyan [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 17, 2002 9:17 PM To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: ant task calling subprojects Hi Diane, I modified the <ant> task to add a srcDir attribute which is a path of subprojects to go through and build. I maintained compatibility with the dir attribute. below is an example and attached is my modification, would you be kind to include this in the next release. PS. remember we talked about this and I just got around to actually doing it. also I lost your email id and I wasn't getting any response from [EMAIL PROTECTED] | Iyad Elayyan, x72374 | j2eedev_us | Oracle Corporation common.xml ~~~~~~~~~~ <path id="all.src.path"> <pathelement location="subproject1"/> <pathelement location="subproject2"/> <pathelement location="subproject3"/> </path> <property name="all.src.path" refid="all.src.path" /> build.xml ~~~~~~~~~ <?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE project [<!ENTITY common SYSTEM "file:./common.xml">]> <project name="src" default="all" basedir="."> &common; <!-- =================================================================== --> <!-- call clean on --> <!-- =================================================================== --> <target name="clean"> <ant srcDir="${all.src.path}" target="clean"/> </target> <!-- =================================================================== --> <!-- call compile on --> <!-- =================================================================== --> <target name="compile"> <ant srcDir="${all.src.path}" target="compile"/> </target> <!-- =================================================================== --> <!-- call jar on --> <!-- =================================================================== --> <target name="jar"> <ant srcDir="${all.src.path}" target="jar"/> </target> <!-- =================================================================== --> <!-- call all on --> <!-- =================================================================== --> <target name="all"> <ant srcDir="${all.src.path}" target="all"/> </target> </project>
Ant.java.0
Description: Binary data
Ant.java.1
Description: Binary data
Ant.java
Description: Binary data
-- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>