Muncher Parent POM for standardizing the build, dependency management, and plugin configuration across all muncher projects.
This project defines a parent POM for the muncher ecosystem, providing:
- Centralized dependency management via BOMs.
- Shared plugin configuration (compiler, source, javadoc, GPG signing).
- Modules support.
- Java 21 compatibility.
This parent project currently includes:
- muncher-bom
- muncher-foundation-spring-boot-starter
- muncher-auth-spring-boot-starter
In your Maven project, set muncher-parent as the parent:
<parent>
<groupId>com.contentmunch</groupId>
<artifactId>muncher-parent</artifactId>
<version>1.0.0</version>
</parent>This gives your project:
- Java 21 setup
- Centralized dependency versions
- Automatic source/javadoc jars
- GPG signing support
- Plugin configurations
- Compatibility with Maven Central publishing (via Sonatype)
The parent imports:
- Spring Boot BOM
- OpenTelemetry BOM
- muncher-bom for internal library version alignment
These ensure all projects use compatible dependency versions out of the box.
We follow GitHub Flow for development. To maintain a high-quality, maintainable codebase, please follow these guidelines:
- Branch from
mainwhen starting work. - Open pull requests into
main. - Ensure your code is covered by tests (unit/integration as appropriate).
- Keep your branch up to date with
main. - Follow the existing code style and structure.
Your PR description should follow this format:
Short summary of the change
Key changes (bullet points)
- Any notes on why/how things are implemented (optional)
Closes #
Add support for user authentication
• Introduced login API with JWT support
• Added controller, service, and security config
• Updated README
Closes #42
We follow the Conventional Commits style:
Types
- feat: A new feature
- fix: A bug fix
- refactor: Internal code change without affecting behavior
- test: Adding or improving tests
- chore: Tooling, dependency updates, or minor infra changes
Notes:
- Use imperative, present tense: “add” not “added” or “adds”
- No trailing period in subject
- Max 100 characters for subject line
CI/CD and Quality
These are enforced via GitHub Actions and other automation tools.
- ✅ Tests must pass before merging
- ✅ PR should be reviewed and approved
- ✅ No merge conflicts