Search Gradle plugins

Version 0.0.1 (latest)

Created 18 April 2019.

Creates a bundled .app for Mac

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.org.d3code.gradleplugin.macappbundle:gradle-macappbundle:0.0.1")
  }
}

apply(plugin = "d3code.macappbundle")

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.org.d3code.gradleplugin.macappbundle:gradle-macappbundle:0.0.1"
  }
}

apply plugin: "d3code.macappbundle"

Learn how to apply plugins to subprojects