io.github.propactive
Owner: uways eid
An application property generator framework that validates your property values on runtime.
https://github.com/propactive/propactive/blob/main/README.md
Sources: https://github.com/u-ways/propactive.git
Version 1.1.3
1.1.3
Created 12 October 2022.
An application property generator framework that validates your property values on runtime.
Using the plugins DSL:
plugins {
id("io.github.propactive") version "1.1.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.propactive:propactive-plugin:1.1.3")
}
}
apply(plugin = "io.github.propactive")
Using the plugins DSL:
plugins {
id "io.github.propactive" version "1.1.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.propactive:propactive-plugin:1.1.3"
}
}
apply plugin: "io.github.propactive"