If i have multi module project written in maven pom.xml in this architechture
pom.xml -main
---module1/pom.xml
---module2/pom.xml
and main pom.xml looks like this
<modelVersion>4.0.0</modelVersion>
<groupId>My group id</groupId>
<artifactId>my artifact</artifactId>
<packaging>pom</packaging>
<version>1.2</version>
<modules>
<module>module1</module>
<module>module2</module>
</modules>
and each module have it own dependencies.
How can i resolve, and retrieve all these dependencies via IVY to build my project using Ivy+Ant. Problem is only in multi module project, because when there is only 1 jar/war produced by project there are no probelm to resolve and retrieve dependencies with ivy+ant
But when during runtime there are created ejb.jar ejb.client.jar and 2-4 other modules , ivy just can't dont resolve