c

codingstyle-pom

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 as parent of your own POM. Then you get the configuration several static analysis and testing tools for free.
https://cs.hm.edu/~hafner
MIT license Creative Commons Attribution 4.0 International License
Ullrich Hafner
Files download
File Operation
codingstyle-pom-4.11.0.pom download
Apache Maven
<dependency>
  <groupId>edu.hm.hafner</groupId>
  <artifactId>codingstyle-pom</artifactId>
  <version>4.11.0</version>
  <type>pom</type>
</dependency>
Gradle Groovy
implementation 'edu.hm.hafner:codingstyle-pom:4.11.0'
Gradle Kotlin
implementation("edu.hm.hafner:codingstyle-pom:4.11.0")
Scala SBT
libraryDependencies += "edu.hm.hafner" % "codingstyle-pom" % "4.11.0"
Groovy Grape
@Grapes(
  @Grab(group='edu.hm.hafner', module='codingstyle-pom', version='4.11.0')
)
Apache Ivy
<dependency org="edu.hm.hafner" name="codingstyle-pom" rev="4.11.0" />
Leiningen
[edu.hm.hafner/codingstyle-pom "4.11.0"]
Apache Buildr
'edu.hm.hafner:codingstyle-pom:jar:4.11.0'