搜索 Gradle 插件

版本 2.1.0-alpha.1 (最新)

2.1.0-alpha.1

创建于 2020 年 10 月 30 日。

此插件封装了 JRuby Gradle 项目构建 java 归档的功能

使用 插件 DSL

plugins {
  id("com.github.jruby-gradle.jar") version "2.1.0-alpha.1"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.github.jruby-gradle:jruby-gradle-jar-plugin:2.1.0-alpha.1")
  }
}

apply(plugin = "com.github.jruby-gradle.jar")

使用 插件 DSL

plugins {
  id "com.github.jruby-gradle.jar" version "2.1.0-alpha.1"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.github.jruby-gradle:jruby-gradle-jar-plugin:2.1.0-alpha.1"
  }
}

apply plugin: "com.github.jruby-gradle.jar"

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