Search Gradle plugins

me.mprieto.librarian.project

A project plugin that allows dev to manage ext properties in an external yaml file and adds other convenient development tasks

https://github.com/jmigueprieto/gradle-librarian-plugin

Sources: https://github.com/jmigueprieto/gradle-librarian-plugin.git

Version 0.0.2

Created 02 May 2023.

A project plugin that allows dev to manage ext properties in an external yaml file and adds other convenient development tasks

Using the plugins DSL:

plugins {
  id("me.mprieto.librarian.project") version "0.0.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("me.mprieto:gradle-librarian:0.0.2")
  }
}

apply(plugin = "me.mprieto.librarian.project")

Using the plugins DSL:

plugins {
  id "me.mprieto.librarian.project" version "0.0.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "me.mprieto:gradle-librarian:0.0.2"
  }
}

apply plugin: "me.mprieto.librarian.project"

Learn how to apply plugins to subprojects