Chapter 58. The CodeNarc Plugin

Table of Contents

58.1. Usage
58.2. Tasks
58.3. Project layout
58.4. Dependency management
58.5. Configuration

The CodeNarc plugin performs quality checks on your project's Groovy source files using CodeNarc and generates reports from these checks.

58.1. Usage

To use the CodeNarc plugin, include the following in your build script:

Example 58.1. Using the CodeNarc plugin

build.gradle

apply plugin: 'codenarc'

The plugin adds a number of tasks to the project that perform the quality checks. You can execute the checks by running gradle check.

58.2. Tasks

The CodeNarc plugin adds the following tasks to the project:

Table 58.1. CodeNarc plugin - tasks

Task name Depends on Type Description
codenarcMain - CodeNarc Runs CodeNarc against the production Groovy source files.
codenarcTest - CodeNarc Runs CodeNarc against the test Groovy source files.
codenarcSourceSet - CodeNarc Runs CodeNarc against the given source set's Groovy source files.

The CodeNarc plugin adds the following dependencies to tasks defined by the Groovy plugin.

Table 58.2. CodeNarc plugin - additional task dependencies

Task nameDepends on
check All CodeNarc tasks, including codenarcMain and codenarcTest.

58.3. Project layout

The CodeNarc plugin expects the following project layout:

Table 58.3. CodeNarc plugin - project layout

File Meaning
config/codenarc/codenarc.xml CodeNarc configuration file

58.4. Dependency management

The CodeNarc plugin adds the following dependency configurations:

Table 58.4. CodeNarc plugin - dependency configurations

Name Meaning
codenarc The CodeNarc libraries to use

58.5. Configuration

See the CodeNarcExtension class in the API documentation.