An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

          

[![GitHub Actions](https://github.com/uhafner/codingstyle-pom/workflows/GitHub%20CI/badge.svg)](https://github.com/uhafner/codingstyle-pom/actions)
[![License: MIT](https://img.shields.io/badge/license-MIT-yellow.svg)](https://en.wikipedia.org/wiki/MIT_License)
![JDK21](https://img.shields.io/badge/jdk-21-blue.svg)

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)