Search Gradle plugins

Version 2.1.0-alpha.1 (latest)

Created 30 October 2020.

This plugin encapsulates java archive building functionality for JRuby Gradle projects

Using the plugins DSL:

plugins {
  id("com.github.jruby-gradle.jar") version "2.1.0-alpha.1"
}

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

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

Using the plugins DSL:

plugins {
  id "com.github.jruby-gradle.jar" version "2.1.0-alpha.1"
}

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects