Search Gradle plugins

com.softeq.gradle.itest

Owner: Drabenia

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/

Version 1.0.4 (latest)

Created 29 October 2019.


Integration testing plugin for the Gradle. It allow in simple way to add and execute
integration tests in the Java project.

Using the plugins DSL:

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

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.4")
  }
}

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects