The
war-package goal extracts all dependent jangaroo artifacts into
the web application to make them accessible from HTML
pages during execution of the webapp. It also copies optional Jangaroo compiler
output from the current module into the web application.
This goal is NOT bound to the jangaroo lifecycle. It is aimed to be used in conjunction with
the
war lifecycle and, optionally, the Jangaroo
compile goal by defining its execution
as shown in the following snippet
...
<plugin>
<groupId>net.jangaroo</groupId>
<artifactId>jangaroo-maven-plugin</artifactId>
<extensions>true</extensions>
<executions>
<execution>
<goals>
<goal>compile</goal>
<goal>war-package</goal>
</goals>
</execution>
</executions>
</plugin>
...