pub.ihub.plugin.ihub-shadow
Owner: henry li
IHub Shadow Gradle Plugin
https://github.com/ihub-pub/plugins
Sources: https://github.com/ihub-pub/plugins.git
Using the plugins DSL:
plugins {
id("pub.ihub.plugin.ihub-shadow") version "1.6.7"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("pub.ihub.plugin:ihub-shadow:1.6.7")
}
}
apply(plugin = "pub.ihub.plugin.ihub-shadow")
Using the plugins DSL:
plugins {
id "pub.ihub.plugin.ihub-shadow" version "1.6.7"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "pub.ihub.plugin:ihub-shadow:1.6.7"
}
}
apply plugin: "pub.ihub.plugin.ihub-shadow"