trisquel-icecat/icecat/mobile/android/android-components/components/tooling/detekt/build.gradle
2025-10-06 02:35:48 -06:00

28 lines
905 B
Groovy

/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
apply plugin: 'java-library'
apply plugin: 'kotlin'
dependencies {
implementation libs.tools.detekt.api
testImplementation libs.junit.vintage
testImplementation libs.tools.detekt.api
testImplementation libs.tools.detekt.test
}
tasks.register("lintRelease") {
doLast {
// Do nothing. We execute the same set of tasks for all our modules in parallel on taskcluster.
// This project doesn't have a lint task.
}
}
tasks.register("assembleAndroidTest") {
doLast {
// Do nothing. Like the `lint` task above this is just a dummy task so that this module
// behaves like our others and we do not need to special case it in automation.
}
}