Jin Kim
Jin Kim

Reputation: 17732

War Overlay... with Ant?

I've been tasked with setting up a Jasig CAS server, which is a Maven project using the Spring Framework. It uses the Maven War Overlay plugin to combine the CAS server's original files with my custom files.

Unfortunately, I am not permitted to leverage Maven and must therefore convert this to an Ant project.

I am not as knowledgeable with Ant as I am with Maven. Does Ant have a feature comparable to the Maven War Overlay plugin?

Upvotes: 1

Views: 329

Answers (1)

Grzegorz Żur
Grzegorz Żur

Reputation: 49171

You can use zip task to replace files. See update parameter. You may consider it quite a low level solution but it will do just the same thing as Maven plugin do.

Upvotes: 2

Related Questions