io.github.mics21.local-infra-plugin
Owner: Michael Schneider
Local Infra Plugin to start the local infra of a project
https://github.com/Mics21/localinfra
Sources: https://github.com/Mics21/localinfra
Version 1.0.5 (latest)
Created 26 September 2023.
Local Infra Plugin to start the local infra of a project
Add this plugin to your build using the plugins DSL:
plugins {
id("io.github.mics21.local-infra-plugin") version "1.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("io.github.mics21.local-infra-plugin:io.github.mics21.local-infra-plugin.gradle.plugin:1.0.5") }
It can then be applied in the precompiled script plugin:plugins { id("io.github.mics21.local-infra-plugin") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.github.mics21.local-infra-plugin:io.github.mics21.local-infra-plugin.gradle.plugin:1.0.5") } } apply(plugin = "io.github.mics21.local-infra-plugin")
- Applying plugins to all subprojects .