nl.voidcorp.baseplugin
Owner:
Julius de Jeu
A small gradle plugin with components that I use often.
https://gitlab.voidcorp.nl/explore/projects
Sources: https://gitlab.voidcorp.nl/jdejeu/baseplugin
Version 1.0-SNAPSHOT (latest)
Created 30 July 2019.
A small gradle plugin with components that I use often.
Add this plugin to your build using the plugins DSL:
plugins {
id("nl.voidcorp.baseplugin") version "1.0-SNAPSHOT"
}
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("nl.voidcorp.baseplugin:nl.voidcorp.baseplugin.gradle.plugin:1.0-SNAPSHOT") }
It can then be applied in the precompiled script plugin:plugins { id("nl.voidcorp.baseplugin") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("nl.voidcorp.baseplugin:nl.voidcorp.baseplugin.gradle.plugin:1.0-SNAPSHOT") } } apply(plugin = "nl.voidcorp.baseplugin")
- Applying plugins to all subprojects .