搜索 Gradle 插件

版本 0.6(最新版)

0.6

创建于 2023年11月29日。

该插件将为您的 Gradle 构建添加 jlink 集成。就是这么简单。

使用 插件 DSL

plugins {
  id("com.github.iherasymenko.jlink") version "0.6"
}

使用 旧插件应用

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

apply(plugin = "com.github.iherasymenko.jlink")

使用 插件 DSL

plugins {
  id "com.github.iherasymenko.jlink" version "0.6"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.github.iherasymenko.jlink:jlink-plugin:0.6"
  }
}

apply plugin: "com.github.iherasymenko.jlink"

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