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 3.0.1
Created 16 December 2024.
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 "3.0.1"
}
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:3.0.1") }
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:3.0.1") } } apply(plugin = "org.danilopianini.multi-jvm-test-plugin")
- Applying plugins to all subprojects .