Hi,

Here is my pom.xml that corresponds to the webstart:

[code]
<!--    WebStart Application for administration -->

            <!--

            <plugin>

                <groupId>org.codehaus.mojo</groupId>

                <artifactId>dependency-maven-plugin</artifactId>

                <executions>

                    <execution>

                        <phase>process-resources</phase>

                        <goals>

                            <goal>unpack</goal>

                        </goals>

                    </execution>

                </executions>

                <configuration>

                    <artifactItems>

                        <artifactItem>

                            <groupId>com.walterjwhite</groupId>

                            <artifactId>administration-jnlp</artifactId>

                            <version>1.0</version>

                            <type>zip</type>                            

                        </artifactItem>

                    </artifactItems>

                   
<outputDirectory>${project.build.directory}/${project.build.finalName}/webstart</outputDirectory>

                </configuration>

            </plugin>

            -->

            <!--

            <plugin>

                <groupId>org.codehaus.mojo</groupId>

                <artifactId>webstart-maven-plugin</artifactId>

                <executions>

                    <execution>

                        <goals>

                            <goal>jnlp</goal>

                        </goals>

                    </execution>

                </executions>

                <configuration>

                   
<inputTemplateResourcePath>${project.basedir}/src/main/webapp/jnlp</inputTemplateResourcePath>

                    <libPath>lib</libPath>

                    <jnlp>

                        <outputFile>administration.jnlp</outputFile>

                        
<mainClass>com.walterjwhite.gui.AdministrationForm</mainClass>

                    </jnlp>

                    <sign>

                        <keystore></keystore>

                        <keypass></keypass>

                        <storepass></storepass>

                        <storetype></storetype>

                        <alias></alias>

                        <validity></validity>

                        

                        <dnameCn></dnameCn>

                        <dnameOu></dnameOu>

                        <dnameO></dnameO>

                        <dnameL></dnameL>

                        <dnameSt></dnameSt>

                        <dnameC></dnameC>

                        

                        <verify>true</verify>

                    </sign>

                    

                    <pack200>true</pack200>

                    <gzip>true</gzip>

                    <outputJarVersions>true</outputJarVersions>

                    <verbose>true</verbose>

                    

                </configuration>

            </plugin>

            -->
[/code]


Thanks,
Walter
-- 
View this message in context: 
http://www.nabble.com/webstart-question-tp16302197s177p16467388.html
Sent from the Maven - Users mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to