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.

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.yahorbarkouski.todome:todome-plugin:1.0.3")
  }
}

apply(plugin = "com.yahorbarkouski.todome")

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.yahorbarkouski.todome:todome-plugin:1.0.3"
  }
}

apply plugin: "com.yahorbarkouski.todome"

Learn how to apply plugins to subprojects