Search Gradle plugins

Version 2.0.699

Created 07 October 2021.

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "io.specgen.gradle"

Learn how to apply plugins to subprojects