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.1 (latest)
Created 19 May 2023.
A test runner for android that allows targeting JVM or Device.
This project is in alpha and not ready for use. Check back soon!
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.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("tech.sarahgallitz:nitrogen-plugin:0.0.1")
}
}
apply(plugin = "tech.sarahgallitz.nitrogen-plugin")
Using the plugins DSL:
plugins {
id "tech.sarahgallitz.nitrogen-plugin" version "0.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "tech.sarahgallitz:nitrogen-plugin:0.0.1"
}
}
apply plugin: "tech.sarahgallitz.nitrogen-plugin"