Search Gradle plugins

Version 0.0.6 (latest)

0.0.6

Created 12 January 2021.

Configurable project options management

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.carrotsearch.gradle.opts") version "0.0.6"
}

See also:

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