org.kordamp.gradle.properties
Owner: Andres Almiray
Additional System/Project property sources
https://github.com/kordamp/kordamp-gradle-plugins
Sources: https://github.com/kordamp/kordamp-gradle-plugins
Version 0.54.0 (latest)
Created 26 December 2023.
Additional System/Project property sources
Add this plugin to your build using the plugins DSL:
plugins {
id("org.kordamp.gradle.properties") version "0.54.0"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("org.kordamp.gradle.properties:org.kordamp.gradle.properties.gradle.plugin:0.54.0") }
It can then be applied in the precompiled script plugin:plugins { id("org.kordamp.gradle.properties") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.kordamp.gradle.properties:org.kordamp.gradle.properties.gradle.plugin:0.54.0") } } apply(plugin = "org.kordamp.gradle.properties")
- Applying plugins to all subprojects .