Search Gradle plugins

Version 0.2.0-SNAPSHOT

Created 15 February 2016.

Gradle plugin for building application package with newrelic configuration.

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects