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.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.

Add this plugin to your build using the plugins DSL:

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

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("com.softeq.gradle.itest:com.softeq.gradle.itest.gradle.plugin:1.0.4")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.softeq.gradle.itest")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.softeq.gradle.itest:com.softeq.gradle.itest.gradle.plugin:1.0.4")
      }
    }
    
    apply(plugin = "com.softeq.gradle.itest")
  • Applying plugins to all subprojects .