com.github.jruby-gradle.base
所有者: R. Tyler Croy
一个用于与 JRuby 项目一起工作的 Gradle 插件,既可以娱乐也可以盈利。大多是盈利。
https://github.com/jruby-gradle/jruby-gradle-plugin
使用 插件 DSL
plugins {
id("com.github.jruby-gradle.base") 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-plugin:2.1.0-alpha.2")
}
}
apply(plugin = "com.github.jruby-gradle.base")
使用 插件 DSL
plugins {
id "com.github.jruby-gradle.base" version "2.1.0-alpha.2"
}
使用 旧插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "com.github.jruby-gradle:jruby-gradle-plugin:2.1.0-alpha.2"
}
}
apply plugin: "com.github.jruby-gradle.base"