Search Gradle plugins

Version 1.3.3

Created 01 September 2016.

This plugin encapsulates java archive building functionality for JRuby Gradle projects

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects