Search Gradle plugins

us.kirchmeier.capsule

A Gradle plugin utilizing Capsule, the packaging and deployment tool for JVM apps. (https://github.com/puniverse/capsule)

https://github.com/danthegoodman/gradle-capsule-plugin

Version 0.9.0

Created 22 September 2014.

No version description available.

Add this plugin to your build using the plugins DSL:

plugins {
  id("us.kirchmeier.capsule") version "0.9.0"
}

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