Re: Obfuscate java source

2010-03-19 Thread Alexander
GWT client code could be obfuscated during compilation. Server side code could be obfuscated by any obfuscator. Just google it. On 16 March 2010 12:35, rasmus.olaus...@gmail.com rasmus.olaus...@gmail.com wrote: Hi. I'm developing a GWT library. And I would like to be able to obfuscate the

Re: Obfuscate java source

2010-03-17 Thread Chris.Pollard
I didn't allow myself enough time to context switch, and dug a hole :( Sorry, to clarify we use ProGuard for the J2EE portion, to mangle the JARs. As correctly mentioned by Rasmus, the Javascript generated by the GWT compiler is obfuscated by default. If you want to deliver your GWT library as a

Obfuscate java source

2010-03-16 Thread rasmus.olaus...@gmail.com
Hi. I'm developing a GWT library. And I would like to be able to obfuscate the java source code in the .jar file to be able to give the library to others without them reading the code. I know that the way most of us write code it's obfuscated by default, but .. :) Could anyone recomend a

Re: Obfuscate java source

2010-03-16 Thread Chris.Pollard
Hi We've been using ProGuard in our EmNOC product. ... makes some of the code more readable ;) regards Chris Emnico Technologies -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Re: Obfuscate java source

2010-03-16 Thread dolcra...@gmail.com
No. GWT relies upon the java source to convert to javascript. On Mar 16, 2:35 am, rasmus.olaus...@gmail.com rasmus.olaus...@gmail.com wrote: Hi. I'm developing a GWT library. And I would like to be able to obfuscate the java source code in the .jar file to be able to give the library to