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)
Created 18 February 2023.
Package tests and run tests in jars.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.robothy.test-jar") version "2023.4"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("com.robothy.test-jar:com.robothy.test-jar.gradle.plugin:2023.4") }
It can then be applied in the precompiled script plugin:plugins { id("com.robothy.test-jar") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.robothy.test-jar:com.robothy.test-jar.gradle.plugin:2023.4") } } apply(plugin = "com.robothy.test-jar")
- Applying plugins to all subprojects .