Download quality-check-1.3.jar file - Jar q

Jar examples for q:quality-check

Description

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.

You can download jar file quality-check 1.3 in this page.

License

The Apache Software License, Version 2.0

Build File

You can use the following script to add quality-check-1.3.jar to your project.

<dependency>
   <groupId>net.sf.qualitycheck</groupId>
   <artifactId>quality-check</artifactId>
   <version>1.3</version>
</dependency>
compile group: 'net.sf.qualitycheck', name: 'quality-check', version: '1.3'
libraryDependencies += "net.sf.qualitycheck" % "quality-check" % "1.3"
<dependency org="net.sf.qualitycheck" name="quality-check" rev="1.3"/>
@Grapes(@Grab(group='net.sf.qualitycheck', module='quality-check', version='1.3'))
'net.sf.qualitycheck:quality-check:jar:1.3'

Download

Click the following link to download the jar file.

quality-check-1.3-javadoc.jar
quality-check-1.3-sources.jar
quality-check-1.3.jar
quality-check-1.3.pom



Related Tutorials