info.garagesalesapp.plugin.show-date-plugin
Owner: Vipin Sahu
A plugin that helps you test your Date
https://github.com/vipinhelloindia/applink
Sources: https://github.com/vipinhelloindia/applink
Version 1.0-SNAPSHOT (latest)
1.0-SNAPSHOT
Created 11 April 2020.
A plugin that helps you test your Date
Using the plugins DSL:
plugins {
id("info.garagesalesapp.plugin.show-date-plugin") 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.garagesalesapp.plugin.show-date-plugin")
Using the plugins DSL:
plugins {
id "info.garagesalesapp.plugin.show-date-plugin" 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.garagesalesapp.plugin.show-date-plugin"