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)
1.0.5
Created 26 September 2023.
Local Infra Plugin to start the local infra of a project
Using the plugins DSL:
plugins {
id("io.github.mics21.local-infra-plugin") version "1.0.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.mics21:local-infra-plugin:1.0.5")
}
}
apply(plugin = "io.github.mics21.local-infra-plugin")
Using the plugins DSL:
plugins {
id "io.github.mics21.local-infra-plugin" version "1.0.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.mics21:local-infra-plugin:1.0.5"
}
}
apply plugin: "io.github.mics21.local-infra-plugin"