us.kirchmeier.capsule
Owner: Danny Kirchmeier
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.2 (latest)
Created 10 January 2016.
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.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("us.kirchmeier.capsule:us.kirchmeier.capsule.gradle.plugin:1.0.2") }
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:1.0.2") } } apply(plugin = "us.kirchmeier.capsule")
- Applying plugins to all subprojects .