Re: Client bundle does not understand CSS @import?

2011-04-05 Thread Alex Shabanov
Thanks for answering, this approach works fine. Though it's a pity that such an attribute is not supported by client bundles, maybe GWT guys have some hidden reasons for doing so? On Apr 4, 11:54 pm, Thomas Broyer t.bro...@gmail.com wrote: @import are (for now) simply ignored (same as

[GWT 2.2.0] Client bundle does not understand CSS @import?

2011-04-04 Thread Alex Shabanov
Hi all, I have all.css file that refers to the other css files by using @import CSS directive: @import base.css; @import decorations.css; /* other import statements... */ Unfortunately it seems impossible to use it with GWT's client bundle, may be I miss some important point in the

Re: client code from external directory

2010-11-01 Thread Alex Shabanov
Thank you for attention for my problem. On Nov 1, 3:21 am, Jeff Larsen larse...@gmail.com wrote: Put a gwt.xml file in the project. I did. It's name is Generic.gwt.xml. define the module, then you'll be able to import your library project into a gwt project. The same thing, yes I defined

Re: client code from external directory

2010-11-01 Thread Alex Shabanov
source code and maven configuration. And I guess this is not that bad because exported module must be checked early by the GWT compiler for using only the emulated part of the JRE. On Nov 1, 11:21 am, Alex Shabanov avshaba...@gmail.com wrote: Thank you for attention for my problem. On Nov 1, 3

mvn gwt:run for projects with external dependencies?

2010-11-01 Thread Alex Shabanov
Hi all, I've solved the issue with using external library in GWT maven project: http://groups.google.com/group/google-web-toolkit/browse_thread/thread/cd297accfad7c98 but I found that mvn gwt:run is not working. When I launch application by using mvn gwt:run it seems that external library is not

Re: client code from external directory

2010-10-31 Thread Alex Shabanov
Guys, can anybody help me, please? The solution should be pretty simple but I still can't figure out what is the problem. Does someone ever tried the approach given above? On Oct 26, 8:19 pm, Alex Shabanov avshaba...@gmail.com wrote: Thank you so much for your advice. I've created a small

Re: client code from external directory

2010-10-26 Thread Alex Shabanov
; did you forget to inherit a required module? - it sees Generic module but omits it's compilation because maven thinks that it is up to date. And yes, I did mvn clean install. Any help greatly appreciated! On Oct 25, 10:33 pm, Thomas Broyer t.bro...@gmail.com wrote: On 25 oct, 13:22, Alex

client code from external directory

2010-10-25 Thread Alex Shabanov
Hi all, I have a GWT module in my maven project which structure is as follows: /project-root | pom.xml | /gwt-module { uses general-constants} | | | pom.xml | ... | /other-module { uses general-constants as well} | | | pom.xml |