pom.xml
[top] |
This could go in the tips as well, but look here:
[top] |
Open up the build path preferences to this classpath
variable screen:
Tell it where your maven repository is:
When you finish it should look like this, except
pointing to your own repository, of course.
It will ask you to rebuild when you finish.
[top] |
Goal
[top] |
goals, phases, plugins.Plugins provide the functionality, goals are how you call it from the pom.xml, phases is where it fits in the lifecycle
[top] |
lifecycle phases. This is one of the simplest, sweetest aspects of Maven. You can specify the "phase" in your command, which says basically how far you want to go. Then maven runs all phases in the lifecycle, up to and including the one you specified. You actually have to use special flags to tell it to skip a phase or goal within a phase.
[top] |