Search Gradle plugins

edu.sc.seis.macAppBundle

A Gradle Plugin to create a Mac OSX .app application based on the project.

https://github.com/crotwell/gradle-macappbundle

Version 2.1.6

2.1.6

Created 04 April 2016.

A Gradle Plugin to create a Mac OSX .app application based on the project.

Add this plugin to your build using the plugins DSL:

plugins {
  id("edu.sc.seis.macAppBundle") version "2.1.6"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.edu.sc.seis:macAppBundle:2.1.6")
      }
    }
    
    apply(plugin = "edu.sc.seis.macAppBundle")
  • Applying plugins to all subprojects .