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

Created 25 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.7"
}

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

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

Using the plugins DSL:

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

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.7"
  }
}

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

Learn how to apply plugins to subprojects