d3code.macappbundle
Owner: Luke Sands
Creates a bundled .app for Mac
Sources: https://github.com/d3code
Version 0.0.1 (latest)
0.0.1
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"