Search Gradle plugins

Version 0.1.0 (latest)

Created 22 December 2022.

This plugin brings the ability to execute Cukedoctor during the gradle build.

Using the plugins DSL:

plugins {
  id("io.datapith.cukedoctor") version "0.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.datapith.plugins:cukedoctor:0.1.0")
  }
}

apply(plugin = "io.datapith.cukedoctor")

Using the plugins DSL:

plugins {
  id "io.datapith.cukedoctor" version "0.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.datapith.plugins:cukedoctor:0.1.0"
  }
}

apply plugin: "io.datapith.cukedoctor"

Learn how to apply plugins to subprojects