io.github.rieske.java-service
Owner: Vaidotas Valuckas
Gradle plugin that packages your application into a Docker container and configures blackBoxTest task and source set
https://github.com/rieske/java-service-gradle-plugins
Sources: https://github.com/rieske/java-service-gradle-plugins
Version 1.0.2 (latest)
1.0.2
Created 10 November 2023.
Gradle plugin that packages your application into a Docker container and configures blackBoxTest task and source set
Using the plugins DSL:
plugins {
id("io.github.rieske.java-service") version "1.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.rieske.java-service-gradle-plugins:plugins:1.0.2")
}
}
apply(plugin = "io.github.rieske.java-service")
Using the plugins DSL:
plugins {
id "io.github.rieske.java-service" version "1.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.rieske.java-service-gradle-plugins:plugins:1.0.2"
}
}
apply plugin: "io.github.rieske.java-service"