com.github.daniel0611.chatoverflow
Owner: Daniel Huber
A plugin to enable development of ChatOverflow plugins with Gradle
https://github.com/daniel0611/gradle-chatoverflow-plugin
Sources: https://github.com/daniel0611/gradle-chatoverflow-plugin.git
Version 0.1 (latest)
0.1
Created 03 September 2019.
A plugin to enable development of ChatOverflow plugins with Gradle
Using the plugins DSL:
plugins {
id("com.github.daniel0611.chatoverflow") version "0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.daniel0611:gradle-chatoverflow-plugin:0.1")
}
}
apply(plugin = "com.github.daniel0611.chatoverflow")
Using the plugins DSL:
plugins {
id "com.github.daniel0611.chatoverflow" version "0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.daniel0611:gradle-chatoverflow-plugin:0.1"
}
}
apply plugin: "com.github.daniel0611.chatoverflow"