搜索 Gradle 插件

com.github.cr0.macappbundle

这是一个 Gradle 插件,用于根据具有可定制类路径的项目创建 Mac OSX .app 应用程序。

https://github.com/cr0/gradle-macappbundle-plugin

版本 3.1.0(最新版)

3.1.0

创建于 2015 年 2 月 5 日。

没有可用的版本描述。

使用 插件 DSL

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

使用 旧版插件应用程序

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

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

使用 插件 DSL

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

使用 旧版插件应用程序

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

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

了解如何将插件应用于子项目