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-alpha2

Created 19 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-alpha2"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("com.github.jruby-gradle.core:com.github.jruby-gradle.core.gradle.plugin:2.0.0-alpha2")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.github.jruby-gradle.core")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.github.jruby-gradle.core:com.github.jruby-gradle.core.gradle.plugin:2.0.0-alpha2")
      }
    }
    
    apply(plugin = "com.github.jruby-gradle.core")
  • Applying plugins to all subprojects .