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 2.0.0 (latest)

Created 08 January 2022.

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 "2.0.0"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "org.beryx.jar"

Learn how to apply plugins to subprojects