com.github.ishestakov.carnotzet
Owner: Illia Shestakov
The Gradle version of Carnotzet.
https://github.com/ishestakov/gradle-carnotzet-plugin
Sources: https://github.com/ishestakov/gradle-carnotzet-plugin.git
Version 0.0.2 (latest)
0.0.2
Created 11 June 2017.
The Gradle version of Carnotzet.
Using the plugins DSL:
plugins {
id("com.github.ishestakov.carnotzet") version "0.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.ishestakov:impl:0.0.2")
}
}
apply(plugin = "com.github.ishestakov.carnotzet")
Using the plugins DSL:
plugins {
id "com.github.ishestakov.carnotzet" version "0.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.ishestakov:impl:0.0.2"
}
}
apply plugin: "com.github.ishestakov.carnotzet"