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.0.0-alpha.7

2.0.0-alpha.7

Created 25 December 2019.

This plugin provides some core dependency resolution for JRuby/Gradle

Add this plugin to your build using the plugins DSL:

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

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.github.jruby-gradle:jruby-gradle-core-plugin:2.0.0-alpha.7")
      }
    }
    
    apply(plugin = "com.github.jruby-gradle.core")
  • Applying plugins to all subprojects .