Search Gradle plugins

co.hinge.gradle.project-accessors

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.1.0 (latest)

Created 29 March 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.1.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.1.0")
  }
}

apply(plugin = "co.hinge.gradle.project-accessors")

Using the plugins DSL:

plugins {
  id "co.hinge.gradle.project-accessors" version "1.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "co.hinge.gradle.project-accessors:project-accessors:1.1.0"
  }
}

apply plugin: "co.hinge.gradle.project-accessors"

Learn how to apply plugins to subprojects