me.mprieto.librarian.project
Owner: Miguel Prieto
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)
0.0.5
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
Using the plugins DSL:
plugins {
id("me.mprieto.librarian.project") version "0.0.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("me.mprieto:gradle-librarian:0.0.5")
}
}
apply(plugin = "me.mprieto.librarian.project")
Using the plugins DSL:
plugins {
id "me.mprieto.librarian.project" version "0.0.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "me.mprieto:gradle-librarian:0.0.5"
}
}
apply plugin: "me.mprieto.librarian.project"