maven
Installation
SKILL.md
Maven
Intent Router
| Request | Reference | Load When |
|---|---|---|
| Install tool, first-time setup, Maven wrapper | references/install-and-setup.md |
Maven needs to be installed or the mvnw wrapper configured |
| pom.xml structure, dependencies, plugins | references/pom-xml.md |
Work involves editing pom.xml, adding dependencies, or configuring plugins |
| CLI commands, build workflows | references/command-cookbook.md |
Specific mvn commands or flags are needed |
| Lifecycle phases, common plugins | references/lifecycle-and-plugins.md |
Questions about build lifecycle or plugin configuration arise |
Quick Start
# Validate project (check pom.xml)
mvn validate
# Compile source code
mvn compile