Search Gradle plugins

io.wttech.config

Organizes and captures configurable input values to your Gradle builds using interactive interfaces (GUI/CLI)

https://github.com/wttech/gradle-config-plugin

Sources: https://github.com/wttech/gradle-config-plugin.git

Version 1.0.0

Created 28 October 2022.

Organizes and captures configurable input values to your Gradle builds using interactive interfaces (GUI/CLI)

Using the plugins DSL:

plugins {
  id("io.wttech.config") version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.wttech.gradle.config:plugin:1.0.0")
  }
}

apply(plugin = "io.wttech.config")

Using the plugins DSL:

plugins {
  id "io.wttech.config" version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.wttech.gradle.config:plugin:1.0.0"
  }
}

apply plugin: "io.wttech.config"

Learn how to apply plugins to subprojects