You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The compiler is around 10Mb in size, which is still OK but could be improved by shrinking it a little bit. So far the "jar-with-dependencies" plugin create a compiler JAR file that contains ALL the libraries linked, even if we're not using everything from them.
We might want to consider using Proguard (or anything similar) to provide static analysis of the code and remove unused classes from the final jar file.
The text was updated successfully, but these errors were encountered:
The compiler is around 10Mb in size, which is still OK but could be improved by shrinking it a little bit. So far the "jar-with-dependencies" plugin create a compiler JAR file that contains ALL the libraries linked, even if we're not using everything from them.
We might want to consider using Proguard (or anything similar) to provide static analysis of the code and remove unused classes from the final jar file.
The text was updated successfully, but these errors were encountered: