Search Gradle plugins

Version 0.1.0

Created 26 May 2015.

Gradle plugin for building application package with newrelic configuration.

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects