Search Gradle plugins

com.github.jruby-gradle.base

A Gradle plugin for working with JRuby projects for fun and profit. Mostly profit.

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

Using the plugins DSL:

plugins {
  id("com.github.jruby-gradle.base") version "0.1.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.github.jruby-gradle:jruby-gradle-plugin:0.1.4")
  }
}

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

Using the plugins DSL:

plugins {
  id "com.github.jruby-gradle.base" version "0.1.4"
}

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects