Search Gradle plugins

it.gianluz.capsule

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

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

Sources: https://github.com/gianluz/gradle-capsule-plugin.git

Version 1.0.3 (latest)

Created 02 February 2019.

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

Add this plugin to your build using the plugins DSL:

plugins {
  id("it.gianluz.capsule") version "1.0.3"
}

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