com.robothy.test-jar
Owner: robothy luo
Package tests and run tests in jars.
https://github.com/Robothy/gradle-test-jar-plugin
Sources: https://github.com/Robothy/gradle-test-jar-plugin
Version 2023.4 (latest)
2023.4
Created 18 February 2023.
Package tests and run tests in jars.
Using the plugins DSL:
plugins {
id("com.robothy.test-jar") version "2023.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.robothy:gradle-test-jar-plugin:2023.4")
}
}
apply(plugin = "com.robothy.test-jar")
Using the plugins DSL:
plugins {
id "com.robothy.test-jar" version "2023.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.robothy:gradle-test-jar-plugin:2023.4"
}
}
apply plugin: "com.robothy.test-jar"