Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

gwt and javascript files

Tags:

javascript

gwt

In my Google web toolkit application, my gwt.xml file includes the following line in the module:

<module rename-to='foo'>
...
  <script src="foo.js"></script>
...

My question is: where in my GWT project do I actually place foo.js so that it gets packed into the war when I compile my project?

like image 272
Neil Avatar asked Nov 02 '09 04:11

Neil


1 Answers

Put it in a public folder. A public folder is a folder placed next to a client folder in the same package where your gwt.xml file is located. See also http://code.google.com/webtoolkit/doc/1.6/DevGuideOrganizingProjects.html#DevGuideModules

like image 146
Hilbrand Bouwkamp Avatar answered Oct 27 '22 18:10

Hilbrand Bouwkamp