搜索 Gradle 插件

版本 2023.4(最新)

2023.4

创建于 2023 年 2 月 18 日。

将测试打包并运行 jar 文件中的测试。

使用 插件 DSL

plugins {
  id("com.robothy.test-jar") version "2023.4"
}

使用 旧版插件应用程序

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

apply(plugin = "com.robothy.test-jar")

使用 插件 DSL

plugins {
  id "com.robothy.test-jar" version "2023.4"
}

使用 旧版插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.robothy:gradle-test-jar-plugin:2023.4"
  }
}

apply plugin: "com.robothy.test-jar"

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