搜索Gradle插件

com.vmlens.interleave

使Java虚拟机(JVM)上多线程单元测试变得简单

https://vmlens.com

源代码: https://github.com/vmlens/vmlens

版本 1.1.5 (最新)

1.1.5

创建于2020年12月30日。

使Java虚拟机(JVM)上多线程单元测试变得简单

使用插件 DSL

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

使用旧插件应用程序

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

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

使用插件 DSL

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

使用旧插件应用程序

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

apply plugin: "com.vmlens.interleave"

了解如何将插件应用到子项目中