views:

43

answers:

0

Hi there!

I am trying to setup embedded glassfish maven plugin and I succeeded, but I can't make jsp files to be hot-swapped.

Here is my config:

<plugin>
    <groupId>org.glassfish</groupId>
    <artifactId>maven-embedded-glassfish-plugin</artifactId>
    <version>3.0.1</version>
    <configuration>
        <instanceRoot>${project.build.directory}</instanceRoot>
        <goalPrefix>embedded-glassfish</goalPrefix>
        <app>target/myapp.war</app>
        <port>8080</port>
        <contextRoot>myapp</contextRoot>
        <autoDelete>true</autoDelete>
    </configuration>
</plugin>

Any clues?