MVN

org.patterntesting : patterntesting-check-ct

Maven & Gradle

Jan 06, 2023
8 usages
1 stars

patterntesting-check-ct · PatternTesting Check.CT (patterntesting-check-ct) is a quality framework that allows to automatically verify that Architecture/Design recommendations are implemented correctly in the code. It provides different checks of known anti patterns (like using System.out for logging) but provides also a test framework for better testing. The checks are done during compile time (this is the "CT" in Check.CT").

<dependency>
    <groupId>org.patterntesting</groupId>
    <artifactId>patterntesting-check-ct</artifactId>
    <version>2.3.0</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of org.patterntesting : patterntesting-check-ct to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 2.3.0

All Versions

Choose a version of org.patterntesting : patterntesting-check-ct to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
2.3.x
patterntesting-check-ct-2.3.0
2.2.x
patterntesting-check-ct-2.2.20-YEARS
patterntesting-check-ct-2.2.0
2.1.x
patterntesting-check-ct-2.1.2
patterntesting-check-ct-2.1.1
patterntesting-check-ct-2.1.0
2.0.x
patterntesting-check-ct-2.0.2
patterntesting-check-ct-2.0.1
patterntesting-check-ct-2.0.0
1.8.x
patterntesting-check-ct-1.8.0
1.7.x
patterntesting-check-ct-1.7.2
patterntesting-check-ct-1.7.1
patterntesting-check-ct-1.7.0
1.6.x
patterntesting-check-ct-1.6.3
patterntesting-check-ct-1.6.2
patterntesting-check-ct-1.6.1
patterntesting-check-ct-1.6.0
1.5.x
patterntesting-check-ct-1.5.2
patterntesting-check-ct-1.5.1
patterntesting-check-ct-1.5.0
1.4.x
patterntesting-check-ct-1.4.3
patterntesting-check-ct-1.4.2
patterntesting-check-ct-1.4.1
patterntesting-check-ct-1.4.0
1.3.x
patterntesting-check-ct-1.3.0
1.2.x
patterntesting-check-ct-1.2.20
patterntesting-check-ct-1.2.10-YEARS
patterntesting-check-ct-1.2.0
1.1.x
patterntesting-check-ct-1.1.0
1.0.x
patterntesting-check-ct-1.0.3

How to add a dependency to Maven

Add the following org.patterntesting : patterntesting-check-ct maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>org.patterntesting</groupId>
    <artifactId>patterntesting-check-ct</artifactId>
    <version>2.3.0</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following org.patterntesting : patterntesting-check-ct gradle dependency to your build.gradle file:

implementation 'org.patterntesting:patterntesting-check-ct:2.3.0'

Gradle Kotlin DSL: Add the following org.patterntesting : patterntesting-check-ct gradle kotlin dependency to your build.gradle.kts file:

implementation("org.patterntesting:patterntesting-check-ct:2.3.0")

How to add a dependency to SBT Scala

SBT Scala: Add the following org.patterntesting : patterntesting-check-ct sbt scala dependency to your build.sbt file:

libraryDependencies += "org.patterntesting" % "patterntesting-check-ct" % "2.3.0"

Advertisement