Re: What is the correct way to ignore test classes when compiling GWT and still being able to run GWTTestCases?

2013-01-22 Thread tskardal
The project uses maven and hence its conventions. To be honest, I'm not sure why we have these excludes in our module configuration, but anyway. I ended up adding more specific excludes, to include the TestGWT, but not the other kinds of tests. Didn't know about skip vs exclude! Haven't tried

What is the correct way to ignore test classes when compiling GWT and still being able to run GWTTestCases?

2013-01-21 Thread l3dx
Hello all! I'm a bit confused when it comes to GWT compilation and test classes. Please enlighten me! :-) Currently I have some trouble running a GWTTestCase test. I get the following compilation error: The test class 'x.PageIntegrationTestGWT' was not found in module

Re: What is the correct way to ignore test classes when compiling GWT and still being able to run GWTTestCases?

2013-01-21 Thread Thomas Broyer
Not sure I understand the problem, but you might want to try skip instead of exclude. skip is do not include those files in this particular module, but another module might include them whereas exclude is do not include those files, never ever (AFAICT). I've never had to deal with such