我想通过自定义 Ant 脚本或 Ant XML 和 SVN 命令来执行以下操作。我在 Eclipse 工作区中有四个项目。我正在使用 Eclipse Indigo,我正在使用 Java EE。
我有 Java Web 应用程序和 Java Web 服务的四个项目 a、b、c、d。我想自动化以下过程:
1.Get update from svn for All a,b,c,d project.
2.clean all four project.
3.Build all four project.
4.make jar of project d and export into lib of project b.
5.Build b project.
6.make jar of project c and export into lib of project a.
7.Build a project.
8.Make ab.war archive of project a and b and put into specified location(i.e. c:\xyz\)
9.Then I want to commit this ab.war archive to a particular svn location or tag it (for read-only).
我怎么能做到这一点?