Hi In my current project I try to use maven as wrapper to ant. On each phase (clean, test, compile, package) I use exec-maven-plugin and execute counterpart ant command i.e. ant clean or ant test etc. The problem is the install phase. Ant creates three jars (in \build directory) called a.jar, b.jar, c.jar. Unfortunately maven disregards them, creates an empty jar in \target directory and installs it to the local repository. Is there any way to inform maven that it should try to install a.jar, b.jar, c.jar ?
Best john