Search Gradle plugins

Version 2.0.841

2.0.841

Created 04 November 2021.

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.0.841"
}

See also:

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