Search Gradle plugins

io.github.rieske.java-service

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.1

Created 02 March 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.1"
}

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.1")
  }
}

apply(plugin = "io.github.rieske.java-service")

Using the plugins DSL:

plugins {
  id "io.github.rieske.java-service" version "1.0.1"
}

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.1"
  }
}

apply plugin: "io.github.rieske.java-service"

Learn how to apply plugins to subprojects