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)
1.2.0
Created 12 November 2024.
A Gradle plugin that can generate type safe project accessors for included builds.
Using the plugins DSL:
plugins {
id("co.hinge.gradle.project-accessors") version "1.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("co.hinge.gradle.project-accessors:project-accessors:1.2.0")
}
}
apply(plugin = "co.hinge.gradle.project-accessors")
Using the plugins DSL:
plugins {
id "co.hinge.gradle.project-accessors" version "1.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "co.hinge.gradle.project-accessors:project-accessors:1.2.0"
}
}
apply plugin: "co.hinge.gradle.project-accessors"