Re: gwt maven 2

2007-01-12 Thread Iulian Costan
hey buddy, the following works for me like a charm, using gwt-maven-plugin ( http://codehaus.org/~shinobu/gwt-maven-plugin/index.html) ... plugin groupIdorg.codehaus.mojo/groupId artifactIdgwt-maven-plugin/artifactId configuration

Re: gwt maven 2

2007-01-12 Thread Iulian Costan
/webResources /configuration /plugin ... /iulian Many Thanks, Maruf Iulian Costan wrote: hey buddy, the following works for me like a charm, using gwt-maven-plugin ( http://codehaus.org/~shinobu/gwt-maven-plugin/index.html) ... plugin

Re: gwt maven 2

2007-01-12 Thread Iulian Costan
On 1/12/07, Iulian Costan [EMAIL PROTECTED] wrote: On 1/12/07, Maruf Aytekin [EMAIL PROTECTED] wrote: Thank you Julian, I have one more quetsion: How do you orginize directory structure? as maven 2 directory structure or you leave it as gwt directory structure that gwt project creaton tool

Re: Error getting POM

2006-10-06 Thread Iulian Costan
it seems that other dependecy requires this pom (as base pom or pom reference) but it is missing so this quick fix will solve your issue for the moment at least. dependency groupIdorg.codehaus.cargo/groupId artifactIdcargo-ant/artifactId version0.8/version

Re: avoid recompilation of test files

2006-09-26 Thread Iulian Costan
if i remember correctly from maven 1.* days you should chain the goals using prereqs attribute rather than attainGoal tag. in your case: goal name=custom-test prereqs=create-env custom-test-1 custom-test-2 /goal will execute each goal only once. /iulian On 9/22/06, Manlio Malaidini [EMAIL

Re: exclude dependencies

2006-09-21 Thread Iulian Costan
if it is adirect dependencies you can play with scope tag, you might use test or provided scopes. the default scope is compile so that dep will be included in war. on the other side if it is a transitive dependency then play with exclusions tag, in the sample below artifact A is excluded from

Re: configuration of Junit tests

2006-09-20 Thread Iulian Costan
i think you need systemProperties tag; sample bellow: groupIdorg.apache.maven.plugins/groupId artifactIdmaven-surefire-plugin/artifactId configuration skipfalse/skip systemProperties property nameHOST/name value${host}/value