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

Created 27 October 2017.

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

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.edu.sc.seis:macAppBundle:2.1.9")
  }
}

apply(plugin = "edu.sc.seis.macAppBundle")

Using the plugins DSL:

plugins {
  id "edu.sc.seis.macAppBundle" version "2.1.9"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.edu.sc.seis:macAppBundle:2.1.9"
  }
}

apply plugin: "edu.sc.seis.macAppBundle"

Learn how to apply plugins to subprojects