tech.sarahgallitz.nitrogen-plugin
Owner: Sarah-Jane Gallitz
A test runner for android that allows targeting JVM or Device. This project is in alpha and not ready for use. Check back soon!
https://github.com/Sarah-Gallitz/nitrogen-test-runner
Sources: https://github.com/Sarah-Gallitz/nitrogen-test-runner
Version 0.0.6 (latest)
0.0.6
Created 16 April 2024.
A test runner for android that allows targeting JVM or Device.
This project is in alpha and not ready for use. Check back soon!
Using the plugins DSL:
plugins {
id("tech.sarahgallitz.nitrogen-plugin") version "0.0.6"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("tech.sarahgallitz:nitrogen-plugin:0.0.6")
}
}
apply(plugin = "tech.sarahgallitz.nitrogen-plugin")
Using the plugins DSL:
plugins {
id "tech.sarahgallitz.nitrogen-plugin" version "0.0.6"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "tech.sarahgallitz:nitrogen-plugin:0.0.6"
}
}
apply plugin: "tech.sarahgallitz.nitrogen-plugin"