搜索Gradle插件

版本 3.0.0 (最新版)

3.0.0

创建于 2018年10月28日

构建完成后在桌面上显示通知的插件

使用 插件DSL

plugins {
  id("fr.jcgay.gradle-notifier") version "3.0.0"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.fr.jcgay:gradle-notifier:3.0.0")
  }
}

apply(plugin = "fr.jcgay.gradle-notifier")

使用 插件DSL

plugins {
  id "fr.jcgay.gradle-notifier" version "3.0.0"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.fr.jcgay:gradle-notifier:3.0.0"
  }
}

apply plugin: "fr.jcgay.gradle-notifier"

了解如何将插件应用于子项目