Search Gradle plugins

com.github.thahnen.runtestsseparatejvm

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.5

Created 09 September 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.5"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.github.thahnen:RunTestsSeparateJVMPlugin:1.0.5")
  }
}

apply(plugin = "com.github.thahnen.runtestsseparatejvm")

Using the plugins DSL:

plugins {
  id "com.github.thahnen.runtestsseparatejvm" version "1.0.5"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.github.thahnen:RunTestsSeparateJVMPlugin:1.0.5"
  }
}

apply plugin: "com.github.thahnen.runtestsseparatejvm"

Learn how to apply plugins to subprojects