搜索Gradle插件

tech.sarahgallitz.nitrogen-plugin

用于Android的测试运行器,允许针对JVM或设备。该项目处于alpha版本,尚不可用。请稍后查看!

https://github.com/Sarah-Gallitz/nitrogen-test-runner

源码: https://github.com/Sarah-Gallitz/nitrogen-test-runner

版本 0.0.6(最新版)

0.0.6

创建于2024年4月16日。

用于Android的测试运行器,允许针对JVM或设备。该项目处于alpha版本,尚不可用。请稍后查看!

使用插件DSL

plugins {
  id("tech.sarahgallitz.nitrogen-plugin") version "0.0.6"
}

使用旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("tech.sarahgallitz:nitrogen-plugin:0.0.6")
  }
}

apply(plugin = "tech.sarahgallitz.nitrogen-plugin")

使用插件DSL

plugins {
  id "tech.sarahgallitz.nitrogen-plugin" version "0.0.6"
}

使用旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "tech.sarahgallitz:nitrogen-plugin:0.0.6"
  }
}

apply plugin: "tech.sarahgallitz.nitrogen-plugin"

了解如何将插件应用于子项目