maven

Installation
SKILL.md

Maven Skill

Manages the Maven build lifecycle, dependency configuration, and pom.xml for this Spring Boot 3 project. Handles adding/updating dependencies, running builds, executing tests, and packaging the application for deployment.

Quick Start

mvn clean install          # full build with tests
mvn spring-boot:run        # start dev server on :8080
mvn test                   # run all tests
mvn test -Dtest=ClassName  # run a specific test class
mvn verify                 # tests + coverage report
mvn clean package -DskipTests  # production JAR

Key Concepts

Installs
2
First Seen
Jun 21, 2026
maven — rtdickerson/jpa4apiservertemplateproject