Spring Archetype
Ran into the following issue, wanted to save someone some time:
The Spring archetype available for download from the webtide site does not work as it is currently configured.
When trying to start the sample webapp, you will get an error about a missing Spring ApplicationListener.
I had to add the following dependency to the project POM file:
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
<version>${spring.version}</version>
</dependency>