org.s4s0l.gradle.bootcker
Owner: Marcin Wielgus
Gradle plugin for running spring boot based micro services with docker compose during gradle build.
https://github.com/s4s0l/bootcker-gradle-plugin
Sources: https://github.com/s4s0l/bootcker-gradle-plugin.git
Version 0.2.5 (latest)
0.2.5
Created 01 March 2017.
This plugin version will no longer resolve after JCenter becomes a permanent redirect to Maven Central as it uses dependencies only found in JCenter. See the following blog post for details: https://blog.gradle.org/portal-jcenter-impact
Gradle plugin for running spring boot based micro services with docker compose during gradle build.
Using the plugins DSL:
plugins {
id("org.s4s0l.gradle.bootcker") version "0.2.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.org.s4s0l.gradle:bootcker-gradle-plugin:0.2.5")
}
}
apply(plugin = "org.s4s0l.gradle.bootcker")
Using the plugins DSL:
plugins {
id "org.s4s0l.gradle.bootcker" version "0.2.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.org.s4s0l.gradle:bootcker-gradle-plugin:0.2.5"
}
}
apply plugin: "org.s4s0l.gradle.bootcker"