Search Gradle plugins

Version 0.2.0-beta (latest)

Created 15 March 2020.

Manage build parameters from a *.property file or an environment variables

Using the plugins DSL:

plugins {
  id("com.guidovezzoni.hyperprop") version "0.2.0-beta"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.guidovezzoni.hyperprop:hyper-properties:0.2.0-beta")
  }
}

apply(plugin = "com.guidovezzoni.hyperprop")

Using the plugins DSL:

plugins {
  id "com.guidovezzoni.hyperprop" version "0.2.0-beta"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.guidovezzoni.hyperprop:hyper-properties:0.2.0-beta"
  }
}

apply plugin: "com.guidovezzoni.hyperprop"

Learn how to apply plugins to subprojects