com.needhamsoftware.unojar
Owner: Patrick Heck
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 0.99
0.99
Created 02 January 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
Using the plugins DSL:
plugins {
id("com.needhamsoftware.unojar") version "0.99"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("uno-jar:gradle-plugin:0.99")
}
}
apply(plugin = "com.needhamsoftware.unojar")
Using the plugins DSL:
plugins {
id "com.needhamsoftware.unojar" version "0.99"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "uno-jar:gradle-plugin:0.99"
}
}
apply plugin: "com.needhamsoftware.unojar"