Search Gradle plugins

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.0.0

Created 26 January 2015.

No version description available.

Using the plugins DSL:

plugins {
  id("com.github.cr0.macappbundle") version "3.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.github.cr0:gradle-macappbundle-plugin:3.0.0")
  }
}

apply(plugin = "com.github.cr0.macappbundle")

Using the plugins DSL:

plugins {
  id "com.github.cr0.macappbundle" version "3.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.github.cr0:gradle-macappbundle-plugin:3.0.0"
  }
}

apply plugin: "com.github.cr0.macappbundle"

Learn how to apply plugins to subprojects