Search Gradle plugins

org.beryx.jar

A Gradle plugin that lets you create modular jars compatible with pre-Java 9 versions

https://github.com/beryx/badass-jar-plugin/

Sources: https://github.com/beryx/badass-jar-plugin

Version 1.1.0

Created 20 December 2018.

A Gradle plugin that lets you create modular jars compatible with pre-Java 9 versions

Using the plugins DSL:

plugins {
  id("org.beryx.jar") version "1.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.org.beryx:badass-jar:1.1.0")
  }
}

apply(plugin = "org.beryx.jar")

Using the plugins DSL:

plugins {
  id "org.beryx.jar" version "1.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.org.beryx:badass-jar:1.1.0"
  }
}

apply plugin: "org.beryx.jar"

Learn how to apply plugins to subprojects