Search Gradle plugins

d3code.macappbundle

Creates a bundled .app for Mac

http://www.d3code.org

Sources: https://github.com/d3code

Version 0.0.1 (latest)

0.0.1

Created 18 April 2019.

Creates a bundled .app for Mac

Add this plugin to your build using the plugins DSL:

plugins {
  id("d3code.macappbundle") version "0.0.1"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.org.d3code.gradleplugin.macappbundle:gradle-macappbundle:0.0.1")
      }
    }
    
    apply(plugin = "d3code.macappbundle")
  • Applying plugins to all subprojects .