Search Gradle plugins

Version 2.1.1700

2.1.1700

Created 06 June 2022.

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

Add this plugin to your build using the plugins DSL:

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

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.specgen:specgen-gradle-plugin:2.1.1700")
      }
    }
    
    apply(plugin = "io.specgen.gradle")
  • Applying plugins to all subprojects .