Even if you do package all your code in a jar, you should keep at least one module and entry point OUTSIDE the jar, so the compiler has some raw source to start with. Also check that you're including your packaged jar in your build process.
If you just want to reuse your code, you can just include the core project through your IDE, so you don't have to re-jar for every build. I use the google appengine which has a 1000 file limit, so I jar any finalized / old / stagnant code, but never active, volatile code. G'luck! --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/Google-Web-Toolkit?hl=en -~----------~----~----~----~------~----~------~--~---
