Search Gradle plugins

nebula.integtest

Adds source set and task for running integration tests separately from unit tests

https://github.com/nebula-plugins/nebula-project-plugin

Sources: https://github.com/nebula-plugins/nebula-project-plugin.git

Add this plugin to your build using the plugins DSL:

plugins {
  id("nebula.integtest") version "3.0.3"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.netflix.nebula:nebula-project-plugin:3.0.3")
      }
    }
    
    apply(plugin = "nebula.integtest")
  • Applying plugins to all subprojects .