Can proguard be used with Grails

Even if it is not possible to use proguard for the whole grails application, is it okay to just use it for the src / java folder?

+3


source to share


1 answer


I don’t know Proguard or Grails, but I know that:



So my intuition is yes ProGuard can compress / obfuscate grails applications. Your question is asking about using ProGuard in the src / java folder. It is important to understand that ProGuard works with .class files, not .java files. Correct configuration should work in bin directory, not src. Unfortunately, I am not qualified to give you the detailed configuration of the example, but I hope this gets you on the right track.

+1


source







All Articles