com.rickbusarow.docusync
Owner: Rick Busarow
the Docusync Gradle plugin
https://www.github.com/rbusarow/docusync
Sources: https://www.github.com/rbusarow/docusync.git
Using the plugins DSL:
plugins {
id("com.rickbusarow.docusync") version "0.1.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.rickbusarow.docusync:docusync-gradle-plugin:0.1.1")
}
}
apply(plugin = "com.rickbusarow.docusync")
Using the plugins DSL:
plugins {
id "com.rickbusarow.docusync" version "0.1.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.rickbusarow.docusync:docusync-gradle-plugin:0.1.1"
}
}
apply plugin: "com.rickbusarow.docusync"