Hello,

I have an application (I will use myGroupId:myWebApplication in Maven
notation) which is packaged using Maven as .war file (it is supposed
to be run in jetty from the Java Web Start).

Then I'm creating and deploying the application using
webstart-maven-plugin to my server.
        <plugin>
                <groupId>org.codehaus.mojo.webstart</groupId>
                <artifactId>webstart-maven-plugin</artifactId>
                <executions>
                        <execution>
                                <id>packageJnlpInline</id>
                                <phase>package</phase>
                                <goals>
                                        <goal>jnlp-inline</goal>
                                </goals>
                        </execution>
                </executions>
                <configuration>
                        <jnlp>
                                <mainClass>org.mortbay.jetty.Main</mainClass>
                        </jnlp>
                        <dependencies>
                                <includes>
                                        
<include>myGroupId:myWebApplication</include>
                                        
<include>org.mortbay.jetty:jetty</include>
                                        
<include>org.mortbay.jetty:jetty-util</include>
                                        
<include>org.mortbay.jetty:servlet-api</include>
                                </includes>
                        </dependencies>
                </configuration>
        </plugin>

However, myGroupId:myWebApplication is of type WAR and is not included
in the JNLP ... how can this be fixed?

Thanks,
Zdenek Zikan

---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email


Reply via email to