jvanzyl 2002/07/08 06:36:31
Modified: src/plugins/ant plugin.jelly
Log:
o Using the new $${foo} fixes in Jelly so that I can generate an ant build
file that uses a user's settings and not mine :-)
Revision Changes Path
1.9 +4 -4 jakarta-turbine-maven/src/plugins/ant/plugin.jelly
Index: plugin.jelly
===================================================================
RCS file: /home/cvs/jakarta-turbine-maven/src/plugins/ant/plugin.jelly,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- plugin.jelly 7 Jul 2002 18:24:13 -0000 1.8
+++ plugin.jelly 8 Jul 2002 13:36:31 -0000 1.9
@@ -84,14 +84,14 @@
-->
<get
- src="${maven.repo.remote}maven/${maven.latest.install.jar}"
- dest="${user.home}/${maven.latest.install.jar}"
+ src="$${maven.repo.remote}maven/${maven.latest.install.jar}"
+ dest="$${user.home}/${maven.latest.install.jar}"
usetimestamp="true"
/>
<unjar
- src="${user.home}/${maven.latest.install.jar}"
- dest="${maven.home}"
+ src="$${user.home}/${maven.latest.install.jar}"
+ dest="$${maven.home}"
/>
</target>
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>