Search Gradle plugins

com.softeq.gradle.itest

Owner: Tst

Integration testing plugin for the Gradle. It allow in simple way to add and execute integration tests in the Java project. https://softeq.github.io/itest-gradle-plugin/'

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

Sources: https://github.com/Softeq/itest-gradle-plugin

Version 1.0.1

Created 28 October 2019.


Integration testing plugin for the Gradle. It allow in simple way to add and execute integration
tests in the Java project. https://softeq.github.io/itest-gradle-plugin/'

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects