Search Gradle plugins

Version 1.0-beta1 (latest)

Created 09 May 2020.

To upload results to nan server !

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects