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

Created 06 May 2023.

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

Add this plugin to your build using the plugins DSL:

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

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("me.mprieto.librarian.project:me.mprieto.librarian.project.gradle.plugin:0.0.5")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("me.mprieto.librarian.project")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("me.mprieto.librarian.project:me.mprieto.librarian.project.gradle.plugin:0.0.5")
      }
    }
    
    apply(plugin = "me.mprieto.librarian.project")
  • Applying plugins to all subprojects .