org.danilopianini.multi-jvm-test-plugin
Owner: Danilo Pianini
This gradle plugin runs the test suit with multiple versions of the Java Virtual Machine
https://github.com/DanySK/multi-jvm-test-plugin
Sources: https://github.com/DanySK/multi-jvm-test-plugin
Version 0.2.0-dev04-515514c
Created 19 November 2021.
This gradle plugin runs the test suit with multiple versions of the Java Virtual Machine
Add this plugin to your build using the plugins DSL:
plugins {
id("org.danilopianini.multi-jvm-test-plugin") version "0.2.0-dev04-515514c"
}
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("org.danilopianini.multi-jvm-test-plugin:org.danilopianini.multi-jvm-test-plugin.gradle.plugin:0.2.0-dev04-515514c") }
It can then be applied in the precompiled script plugin:plugins { id("org.danilopianini.multi-jvm-test-plugin") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.danilopianini.multi-jvm-test-plugin:org.danilopianini.multi-jvm-test-plugin.gradle.plugin:0.2.0-dev04-515514c") } } apply(plugin = "org.danilopianini.multi-jvm-test-plugin")
- Applying plugins to all subprojects .