com.vmlens.interleave
Owner: Thomas Krieger
unit-testing multi-threaded applications on the JVM made easy
Sources: https://github.com/vmlens/vmlens
Version 1.1.5 (latest)
1.1.5
Created 30 December 2020.
unit-testing multi-threaded applications on the JVM made easy
Using the plugins DSL:
plugins {
id("com.vmlens.interleave") version "1.1.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.vmlens:gradle-plugin:1.1.5")
}
}
apply(plugin = "com.vmlens.interleave")
Using the plugins DSL:
plugins {
id "com.vmlens.interleave" version "1.1.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.vmlens:gradle-plugin:1.1.5"
}
}
apply plugin: "com.vmlens.interleave"