com.github.cr0.macappbundle
A Gradle Plugin to create a Mac OSX .app application based on the project with customizable class paths.
https://github.com/cr0/gradle-macappbundle-plugin
Version 3.1.0 (latest)
3.1.0
Created 05 February 2015.
No version description available.
Using the plugins DSL:
plugins {
id("com.github.cr0.macappbundle") version "3.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.cr0:gradle-macappbundle-plugin:3.1.0")
}
}
apply(plugin = "com.github.cr0.macappbundle")
Using the plugins DSL:
plugins {
id "com.github.cr0.macappbundle" version "3.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.cr0:gradle-macappbundle-plugin:3.1.0"
}
}
apply plugin: "com.github.cr0.macappbundle"