Search Gradle plugins

Version 1.0-SNAPSHOT (latest)

Created 12 April 2020.

A plugin that helps you test your Date

Using the plugins DSL:

plugins {
  id("info.plugin.showdate") version "1.0-SNAPSHOT"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("info.garagesalesapp:show-date-groovy:1.0-SNAPSHOT")
  }
}

apply(plugin = "info.plugin.showdate")

Using the plugins DSL:

plugins {
  id "info.plugin.showdate" version "1.0-SNAPSHOT"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "info.garagesalesapp:show-date-groovy:1.0-SNAPSHOT"
  }
}

apply plugin: "info.plugin.showdate"

Learn how to apply plugins to subprojects