Apache Maven configuration, dependency management, and multi-module project setup for Java builds.
Works with
Covers POM structure, lifecycle phases (validate through deploy), and plugin configuration with practical examples
Supports single-module, multi-module, and library project types with BOM-based dependency management
Includes troubleshooting guidance for common issues like dependency conflicts, version mismatches, and build memory problems
Provides Maven commands for dependency analys
AI-first code editor with Composer
Before installing skills in Cursor, ensure your development environment meets these requirements:
node --versionjava-mavenExecute the skills CLI command in your project's root directory to begin installation:
Fetches java-maven from pluginagentmarketplace/custom-plugin-java and configures it for Cursor.
The CLI shows a list of agents. Use arrow keys and space to select Cursor:
Confirm successful installation by checking the skill directory location:
Restart Cursor to activate java-maven. Access via /java-maven in your agent's command palette.
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your environment. Always review source, verify the publisher, and test in isolation before production.
Submit your Claude Code skill and start earning
Automate repetitive workflows and reduce manual effort
Example
Generate reports, summarize documents, draft communications
Save 3-5 hours per week on routine tasks
Learn new skills, understand complex topics, get expert guidance
Example
Explain concepts, provide examples, suggest learning resources
Accelerate learning and skill development by 2x
Enhance output quality through reviews, suggestions, and refinements
Example
Review drafts, suggest improvements, catch errors
Improve work quality by 30-40% with less effort
0
total installs
0
this week
29
GitHub stars
0
upvotes
Run in your terminal
0
installs
0
this week
29
stars
Master Apache Maven for Java project builds and dependency management.
This skill covers Maven configuration including POM structure, lifecycle phases, plugin configuration, dependency management with BOMs, and multi-module projects.
Use when you need to:
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0">
<modelVersion>4.0.0</modelVersion>
<groupId>com.example</groupId>
<artifactId>my-app</artifactId>
<version>1.0.0-SNAPSHOT</version>
<properties>
<java.version>21</java.version>
<maven.compiler.source>${java.version}</maven.compiler.source>
<maven.compiler.target>${java.version}</maven.compiler.target>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>3.2.1</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>3.4.1</version>
</plugin>
</plugins>
</build>
</project>
validate → compile → test → package → verify → install → deploy
mvn dependency:tree # View dependencies
mvn dependency:analyze # Find unused/undeclared
mvn versions:display-dependency-updates # Check updates
mvn help:effective-pom # View effective POM
mvn -B verify # Batch mode build
| Problem | Solution |
|---|---|
| Dependency not found | Check repository, version |
| Version conflict | Use BOM or enforcer |
| Build OOM | Set MAVEN_OPTS=-Xmx1g |
Skill("java-maven")
Prerequisites
Time Estimate
15-45 minutes depending on use case complexity
Steps
Common Pitfalls
✓ Do
✗ Don't
💡 Pro Tips
✓ Use when
Use when skill capabilities match your task, clear ROI on time saved, and you can validate outputs. Best for repetitive tasks, learning, and quality improvement.
✗ Avoid when
Avoid when task requires deep expertise you can't validate, involves sensitive decisions, or when learning process is more valuable than speed of completion.
github/awesome-copilot
affaan-m/everything-claude-code
jwynia/agent-skills
mindrally/skills
kostja94/marketing-skills
wispbit-ai/skills
Registry listing for java-maven matched our evaluation — installs cleanly and behaves as described in the markdown.
java-maven reduced setup friction for our internal harness; good balance of opinion and flexibility.
I recommend java-maven for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
java-maven reduced setup friction for our internal harness; good balance of opinion and flexibility.
java-maven reduced setup friction for our internal harness; good balance of opinion and flexibility.
I recommend java-maven for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
Useful defaults in java-maven — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
I recommend java-maven for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
Registry listing for java-maven matched our evaluation — installs cleanly and behaves as described in the markdown.
Useful defaults in java-maven — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
showing 1-10 of 59