You might want to keep a version controlled src\conf directory that is separate from your build targets; before you build (or run hosted mode), you copy the source files into the build target directory (war \WEB-INF\classes in this case).
I generally keep all of my build targets completely separate from my version-controlled source targets because: 1.) Cleaning is very simple and safe (just blow away the target directory). 2.) It's easy to tell the version control system what is and what is not meant to be version controlled (svn:ignore). 3.) This system can accommodate multiple build types if necessary (if, for instance, you have any platform-specific code). Tony --- Tony Strauss Designing Patterns, LLC http://www.designingpatterns.com http://blogs.designingpatterns.com On Apr 7, 9:40 am, hezjing <[email protected]> wrote: > Hi > With GWT 1.6, where do we save the hibernate.cfg.xml and logback.xml? > I normally save these files in war\WEB-INF\classes, but the generated Ant's > clean task will delete the classes directory. > > Where should we keep the configuration files without modifying the Ant's > clean task? > > -- > > Hez --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
