-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Closed
Labels
enhancementNew feature or requestNew feature or request
Description
As I see there are 2 variants now:
packageReleaseUberJarForCurrentOSproduces uber jar, but it's not obfuscated even in Release versioncreateReleaseDistributable/packageReleaseDistributionForCurrentOSuse proguard, but it produces the same jars as input because of this code fromAbstractProguardTask:
jarsConfigurationFile.ioFile.bufferedWriter().use { writer ->
for ((input, output) in inputToOutputJars.entries) {
writer.writeLn("-injars '${input.normalizedPath()}'")
writer.writeLn("-outjars '${output.normalizedPath()}'")
}
// ...
}Can you please add a possibility to package all classes to the single uber JAR after proguard, for example by specifying a single output jar in proguard config?
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request