Groovy Documentation

org.ajoberstar.gradle.findbugs
[Groovy] Class FindbugsConvention

java.lang.Object
  org.ajoberstar.gradle.findbugs.FindbugsConvention

class FindbugsConvention
extends java.lang.Object

Convention specifying defaults for the Findbugs plugin.

Authors:
Andrew Oberstar
Version:
0.1.0
See Also:
FindbugsPlugin
Since:
0.1.0


Property Summary
java.lang.String resultsDirName

The name of the directory to use for Findbugs results.

 
Constructor Summary
FindbugsConvention(org.gradle.api.Project project)

Creates a convention instance tied to the specified project.

 
Method Summary
java.io.File getResultsDir()

Gets the directory to be used for Findbugs results.

 
Methods inherited from class java.lang.Object
java.lang.Object#wait(long), java.lang.Object#wait(long, int), java.lang.Object#wait(), java.lang.Object#equals(java.lang.Object), java.lang.Object#toString(), java.lang.Object#hashCode(), java.lang.Object#getClass(), java.lang.Object#notify(), java.lang.Object#notifyAll()
 

Property Detail

resultsDirName

java.lang.String resultsDirName
The name of the directory to use for Findbugs results.


 
Constructor Detail

FindbugsConvention

FindbugsConvention(org.gradle.api.Project project)
Creates a convention instance tied to the specified project. Defaults the resultsDirName to "findbugs"
Parameters:
project


 
Method Detail

getResultsDir

java.io.File getResultsDir()
Gets the directory to be used for Findbugs results. This is determined using the resultsDirName property, evaluated relative to the project's build directory.
Returns:
the results dir for Findbugs


 

Groovy Documentation