Search Gradle plugins

Version 3.4.2 (latest)

3.4.2

Created 25 November 2024.

A Plugin that configures integration tests infrastructure

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.scalified.plugins.gradle.it") version "3.4.2"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.scalified:it:3.4.2")
      }
    }
    
    apply(plugin = "com.scalified.plugins.gradle.it")
  • Applying plugins to all subprojects .