MVN

edu.hm.hafner : codingstyle

Maven & Gradle

Mar 16, 2023
4 usages
17 stars

Java coding style · Provides all necessary resources for a Java project to enforce the coding style that I am using in my lectures about software development at Munich University of Applied Sciences and in all of my open source projects. It configures several static analysis tools for Maven and IntelliJ. Moreover, it provides some sample classes that already use this style guide. This classes can be used as such but are not required in this project. These classes also use some additional libraries that are included using the Maven dependency mechanism. If the sample classes are deleted then the dependencies can be safely deleted, too.

<dependency>
    <groupId>edu.hm.hafner</groupId>
    <artifactId>codingstyle</artifactId>
    <version>3.14.0</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of edu.hm.hafner : codingstyle to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 3.14.0

All Versions

Choose a version of edu.hm.hafner : codingstyle to add to Maven or Gradle - All Versions:

  • Version Updated
  • codingstyle-3.14.0

    Mar 16, 2023
  • codingstyle-3.13.0

    Mar 15, 2023
  • codingstyle-3.12.0

    Mar 09, 2023
  • codingstyle-3.11.0

    Jan 18, 2023
  • codingstyle-3.10.0

    Jan 07, 2023
  • codingstyle-3.9.0

    Jan 05, 2023
  • codingstyle-3.8.0

    Dec 31, 2022
  • codingstyle-3.7.0

    Nov 29, 2022
  • codingstyle-3.6.0

    Nov 29, 2022
  • codingstyle-3.5.0

    Nov 26, 2022
  • codingstyle-3.4.0

    Nov 11, 2022
  • codingstyle-3.3.0

    Oct 08, 2022
  • codingstyle-3.2.1

    Sep 18, 2022
  • codingstyle-3.2.0

    Sep 17, 2022
  • codingstyle-3.1.0

    Sep 16, 2022
  • codingstyle-3.0.0

    Sep 16, 2022
  • codingstyle-2.25.0

    Jun 09, 2022
  • codingstyle-2.24.0

    Jun 08, 2022
  • codingstyle-2.23.0

    May 14, 2022
  • codingstyle-2.22.0

    May 06, 2022
  • codingstyle-2.21.0

    May 02, 2022
  • codingstyle-2.20.0

    Apr 12, 2022
  • codingstyle-2.19.0

    Mar 26, 2022
  • codingstyle-2.18.0

    Mar 26, 2022
  • codingstyle-2.17.0

    Mar 19, 2022
  • codingstyle-2.16.0

    Mar 15, 2022
  • codingstyle-2.15.0

    Mar 13, 2022
  • codingstyle-2.14.0

    Dec 12, 2021
  • codingstyle-2.13.0

    Dec 10, 2021
  • codingstyle-2.12.0

    Dec 04, 2021
  • codingstyle-2.11.0

    Nov 19, 2021
  • codingstyle-2.10.1

    Nov 17, 2021
  • codingstyle-2.10.0

    Oct 09, 2021
  • codingstyle-2.9.0

    Sep 28, 2021
  • codingstyle-2.8.0

    Jul 10, 2021
  • codingstyle-2.7.0

    Jun 11, 2021
  • codingstyle-2.6.0

    Jun 08, 2021
  • codingstyle-2.5.0

    May 01, 2021
  • codingstyle-2.4.0

    Apr 24, 2021
  • codingstyle-2.3.0

    Apr 07, 2021
  • codingstyle-2.2.0

    Mar 20, 2021
  • codingstyle-2.1.0

    Mar 19, 2021
  • codingstyle-2.0.6

    Feb 23, 2021
  • codingstyle-2.0.5

    Feb 22, 2021
  • codingstyle-2.0.4

    Feb 21, 2021
  • codingstyle-2.0.2

    Feb 19, 2021
  • codingstyle-2.0.1

    Feb 17, 2021
  • codingstyle-2.0.0

    Feb 15, 2021
  • codingstyle-1.6.0

    Sep 16, 2020
  • codingstyle-1.5.0

    Sep 01, 2020
  • codingstyle-1.4.0

    Aug 23, 2020
  • codingstyle-1.3.0

    Aug 21, 2020
  • codingstyle-1.2.0

    Aug 19, 2020
  • codingstyle-1.1.0

    Apr 15, 2020
  • codingstyle-1.0.2

    Mar 02, 2020
  • codingstyle-1.0.1

    Feb 28, 2020
  • codingstyle-1.0.0

    Feb 20, 2020
  • codingstyle-0.4.5

    Feb 13, 2020
  • codingstyle-0.4.4

    Feb 08, 2020
  • codingstyle-0.4.3

    Feb 08, 2020
  • codingstyle-0.4.2

    Feb 07, 2020
  • codingstyle-0.4.1

    Feb 06, 2020
  • codingstyle-0.4.0

    Feb 06, 2020
  • codingstyle-0.3.3

    Feb 02, 2020
  • codingstyle-0.3.2

    Jan 14, 2020
  • codingstyle-0.3.1

    Dec 17, 2019
  • codingstyle-0.3.0

    Nov 30, 2019
  • codingstyle-0.2.7

    Nov 18, 2019

How to add a dependency to Maven

Add the following edu.hm.hafner : codingstyle maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>edu.hm.hafner</groupId>
    <artifactId>codingstyle</artifactId>
    <version>3.14.0</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following edu.hm.hafner : codingstyle gradle dependency to your build.gradle file:

implementation 'edu.hm.hafner:codingstyle:3.14.0'

Gradle Kotlin DSL: Add the following edu.hm.hafner : codingstyle gradle kotlin dependency to your build.gradle.kts file:

implementation("edu.hm.hafner:codingstyle:3.14.0")

How to add a dependency to SBT Scala

SBT Scala: Add the following edu.hm.hafner : codingstyle sbt scala dependency to your build.sbt file:

libraryDependencies += "edu.hm.hafner" % "codingstyle" % "3.14.0"