Search Gradle plugins

com.github.jruby-gradle.core

Core functionality of running JRuby-related plugins on Gradle

https://github.com/jruby-gradle/jruby-gradle-plugin

Version 2.1.0-alpha.1

Created 30 October 2020.

This plugin provides some core dependency resolution for JRuby/Gradle

Using the plugins DSL:

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

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.1.0-alpha.1")
  }
}

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects