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 1.0.0

1.0.0

Created 12 September 2015.

A Gradle plugin utilizing Capsule, the packaging and deployment tool for JVM apps. (http://www.capsule.io)

Add this plugin to your build using the plugins DSL:

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

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("us.kirchmeier:gradle-capsule-plugin:1.0.0")
      }
    }
    
    apply(plugin = "us.kirchmeier.capsule")
  • Applying plugins to all subprojects .