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.1.0-dev0k-0c7a3f9
0.1.0-dev0k-0c7a3f9
Created 10 November 2021.
This gradle plugin runs the test suit with multiple versions of the Java Virtual Machine
Using the plugins DSL:
plugins {
id("org.danilopianini.multi-jvm-test-plugin") version "0.1.0-dev0k-0c7a3f9"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.danilopianini:multi-jvm-test-plugin:0.1.0-dev0k-0c7a3f9")
}
}
apply(plugin = "org.danilopianini.multi-jvm-test-plugin")
Using the plugins DSL:
plugins {
id "org.danilopianini.multi-jvm-test-plugin" version "0.1.0-dev0k-0c7a3f9"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.danilopianini:multi-jvm-test-plugin:0.1.0-dev0k-0c7a3f9"
}
}
apply plugin: "org.danilopianini.multi-jvm-test-plugin"