Search Gradle plugins

com.yahorbarkouski.todome

Gradle plugin for those who mean business. No more optional TODOs. No more forgotten tasks. ToDoMe enforces due dates on every TODO and fails your build if you miss them. Code with conviction. Meet your deadlines. Keep your promises.

https://github.com/yahorbarkouski/todome

Sources: https://github.com/yahorbarkouski/todome

Version 1.0.3 (latest)

Created 16 May 2023.

Gradle plugin for those who mean business. No more optional TODOs. No more forgotten tasks. ToDoMe enforces due dates on every TODO and fails your build if you miss them. Code with conviction. Meet your deadlines. Keep your promises.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.yahorbarkouski.todome") version "1.0.3"
}

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("com.yahorbarkouski.todome:com.yahorbarkouski.todome.gradle.plugin:1.0.3")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.yahorbarkouski.todome")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.yahorbarkouski.todome:com.yahorbarkouski.todome.gradle.plugin:1.0.3")
      }
    }
    
    apply(plugin = "com.yahorbarkouski.todome")
  • Applying plugins to all subprojects .