Categories
Tags
Adventure BMW 650GS BMW 1200GS CentOS Death Valley Diving eclipse find FLV Fraser Island Golden Gate grand canyon Great Ocean Road grep GWT Hibernate holiday Hollywood Lucene Maps maven Motorbike mule ride Nokia N95 NYC Oz Paris Perl road trip San Francisco Search sed Singapore Solr struts2 Tomcat USA Vegas Video x264 YosemiteLinks
Tag Archives: GWT
HOWTO: Remove GWT package from url when using gwt-maven
Seriously, who wants a url like /my.long.package.name.Application/Application.html To remedy this use the following steps: Make the webapp directory the same as the output for your gwt code. … <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-war-plugin</artifactId> <configuration> <webappDirectory>${project.build.directory}/${project.build.finalName}/my.long.package.name.Application </webappDirectory> </configuration> </plugin> … Ensure that your … Continue reading