Search Gradle plugins

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.tngtech.jgiven.gradle-plugin") version "0.14.0-RC1"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.com.tngtech.jgiven:jgiven-gradle-plugin:0.14.0-RC1")
      }
    }
    
    apply(plugin = "com.tngtech.jgiven.gradle-plugin")
  • Applying plugins to all subprojects .