Maven FAQ
- Can I depoy timestamped snapshots to an alternate repository?
- Can I use a version range in a <parent> element?
- How do I add dependencies to the classpath from my custom plugin's code?
- You can't. The pom is intended to be a full description of the project and its dependencies.
- What is the
<prerequisites><maven>
element used for and how does it work?
- it's not inherited, you have to define it in all modules
- for any project/module, maven checks before to build if its own version is greater than the one in the prerequisite
- for plugins, this value is also used in the update mechanism to check the compatibility.
- How do I get rid of the warning "Encoding not set, build is platform dependent"?