Hi, Thanks for the great suggestion with *preparationGoals* - this is definitely a useful feature. However, this is not what caused a problem in my case.
I've found that defining an assembly plugin entry in <build> element of your project will somehow break the way reactor builds are executed for the first time. My config for assembly plugin included a descriptorRef to built-in "src" assembly, and that seemed to be enough to affect reactor so that it'd complain about one of the modules missing when you do your very first package/install/deploy. My entry (pretty much a copy of example from http://maven.apache.org/plugins/maven-assembly-plugin/usage.html): <project> [...] <build> [...] <plugins> <plugin> <artifactId>maven-assembly-plugin</artifactId> <configuration> <descriptorRefs> <descriptorRef>src</descriptorRef> </descriptorRefs> </configuration> <executions> <execution> <id>pack.sources</id> <phase>package</phase> <goals> <goal>attached</goal> </goals> </execution> </executions> </plugin> [...] </project> _______________________________________________________ O Yahoo! está de cara nova. Venha conferir! http://br.yahoo.com --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
