Denis wrote: > If you're using maven 2, the correct syntax is (should be), > in the build/plugins part: > <plugin> > <groupId>org.apache.maven.plugins</groupId> > <artifactId>maven-surefire-plugin</artifactId> > <configuration> > <excludes> > <exclude>ui/**</exclude> > </excludes> > </configuration> > </plugin>
Thanks for the fast reply! Sorry, I meant Maven 2 :) This is indeed working, although the pattern "ui/**" is not. I am a little bit confused about these pattern, is there a page describing the syntax? I tried a "**/*.*" - which worked fine - no more tests at all :) I configured <testSourceDirectory>src/test</testSourceDirectory> and my ui tests sites are located in src/test/de/company/project/ui/tests/a/b/ If somewhere in the path "ui" is present I want to skip tests. Any ideas for the correct pattern? Cheers Nick --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
