com.github.jruby-gradle.core
Owner: R. Tyler Croy
Core functionality of running JRuby-related plugins on Gradle
https://github.com/jruby-gradle/jruby-gradle-plugin
Version 2.0.0-alpha.4
2.0.0-alpha.4
Created 23 December 2019.
This plugin provides some core dependency resolution for JRuby/Gradle
Using the plugins DSL:
plugins {
id("com.github.jruby-gradle.core") version "2.0.0-alpha.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.jruby-gradle:jruby-gradle-core-plugin:2.0.0-alpha.4")
}
}
apply(plugin = "com.github.jruby-gradle.core")
Using the plugins DSL:
plugins {
id "com.github.jruby-gradle.core" version "2.0.0-alpha.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.jruby-gradle:jruby-gradle-core-plugin:2.0.0-alpha.4"
}
}
apply plugin: "com.github.jruby-gradle.core"