Search Gradle plugins

Version v1.0.1

Created 07 September 2022.

An application property generator framework that validates your property values on runtime. NOTE: Versioning strategy prefixed with v is deprecated, please use the non-prefixed versions.

Using the plugins DSL:

plugins {
  id("io.github.propactive") version "v1.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.propactive:propactive-plugin:v1.0.1")
  }
}

apply(plugin = "io.github.propactive")

Using the plugins DSL:

plugins {
  id "io.github.propactive" version "v1.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.propactive:propactive-plugin:v1.0.1"
  }
}

apply plugin: "io.github.propactive"

Learn how to apply plugins to subprojects