io.specgen.gradle
Owner: Specgen Automation
A plugin that integrates specgen tool into the Gradle build process.
https://github.com/specgen-io/specgen
Sources: https://github.com/specgen-io/specgen.git
Version 2.1.1214
Created 05 January 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.1214"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("io.specgen.gradle:io.specgen.gradle.gradle.plugin:2.1.1214") }
It can then be applied in the precompiled script plugin:plugins { id("io.specgen.gradle") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.specgen.gradle:io.specgen.gradle.gradle.plugin:2.1.1214") } } apply(plugin = "io.specgen.gradle")
- Applying plugins to all subprojects .