Search Gradle plugins

Version 2.0.0-alpha1

Created 23 June 2019.

This plugin encapsulates java archive building functionality for JRuby Gradle projects

Using the plugins DSL:

plugins {
  id("com.github.jruby-gradle.jar") version "2.0.0-alpha1"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

plugins {
  id "com.github.jruby-gradle.jar" version "2.0.0-alpha1"
}

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects