Important Notice - Forums is archived
To simplify things and help our users to be more productive, we have archived the current forum and focus our efforts on helping developers on Stack Overflow. You can post new questions on Stack Overflow or join our Discord channel.

Vaadin lets you build secure, UX-first PWAs entirely in Java.
Free ebook & tutorial.
maven project vaadin and gwt goals fails to work at install phase
Hello,
I created a vaadin project using the following
c:\apache-maven-3.0.4\bin\mvn archetype:generate
-DarchetypeGroupId=com.vaadin
-DarchetypeArtifactId=vaadin-archetype-clean
-DgroupId=my.company
-DartifactId=my.company.test
-Dversion=0.1
-Dpackaging=war
-DarchetypeRepository=http://repo1.maven.org/maven2
I want to make the goals vaadin:update-widgetset and gwt:compile as part of install. On the execution of both of these plugins I added the
<phase>install</phase> but it does not trigger these goals when I run mvn install.
Both goals work well when I run them independently.
Any help greatly appreciated.
- Anu
Found the problem, the problem was with maven, under <build> there was also the <pluginManagement> tag.
When I remvoed it, the <phase>started working.
I am still not certain how the pluginManagement affetced this behavior, will post ot maven list.
- Ana