搜索 Gradle 插件

版本 1.0-beta1(最新版)

1.0-beta1

创建于 2020年5月9日。

上传结果到 nan 服务器!

使用 插件 DSL

plugins {
  id("org.evera.nan.reporter") version "1.0-beta1"
}

使用 旧版插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.org.evera.nan:reporter:1.0-beta1")
  }
}

apply(plugin = "org.evera.nan.reporter")

使用 插件 DSL

plugins {
  id "org.evera.nan.reporter" version "1.0-beta1"
}

使用 旧版插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.org.evera.nan:reporter:1.0-beta1"
  }
}

apply plugin: "org.evera.nan.reporter"

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