Search Gradle plugins

com.ferusgrim.gradletodo

Gradle plugin simply designed to show comments in your source marked as TODO.

http://www.ferusgrim.com

Sources: https://github.com/ferusgrim/gradletodo/

Version 1.0.7 (latest)

Created 07 March 2017.

Gradle plugin simply designed to show comments in your source marked as TODO.

Using the plugins DSL:

plugins {
  id("com.ferusgrim.gradletodo") version "1.0.7"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.ferusgrim:GradleTodo:1.0.7")
  }
}

apply(plugin = "com.ferusgrim.gradletodo")

Using the plugins DSL:

plugins {
  id "com.ferusgrim.gradletodo" version "1.0.7"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.ferusgrim:GradleTodo:1.0.7"
  }
}

apply plugin: "com.ferusgrim.gradletodo"

Learn how to apply plugins to subprojects