搜索Gradle插件

io.pivotal.labs.exedist

所有者: 汤姆·安德森

一个Gradle插件,使分发zip文件可执行,作为一种uberjar的替代品。伦敦海滩生产:guardsman::palm_tree:

https://github.com/pivotal/executable-dist-plugin

源代码: https://github.com/pivotal/executable-dist-plugin

版本 1.0.0(最新版)

1.0.0

创建于2015年4月17日。

一个Gradle插件,使分发zip文件可执行,作为一种uberjar的替代品。伦敦海滩生产:guardsman::palm_tree:

使用 插件DSL

plugins {
  id("io.pivotal.labs.exedist") version "1.0.0"
}

使用 传统插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.io.pivotal.labs:executable-dist-plugin:1.0.0")
  }
}

apply(plugin = "io.pivotal.labs.exedist")

使用 插件DSL

plugins {
  id "io.pivotal.labs.exedist" version "1.0.0"
}

使用 传统插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.io.pivotal.labs:executable-dist-plugin:1.0.0"
  }
}

apply plugin: "io.pivotal.labs.exedist"

了解如何应用插件到子项目