搜索 Gradle 插件

版本 0.2.0 (最新)

0.2.0

创建于 2016 年 2 月 15 日。

支持使用 newrelic 配置构建应用程序包的 Gradle 插件。

使用 plugins DSL

plugins {
  id("pl.allegro.tech.build.newrelic-gradle-plugin") version "0.2.0"
}

使用 旧式插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("pl.allegro.tech.build:newrelic-gradle-plugin:0.2.0")
  }
}

apply(plugin = "pl.allegro.tech.build.newrelic-gradle-plugin")

使用 plugins DSL

plugins {
  id "pl.allegro.tech.build.newrelic-gradle-plugin" version "0.2.0"
}

使用 旧式插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "pl.allegro.tech.build:newrelic-gradle-plugin:0.2.0"
  }
}

apply plugin: "pl.allegro.tech.build.newrelic-gradle-plugin"

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