Search Gradle plugins

com.vmlens.interleave

unit-testing multi-threaded applications on the JVM made easy

https://vmlens.com

Sources: https://github.com/vmlens/vmlens

Version 1.1.3

Created 24 November 2020.

unit-testing multi-threaded applications on the JVM made easy

Using the plugins DSL:

plugins {
  id("com.vmlens.interleave") version "1.1.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.vmlens:gradle-plugin:1.1.3")
  }
}

apply(plugin = "com.vmlens.interleave")

Using the plugins DSL:

plugins {
  id "com.vmlens.interleave" version "1.1.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.vmlens:gradle-plugin:1.1.3"
  }
}

apply plugin: "com.vmlens.interleave"

Learn how to apply plugins to subprojects