com.techshroom.incise-blue
Owner: Octavia Togami
TechShroom's own build plugin. Extremely biased towards internal desires.
Sources: https://github.com/TechShroom/incise-blue
Version 0.5.7 (latest)
0.5.7
Created 16 February 2020.
TechShroom's own build plugin. Extremely biased towards internal desires.
Using the plugins DSL:
plugins {
id("com.techshroom.incise-blue") version "0.5.7"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.techshroom:incise-blue:0.5.7")
}
}
apply(plugin = "com.techshroom.incise-blue")
Using the plugins DSL:
plugins {
id "com.techshroom.incise-blue" version "0.5.7"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.techshroom:incise-blue:0.5.7"
}
}
apply plugin: "com.techshroom.incise-blue"