> 1. I find that if I try to override a dependency Jar that is defined in my > POM as a SNAPSHOT version, the build fails saying that it cannot find the > override path specified - even though the Jar file is there. If however, I > change the dependency version in my POM to a fixed version number it works > fine. Alternatively, if I build offline using 'maven -o', it also works fine.
you're right. Can you file a JIRA issue? > 2. If I use maven.repo.remote.enabled=false I always get build failures due > to unsatisfied dependencies for my SNAPSHOT dependency Jars, even though they > are present in my local repository. The Maven website infers that this > shouldn't happen - that the build should use the Snapshot Jars that are in my > local repository. If I use maven -o again, it works fine - with the usual > warning of the possibility of out-of-date dependencies. I think this may already be in JIRA. You can use maven.mode.online=false, which is analogours to -o. Cheers, Brett --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
