MVN

net.sf.qualitycheck : quality-check

Maven & Gradle

Aug 01, 2013
14 usages
7 stars

Quality-Check · The goal of quality-check is to provide a small Java library for basic runtime code quality checks. It provides similar features to org.springframework.util.Assert or com.google.common.base.Preconditions without the need to include big libraries or frameworks such as Spring or Guava. The package quality-check tries to replace these libraries and provide all the basic code quality checks you need. The checks provided here are typically used to validate method parameters and detect errors during runtime. To detect errors before runtime we use JSR-305 Annotations. With these annotations you are able to detect possible bugs earlier. For more informations look at FindBugs™ JSR-305 support.

<dependency>
    <groupId>net.sf.qualitycheck</groupId>
    <artifactId>quality-check</artifactId>
    <version>1.3</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of net.sf.qualitycheck : quality-check to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.3
  • Latest Release Candidate: 1.0-RC1

All Versions

Choose a version of net.sf.qualitycheck : quality-check to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.3
quality-check-1.3
1.2
quality-check-1.2
1.1
quality-check-1.1
1.0
quality-check-1.0
quality-check-1.0-RC1
0.10
quality-check-0.10
0.9
quality-check-0.9

How to add a dependency to Maven

Add the following net.sf.qualitycheck : quality-check maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>net.sf.qualitycheck</groupId>
    <artifactId>quality-check</artifactId>
    <version>1.3</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following net.sf.qualitycheck : quality-check gradle dependency to your build.gradle file:

implementation 'net.sf.qualitycheck:quality-check:1.3'

Gradle Kotlin DSL: Add the following net.sf.qualitycheck : quality-check gradle kotlin dependency to your build.gradle.kts file:

implementation("net.sf.qualitycheck:quality-check:1.3")

How to add a dependency to SBT Scala

SBT Scala: Add the following net.sf.qualitycheck : quality-check sbt scala dependency to your build.sbt file:

libraryDependencies += "net.sf.qualitycheck" % "quality-check" % "1.3"

Advertisement