搜索 Gradle 插件

com.softeq.gradle.itest

所有者: Tst

Gradle 的集成测试插件。它允许以简单的方式将集成测试添加并执行到 Java 项目中。https://softeq.github.io/itest-gradle-plugin/'

https://softeq.github.io/itest-gradle-plugin/

来源: https://github.com/Softeq/itest-gradle-plugin

版本 1.0.4(最新版)

1.0.4

创建于 2019 年 10 月 29 日。

Gradle 的集成测试插件。它允许以简单的方式将集成测试添加并执行到 Java 项目中。

使用 插件 DSL

plugins {
  id("com.softeq.gradle.itest") version "1.0.4"
}

使用 旧插件应用程序

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

apply(plugin = "com.softeq.gradle.itest")

使用 插件 DSL

plugins {
  id "com.softeq.gradle.itest" version "1.0.4"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.softeq.gradle.itest:itest.gradle.plugin:1.0.4"
  }
}

apply plugin: "com.softeq.gradle.itest"

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