co.hinge.gradle.project-accessors
Owner: Hinge, Inc.
A Gradle plugin that can generate type safe project accessors for included builds.
https://github.com/Hinge/project-accessors
Sources: https://github.com/Hinge/project-accessors
Version 1.2.0 (latest)
Created 12 November 2024.
A Gradle plugin that can generate type safe project accessors for included builds.
Add this plugin to your build using the plugins DSL:
plugins {
id("co.hinge.gradle.project-accessors") version "1.2.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("co.hinge.gradle.project-accessors:co.hinge.gradle.project-accessors.gradle.plugin:1.2.0") }
It can then be applied in the precompiled script plugin:plugins { id("co.hinge.gradle.project-accessors") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("co.hinge.gradle.project-accessors:co.hinge.gradle.project-accessors.gradle.plugin:1.2.0") } } apply(plugin = "co.hinge.gradle.project-accessors")
- Applying plugins to all subprojects .