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.2 (latest)

Created 10 November 2023.

Gradle plugin that packages your application into a Docker container and configures blackBoxTest task and source set

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.github.rieske.java-service") version "1.0.2"
}

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.rieske.java-service:io.github.rieske.java-service.gradle.plugin:1.0.2")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("io.github.rieske.java-service")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.github.rieske.java-service:io.github.rieske.java-service.gradle.plugin:1.0.2")
      }
    }
    
    apply(plugin = "io.github.rieske.java-service")
  • Applying plugins to all subprojects .