Search Gradle plugins

Version 2.1.1798 (latest)

Created 04 July 2022.

A plugin that integrates specgen tool into the Gradle build process.

Using the plugins DSL:

plugins {
  id("io.specgen.gradle") version "2.1.1798"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.specgen:specgen-gradle-plugin:2.1.1798")
  }
}

apply(plugin = "io.specgen.gradle")

Using the plugins DSL:

plugins {
  id "io.specgen.gradle" version "2.1.1798"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.specgen:specgen-gradle-plugin:2.1.1798"
  }
}

apply plugin: "io.specgen.gradle"

Learn how to apply plugins to subprojects