com.github.jruby-gradle.core
所有者: R. Tyler Croy
在 Gradle 上运行 JRuby 相关插件的核心理念
https://github.com/jruby-gradle/jruby-gradle-plugin
使用插件 DSL
plugins {
id("com.github.jruby-gradle.core") version "2.1.0-alpha.2"
}
使用遗留插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("com.github.jruby-gradle:jruby-gradle-core-plugin:2.1.0-alpha.2")
}
}
apply(plugin = "com.github.jruby-gradle.core")
使用插件 DSL
plugins {
id "com.github.jruby-gradle.core" version "2.1.0-alpha.2"
}
使用遗留插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "com.github.jruby-gradle:jruby-gradle-core-plugin:2.1.0-alpha.2"
}
}
apply plugin: "com.github.jruby-gradle.core"