com.github.ngyewch.capsule
Owner: Nick Ng
Gradle plugin for Capsule.
https://github.com/ngyewch/gradle-capsule-plugin
Sources: https://github.com/ngyewch/gradle-capsule-plugin.git
Using the plugins DSL:
plugins {
id("com.github.ngyewch.capsule") version "0.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.ngyewch.gradle:gradle-capsule-plugin:0.2.0")
}
}
apply(plugin = "com.github.ngyewch.capsule")
Using the plugins DSL:
plugins {
id "com.github.ngyewch.capsule" version "0.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.ngyewch.gradle:gradle-capsule-plugin:0.2.0"
}
}
apply plugin: "com.github.ngyewch.capsule"