Gradle Shadow Fat/Uber Jar Plugin
Jump to navigation
Jump to search
External
- https://github.com/johnrengelman/shadow
- https://imperceptiblethoughts.com/shadow/introduction/
- https://www.baeldung.com/gradle-fat-jar
Internal
Overview
plugins {
id 'java'
id 'com.github.johnrengelman.shadow' version '6.1.0'
}
...
shadowJar {
archiveBaseName.set('something')
zip64 true
manifest {
attributes 'Main-Class': 'myPackage.MyClass'
}
}