Search Gradle plugins

com.needhamsoftware.unojar

Single jar packaging based on a JarClassLoader. Unlike maven shade and gradle shadow, this form of packaging does not intermix classes into a single directory, and thereby maintains a degree of separation between libraries with distinct licensing concerns. Does not require write access to the filesystem like capsule

https://github.com/nsoft/uno-jar

Sources: https://github.com/nsoft/uno-jar.git

Version 1.0.1

1.0.1

Created 10 May 2020.

Single jar packaging based on a JarClassLoader. Unlike maven shade and gradle shadow, this form of packaging does not intermix classes into a single directory, and thereby maintains a degree of separation between libraries with distinct licensing concerns. Does not require write access to the filesystem like capsule

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.needhamsoftware.unojar") version "1.0.1"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("uno-jar:gradle-plugin:1.0.1")
      }
    }
    
    apply(plugin = "com.needhamsoftware.unojar")
  • Applying plugins to all subprojects .