com.github.rsavin.gradle.microwave
所有者: Roman Savin
一个通知构建任务结束的Gradle插件。
https://github.com/rsavin/microwave-gradle-plugin
源代码: https://github.com/rsavin/microwave-gradle-plugin
版本 1.0.0(最新版)
1.0.0
创建于2015年9月25日。
一个通知构建任务结束的Gradle插件。
使用插件DSL
plugins {
id("com.github.rsavin.gradle.microwave") version "1.0.0"
}
使用传统插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.rsavin.gradle:gradle-microwave:1.0.0")
}
}
apply(plugin = "com.github.rsavin.gradle.microwave")
使用插件DSL
plugins {
id "com.github.rsavin.gradle.microwave" version "1.0.0"
}
使用传统插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.rsavin.gradle:gradle-microwave:1.0.0"
}
}
apply plugin: "com.github.rsavin.gradle.microwave"