Using the tomcat plugin "tomcat7-maven-plugin", I'm trying to get the "hot deploy" working with the embedded tomcat (using tomcat7:run).
I'm using a typical maven web app configuration under eclipse. From now, I can debug my java class and they are getting redeployed automatically on a code change
But my html and jsp don't get *re*deployed (${basedir}/src/main/webapp).
<plugin>
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat7-maven-plugin</artifactId>
<version>2.2</version>
<configuration>
<update>true</update>
<contextReloadable>true</contextReloadable>
</configuration>
</plugin>
(I'm using the archetype "Thymeleaf Spring Maven Archetype").
Any idea how to get html and jsp redeployed on change ?