com.github.jruby-gradle.jar
所有者: R. Tyler Croy
创建基于 JRuby 的 java 归档的插件
https://github.com/jruby-gradle/jruby-gradle-plugin
使用 插件 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"