Friday, August 31, 2012

Re: building a GWT project with fails due to dependency on GWT 2.4.0 (at least 2.5.0-rc1 required)

In sample/pom.xml, add the following after line 34 (after "<artifactId>gwt-maven-plugin</artifactId>"):

<version>${gwtversion}</version>

Then add the following between "</plugins>" and "</build>" (following line 71 after the first step):

<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<configuration>
<failOnMissingWebXml>false</failOnMissingWebXml>
</configuration>
</plugin>
</plugins>
</pluginManagement>

These are problems with the POM and should be fixed in the original project.

-Abraham


On Friday, August 31, 2012 3:40:58 PM UTC-4, koma wrote:
Hi Hilco,

thx for the advice ...

I am anything but a maven expert, this is a 3rd party project I am trying to include.

Can you give me some pointers on how to do that ?

or a sample of a GWT maven project done right ?

--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/LYAwnYSJSEUJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.

No comments:

Post a Comment