On 10/6/07, Giovanni Azua <[EMAIL PROTECTED]> wrote: > Since I am happy with the current state of my proj I was about to release, > then renamed all version 1.0.0-SNAPSHOT ocurrences in my pom.xml files to > 1.0.0
Consider using the release plugin to handle versioning and tagging for you (assuming you're using a supported scm system.) 'mvn release:prepare' and then 'mvn release:perform' means you don't have to change the version numbers manually, among other things. > I have the parent pom and: > > - module 1 > - module 2 (that depends on module 1) > > Now module 2 does not build anymore complaining can not find > module1-1.0.0.jar of course it hasn't build yet but how can I tell this to > maven? You didn't say, but I assume you're trying to build only module 2. Maven is looking in the local and remote repos for module 1, and not finding it. (Yes, this is normal). If you build from the parent pom, Maven will "see" all the modules and build the project. -- Wendy --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
