Re: How to include javascript files in GWT with eclipse plugin?

2009-04-15 Thread Salvador Diaz
If all you want to do is include some external js files: http://code.google.com/docreader/#p=google-web-toolkit-doc-1-5s=google-web-toolkit-doc-1-5t=DevGuideAutomaticResourceInjection If you're looking at including jars in your war, it could be worth to look at something for managing your

Re: How to include javascript files in GWT with eclipse plugin?

2009-04-15 Thread TimOnGmail
Well, what I was concerned with was, in Hosted mode, Eclipse making sure to copy local JS resources into the desired place in the target folder in the 'war' hierarchy. I found the answer to my problem, however: 1. Put my 'js' folder in myProject/war/WEB-INF/classes/com/mycompany/

How to include javascript files in GWT with eclipse plugin?

2009-04-14 Thread TimOnGmail
Hi all... I'm using GWT-EXT, and it needs to be copied into war/js/ext every time I build my project. However, every time I build my project, it gets deleted and I have to copy it manually. Does anyone know where I would put the ext folder - or what files I modify to point to it - so that the

Re: How to include javascript files in GWT with eclipse plugin?

2009-04-14 Thread loudo
hello i have the same problem. On 14 avr, 21:58, TimOnGmail timbes...@gmail.com wrote: Hi all... I'm usingGWT-EXT, and it needs to be copied into war/js/extevery time I build my project.  However, every time I build my project, it gets deleted and I have to copy it manually. Does anyone

Re: How to include javascript files in GWT with eclipse plugin?

2009-04-14 Thread Dean S. Jones
This is one solution... another is to create an entirely new GWT Module as a library, add all the script and stylesheet tags to that Modules XML file, package it up in a jar, and inherit the library module in you app module. All the resources will be copied to the output folder at compile time.