morgand 2003/01/20 14:37:50 Modified: jelly/jelly-tags/ant project.xml Log: patched some paths to make this Maven script runnable outside the directory Submitted by robert burrell donkin Revision Changes Path 1.9 +11 -3 jakarta-commons-sandbox/jelly/jelly-tags/ant/project.xml Index: project.xml =================================================================== RCS file: /home/cvs/jakarta-commons-sandbox/jelly/jelly-tags/ant/project.xml,v retrieving revision 1.8 retrieving revision 1.9 diff -u -r1.8 -r1.9 --- project.xml 19 Jan 2003 06:40:54 -0000 1.8 +++ project.xml 20 Jan 2003 22:37:49 -0000 1.9 @@ -1,10 +1,18 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE project [ - <!-- see file for description --> - <!ENTITY commonDeps SYSTEM "file:../../commonDependencies.ent"> + <!-- + see file "../../commonDependencies.ent" for explanation of Jelly dependencies + BRITTLE! cannot explicitly include 'file:' protocol below or Maven will + not run this script outside of the base directory + --> + <!ENTITY commonDeps SYSTEM "../../commonDependencies.ent"> ]> <project> - <extend>../tag-project.xml</extend> + <!-- + BRITTLE! must include ${basedir} location or Maven will + not run this script outside of the base directory + --> + <extend>${basedir}/../tag-project.xml</extend> <id>commons-jelly-tags-ant</id> <name>commons-jelly-tags-ant</name> <package>org.apache.commons.jelly.tags.ant</package>
-- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>