https://kotlinlang.org logo
Title
s

suresh

12/02/2020, 7:29 PM
Nice to see the support for creating uber jar
./gradlew packageUberJarForCurrentOS
without any additional plugin (shadow)
🎉 5
s

spierce7

12/02/2020, 8:56 PM
Uber jar = fat jar? By swapping out the jar in an installed application, we can update it I assume. This seems like a useful part of that.
s

suresh

12/03/2020, 12:53 AM
Uber jar = fat jar?
yes
t

Timo Drick

12/03/2020, 4:04 AM
The cool thing is that you can just deploy this jar to anyone and than start it with java -jar <your_compose_app.jar> I just wondering why it is only for current os. Should be no problem to put every thing in one jar or to create seperate jars for every platform. It is already possible using the shadowJar plugin.