> Who is asking for 1.2.13 now? I only see 1.2.15 in your poms? > > I am not sure why you have the "[]" around the version in mmm's pom.xml
The [] means "this version and no other". Any other version tag in Maven merely indicates a preference for a version of a plugin or dependency, which Maven will pay attention to but it may not actually use that version if it does not feel like it. Whereas with [], Maven will actually fail the build if it cannot or does not use that version specifically. If you have [1.2] for a plugin in one module and [1.3] in another and you're building from the parent, the build will (should) fail. Wayne --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
