ch.ergon.todochecker
Owner:
Ergon Informatik AG
The Plug-In checks the source code for dangling TODO/FIXME-comments that refer to resolved JIRA tickets.
https://github.com/ergon/todo-checker
Sources: https://github.com/ergon/todo-checker
Version 1.0.0 (latest)
Created 18 December 2024.
The Plug-In checks the source code for dangling TODO/FIXME-comments that refer to resolved JIRA tickets.
Add this plugin to your build using the plugins DSL:
plugins {
id("ch.ergon.todochecker") version "1.0.0"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("ch.ergon.todochecker:ch.ergon.todochecker.gradle.plugin:1.0.0") }
It can then be applied in the precompiled script plugin:plugins { id("ch.ergon.todochecker") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("ch.ergon.todochecker:ch.ergon.todochecker.gradle.plugin:1.0.0") } } apply(plugin = "ch.ergon.todochecker")
- Applying plugins to all subprojects .