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

Created 11 September 2014.

https://github.com/danthegoodman/gradle-capsule-plugin/releases/tag/0.8.0

Add this plugin to your build using the plugins DSL:

plugins {
  id("us.kirchmeier.capsule") version "0.8.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.8.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.8.0")
      }
    }
    
    apply(plugin = "us.kirchmeier.capsule")
  • Applying plugins to all subprojects .