How to use master pom file to checkout all modules of a web application and build all modules
问题 I have a web application that relies on several modules. So to build it, I have a master pom.xml file. What I want this pom file to do is to checkout out all the modules. below is my pom file. <executions> <execution> <id>check-out-project1</id> <phase>generate-sources</phase> <goals> <goal>checkout</goal> </goals> <configuration> <checkoutDirectory>${project.build.directory}/module1</checkoutDirectory> <connectionUrl>scm:svn:svn://svnserver/svn/module1/trunk</connectionUrl> <!--