com.github.olaleyeone
Owner: Olaleye Afolabi
Ninjaframework standalone runner
Sources: https://github.com/olaleyeone/ninja-run
Using the plugins DSL:
plugins {
id("com.github.olaleyeone") version "0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.olaleyeone:ninja-run:0.2")
}
}
apply(plugin = "com.github.olaleyeone")
Using the plugins DSL:
plugins {
id "com.github.olaleyeone" version "0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.olaleyeone:ninja-run:0.2"
}
}
apply plugin: "com.github.olaleyeone"