Thanks, advice for your reply :) !
This my pom.xml
<build>
<outputDirectory>war/WEB-INF/classes</outputDirectory>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>gwt-maven-plugin</artifactId>
<version>1.1</version>
<configuration>
<module>org.test.gwt.Application</module>
<runTarget>org.test.gwt.Application/Application.html</runTarget>
<logLevel>INFO</logLevel>
<webXml>${basedir}/war/WEB-INF/web.xml</webXml>
<hostedWebapp>${basedir}/war</hostedWebapp>
</configuration>
</plugin>
<!--^
If you want to use the target/web.xml file mergewebxml produces,^
tell the war plugin to use it.^
Also, exclude what you want from the final artifact here.^
-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<configuration>
<warSourceExcludes>.gwt-tmp/**</warSourceExcludes>
</configuration>
</plugin>
^
<plugin>^
<groupId>org.apache.maven.plugins</groupId>^
<artifactId>maven-compiler-plugin</artifactId>^
<version>2.0.2</version>^
<configuration>^
<source>${maven.compiler.source}</source>^
<target>${maven.compiler.target}</target>^
</configuration>^
</plugin>^
</plugins>^
</build>^
May be you can told me thats wrong on it!
--
Best regards,
Vitaly