The CodeNarc Plugin
The CodeNarc plugin performs quality checks on your project’s Groovy source files using CodeNarc and generates reports from these checks.
Usage
To use the CodeNarc plugin, include the following in your build script:
Groovy
Kotlin
plugins {
id 'codenarc'
}
The plugin adds a number of tasks to the project that perform the quality checks when used with the Groovy Plugin. You can execute the checks by running gradle check
.
Tasks
The CodeNarc plugin adds the following tasks to the project:
Dependencies added to other tasks
The CodeNarc plugin adds the following dependencies to tasks defined by the Groovy plugin.
check
-
Depends on: All CodeNarc tasks, including
codenarcMain
andcodenarcTest
.
Project layout
The CodeNarc plugin expects the following project layout:
<root> └── config └── codenarc // (1) └── codenarc.xml // (2)
-
CodeNarc configuration files go here
-
Primary CodeNarc configuration file
Dependency management
The CodeNarc plugin adds the following dependency configurations:
Name | Meaning |
---|---|
|
The CodeNarc libraries to use |