|
Project Information
Members
Featured
Downloads
Links
|
This project simplifies development of maven based GWT projects. The idea is to replace gwt-servlet jar dependency by dependency from war artifact containing gwt-servlet library. This way gwt-servlet library is not added to the classpath of maven projects, not confusing the IDE which would show some GWT classes twice otherwise. In order to use this project with maven just put the following snippets in your pom.xml (which has packaging set to war): <dependency>
<groupId>pl.ncdc.gwt</groupId>
<artifactId>gwt-servlet-war</artifactId>
<version>2.3.0</version>
<type>war</type>
</dependency> <repository>
<id>gwt-servlet-war-release</id>
<url>http://gwt-servlet-war.googlecode.com/svn/maven2/</url>
</repository>
|