https://github.com/uhafner/codingstyle-pom
Parent POM to enforce my Java coding style
https://github.com/uhafner/codingstyle-pom
Last synced: 6 months ago
JSON representation
Parent POM to enforce my Java coding style
- Host: GitHub
- URL: https://github.com/uhafner/codingstyle-pom
- Owner: uhafner
- License: mit
- Created: 2020-02-16T11:15:44.000Z (over 6 years ago)
- Default Branch: main
- Last Pushed: 2026-01-10T15:31:20.000Z (7 months ago)
- Last Synced: 2026-01-11T04:19:38.576Z (7 months ago)
- Language: Shell
- Size: 2.57 MB
- Stars: 2
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://github.com/uhafner/codingstyle-pom/actions)
[](https://en.wikipedia.org/wiki/MIT_License)

Each Java project should follow a given coding style.
I.e., all contributions to the source code should use the same formatting rules, design principles, code patterns, idioms, etc.
I published such a coding style in my [GitHub project 'codingstyle'](https://github.com/uhafner/codingstyle).
I am using this coding style in my lectures about software development at Munich University of Applied Sciences and in all of my open source projects.
If you want to use this coding style as well, you can use this [Maven POM](pom.xml) as parent of your own POM.
Then you get the configuration of the following tools for free:
- [Java Compiler](https://openjdk.java.net/groups/compiler/)
- [Javadoc Tool](https://www.oracle.com/java/technologies/javase/javadoc.html)
- [Checkstyle](https://checkstyle.org)
- [PMD](https://pmd.github.io/)
- [SpotBugs](https://spotbugs.github.io)
- [Find Security Bugs](https://find-sec-bugs.github.io)
- [Error Prone](https://errorprone.info)
- [NullAway](https://github.com/uber/NullAway)
- [JaCoCo Code Coverage](https://www.jacoco.org/jacoco/index.html)
- [ArchUnit Architecture Tests](https://www.archunit.org)
- [RevAPI API Checker](https://revapi.org)
- [PIT Mutation Testing](https://pitest.org)