com.github.thahnen.runtestsseparatejvm
Owner: Tobias Hahnen
A plugin to enable jUnit tests to be executed in a separate JVM (and optional sequential / parallel) for each test class
https://github.com/thahnen/RunTestsSeparateJVMPlugin
Sources: https://github.com/thahnen/RunTestsSeparateJVMPlugin.git
Version 1.0.7
1.0.7
Created 16 November 2021.
A plugin to enable jUnit tests to be executed in a separate JVM (and optional sequential / parallel) for each test class
Using the plugins DSL:
plugins {
id("com.github.thahnen.runtestsseparatejvm") version "1.0.7"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.thahnen:RunTestsSeparateJVMPlugin:1.0.7")
}
}
apply(plugin = "com.github.thahnen.runtestsseparatejvm")
Using the plugins DSL:
plugins {
id "com.github.thahnen.runtestsseparatejvm" version "1.0.7"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.thahnen:RunTestsSeparateJVMPlugin:1.0.7"
}
}
apply plugin: "com.github.thahnen.runtestsseparatejvm"