2010/12/7 fhomasp <[email protected]>: > > Hmm.. I don't really understand. Could you elaborate?
I guess that you don't want to see those assemblies in your enterprise Maven repository, right? In this case, in each assembly module, add: <build> <plugins> ... <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <configuration> <skip>true</skip> </configuration> </plugin> ... </plugins> </build> When you will release or, at least, deploy your parent project, deployment of modules configured this way won't be deployed. Antonio --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
