Hi,

I'm testing the TomEE maven plugin on a JSF project. I
added <updateOnlyExtension>.xhtml</updateOnlyExtension>.

When I change a xhtml I see on the console
[INFO] [Updating]
/home/fjaekel/java/Eclipse/photon/workspace/PacsWeb/src/main/webapp/page/consultaExame.xhtml
to
/home/fjaekel/java/Eclipse/photon/workspace/PacsWeb/target/apache-tomee/webapps/ResultadosWeb/page/consultaExame.xhtml

But when I hit F5 on the browser the page is not updated.

Am I missing something?
Thanks

Plugin config: ${tomee.version} is 7.0.5
<plugin>
<groupId>org.apache.tomee.maven</groupId>
<artifactId>tomee-maven-plugin</artifactId>
<version>${tomee.version}</version>
<configuration>
<reloadOnUpdate>true</reloadOnUpdate>
<synchronization>
<!-- extensions triggering a redeployment -->
<extensions>
<extension>.class</extension>
</extensions>
<updateOnlyExtensions>
<updateOnlyExtension>.xhtml</updateOnlyExtension>
<updateOnlyExtension>.js</updateOnlyExtension>
<updateOnlyExtension>.css</updateOnlyExtension>
</updateOnlyExtensions>
</synchronization>
<tomeeVersion>${tomee.version}</tomeeVersion>
<tomeeClassifier>plus</tomeeClassifier>
<checkStarted>true</checkStarted>
<config>${project.basedir}/src/test/tomee/conf</config>
<libs>
<lib>mysql:mysql-connector-java:5.1.47</lib>
<lib>org.firebirdsql.jdbc:jaybird-jdk18:3.0.4</lib>
</libs>
</configuration>
</plugin>

Reply via email to