org.evera.nan.reporter
Owner: Abishek ram
To upload results to nan server !
https://github.com/NotJustANumber
Sources: https://github.com/NotJustANumber/nan-gradle-plugin
Version 1.0-beta1 (latest)
1.0-beta1
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"