搜索 Gradle 插件

版本 0.0.1 (最新版)

0.0.1

创建于 2019 年 7 月 11 日。

这是一个Gradle插件,可供您将jar包变为可执行。它可以从jar文件生成可执行的二进制文件

使用 插件 DSL

plugins {
  id("pub.cellebi.make-executable") version "0.0.1"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("pub.cellebi:make-executable:0.0.1")
  }
}

apply(plugin = "pub.cellebi.make-executable")

使用 插件 DSL

plugins {
  id "pub.cellebi.make-executable" version "0.0.1"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "pub.cellebi:make-executable:0.0.1"
  }
}

apply plugin: "pub.cellebi.make-executable"

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