Hi Thomas,
Thanks for replying, but the
runClasspathExcludes does'nt help. I tried different values but no success.
My plugin configuration is like this:
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>gwt-maven-plugin</artifactId>
<version>${gwt-maven-plugin.version}</version>
<configuration>
<hostedWebapp>${gwt.output.directory}</hostedWebapp>
<runTarget>index.html</runTarget>
<deploy>${project.build.directory}/${project.build.finalName}</deploy>
<bindAddress>0.0.0.0</bindAddress>
<inplace>true</inplace>
<runClasspathExcludes>
<runClasspathExclude>**/cglib-nodep-2.2.2.jar</runClasspathExclude>
<runClasspathExclude>**/cglib-nodep-2.2.2</runClasspathExclude>
<runClasspathExclude>cglib-nodep-2.2.2.jar</runClasspathExclude>
</runClasspathExcludes>
</configuration>
<executions>
<execution>
<goals>
<goal>compile</goal>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
Thanks!