Attila Szegedi wrote:
> Incorporate copy tasks in your Ant script that will dispatch the latest
> velocity.jar everywhere from a central position. Ant is ideal for lazy
> people. After all, we're using it since we're lazy to manually invoke the
> compiler, jar classes, copy them, test them, generate javadocs etc. every
> time.
I used to have a symlink in WEB-INF/lib to a central Velocity jar (when
I used signleton model) and then I'd do something like:
----------------------------
for i in customer1 customer2 ...;
do cd $i; ant test-deploy prod-deploy; cd ..;
done
----------------------------
and all sites would be updated. I might go back to that...
Bojan