Skip to content

Latest commit

 

History

History
72 lines (57 loc) · 1.44 KB

gradletask.md

File metadata and controls

72 lines (57 loc) · 1.44 KB
title keywords sidebar permalink folder summary sidebar_position
Run detekt using Gradle Task
gradle
task
gradletask.html
gettingstarted
3
  1. Add following lines to your build.gradle file.
  2. Run gradle detekt
Groovy DSL
repositories {
    mavenCentral()
}

configurations {
	detekt
}

def detektTask = tasks.register("detekt", JavaExec) {
	main = "io.gitlab.arturbosch.detekt.cli.Main"
	classpath = configurations.detekt

	def input = "$projectDir"
	def config = "$projectDir/detekt.yml"
	def exclude = ".*/build/.*,.*/resources/.*"
	def params = [ '-i', input, '-c', config, '-ex', exclude]

	args(params)
}

dependencies {
	detekt 'io.gitlab.arturbosch.detekt:detekt-cli:[detekt_version]'
}

// Remove this line if you don't want to run detekt on every build
check.dependsOn detektTask
Kotlin DSL
repositories {
    mavenCentral()
}

val detekt by configurations.creating

val detektTask = tasks.register<JavaExec>("detekt") {
    main = "io.gitlab.arturbosch.detekt.cli.Main"
    classpath = detekt

    val input = projectDir
    val config = "$projectDir/detekt.yml"
    val exclude = ".*/build/.*,.*/resources/.*"
    val params = listOf("-i", input, "-c", config, "-ex", exclude)

    args(params)
}

dependencies {
    detekt("io.gitlab.arturbosch.detekt:detekt-cli:[detekt_version])
}

// Remove this block if you don't want to run detekt on every build
tasks.check {
    dependsOn(detektTask)
}