Owner:
Gergő Dulai
Gradle plugin that creates and manages a repository of JAR files built from Git.
https://gitlab.com/gdulai/bldr
Sources: https://gitlab.com/gdulai/bldr
Version 0.0.6 (latest)
Created 11 January 2025.
Gradle plugin that creates and manages a repository of JAR files built from Git.
Add this plugin to your build using the plugins DSL:
plugins {
id("hu.gdulai.bldr") version "0.0.6"
}
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("hu.gdulai.bldr:hu.gdulai.bldr.gradle.plugin:0.0.6") }It can then be applied in the precompiled script plugin:plugins { id("hu.gdulai.bldr") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("hu.gdulai.bldr:hu.gdulai.bldr.gradle.plugin:0.0.6") } } apply(plugin = "hu.gdulai.bldr") - Applying plugins to all subprojects .