pub.ihub.plugin.ihub-aware
Owner: henry li
IHub Gradle Plugins Aware
https://github.com/ihub-pub/plugins
Sources: https://github.com/ihub-pub/plugins.git
Version 1.3.0-m5 (latest)
1.3.0-m5
Created 26 January 2023.
IHub Gradle Plugins Aware
Using the plugins DSL:
plugins {
id("pub.ihub.plugin.ihub-aware") version "1.3.0-m5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("pub.ihub.plugin:ihub-aware:1.3.0-m5")
}
}
apply(plugin = "pub.ihub.plugin.ihub-aware")
Using the plugins DSL:
plugins {
id "pub.ihub.plugin.ihub-aware" version "1.3.0-m5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "pub.ihub.plugin:ihub-aware:1.3.0-m5"
}
}
apply plugin: "pub.ihub.plugin.ihub-aware"