forked from pinterest/ktlint
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add r8Jar task to minify fatJar using R8
- Loading branch information
Showing
4 changed files
with
65 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
-dontobfuscate | ||
-keepattributes SourceFile, LineNumberTable | ||
|
||
-allowaccessmodification | ||
|
||
-keep class com.pinterest.ktlint.Main { | ||
public static void main(java.lang.String[]); | ||
} | ||
|
||
-dontwarn com.sun.jna.Native.** | ||
-dontwarn javax.servlet.ServletContainerInitializer | ||
-dontwarn kotlin.annotations.jvm.** | ||
-dontwarn kotlinx.coroutines.** | ||
-dontwarn org.checkerframework.checker.nullness.qual.** | ||
-dontwarn org.codehaus.janino.ClassBodyEvaluator | ||
-dontwarn org.jetbrains.annotations.** | ||
-dontwarn org.jetbrains.kotlin.com.google.** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters