# Mvn Build

> Build the jhelm project with Maven

- Skill: `majiayu000/mvn-build` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds add majiayu000/mvn-build`
- Raw SKILL.md: https://api.skillmd.com/api/skills/majiayu000/mvn-build/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: majiayu000 (https://skillmd.com/u/majiayu000)
- Updated: 2026-09-09
- Page: https://skillmd.com/skills/majiayu000/mvn-build

---


## Build the jhelm project

Run the Maven build for the project. If an argument is provided, build only that module.

### Full build
```bash
./mvnw clean install
```

### Module build (if argument provided)
```bash
./mvnw clean install -pl $ARGUMENTS
```

### Modules
- `jhelm-gotemplate` — Go template engine
- `jhelm-core` — Core Helm logic
- `jhelm-kube` — Kubernetes integration
- `jhelm-app` — CLI application

Run the appropriate build command. Report any compilation errors or test failures clearly.

