Issue Type: Bug Bug
Affects Versions: 1.0-beta-4
Assignee: Unassigned
Components: build
Created: 18/Dec/13 3:43 AM
Description:

clean package webstart:jnlp

I got:

------------------------------------------------------------------------
BUILD FAILURE
------------------------------------------------------------------------
Total time: 9.730s
Finished at: Wed Dec 18 10:39:28 CET 2013
Final Memory: 34M/370M
------------------------------------------------------------------------
Failed to execute goal org.codehaus.mojo:webstart-maven-plugin:1.0-beta-4:jnlp (default) on project lilou-integration-stock-gui: Unable to parse configuration of mojo org.codehaus.mojo:webstart-maven-plugin:1.0-beta-4:jnlp for parameter pack200: Cannot configure instance of org.codehaus.mojo.webstart.Pack200Config from true -> [Help 1]

To see the full stack trace of the errors, re-run Maven with the -e switch.
Re-run Maven using the -X switch to enable full debug logging.

For more information about the errors and possible solutions, please read the following articles:
[Help 1] http://cwiki.apache.org/confluence/display/MAVEN/PluginConfigurationException

my config:

<plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>webstart-maven-plugin</artifactId>
                <version>1.0-beta-4</version>
                <executions>
                    <execution>
                        <goals>
                            <goal>jnlp</goal> <!-- use jnlp, jnlp-inline or jnlp-single as appropriate -->
                        </goals>
                    </execution>
                </executions>
                <configuration>
                    
                    <updateManifestEntries>
                        <Permissions>all-permissions</Permissions>
                        <Codebase>*.softproject.com.pl</Codebase>
                    </updateManifestEntries>

                    <!--outputDirectory></outputDirectory--> <!-- not required?? -->

                    <!--
                    Set to true to exclude all transitive dependencies. Default is false.
                    -->
                    <excludeTransitive>false</excludeTransitive>

                    <!-- The path where the libraries are stored within the jnlp structure. not required. by default the libraries are within the working directory -->
<!--                    <libPath>lib</libPath>-->

                    <!--resourcesDirectory>${project.basedir}/src/main/jnlp/resources</resourcesDirectory--> <!-- default value -->

                    <!-- JNLP generation -->
                    <jnlp>
                        <!-- default values -->
                        <inputTemplateResourcePath>${project.basedir}</inputTemplateResourcePath>
                        <inputTemplate>src/main/jnlp/template.vm</inputTemplate> <!-- relative to inputTemplateResourcePath -->
                        <outputFile>stock-gui.jnlp</outputFile> <!-- defaults to launch.jnlp -->

                        <!-- used to automatically identify the jar containing the main class. -->
                        <!-- this is perhaps going to change -->
                        <mainClass>pl.com.softproject.lilou.integration.storegui.LilouStoreGUI</mainClass>
                    </jnlp>


                    <!-- SIGNING -->
                    <!-- defining this will automatically sign the jar and its dependencies, if necessary -->
                    <sign>
                        <keystore>...............</keystore>
                        <keypass>...........</keypass> 
                        <storepass>..........</storepass>
                        <alias>..............</alias>
                    </sign>

                    <!-- BUILDING PROCESS -->

                    <pack200>true</pack200>
                    <gzip>true</gzip> <!-- default force when pack200 false, true when pack200 selected ?? -->

                    <!-- causes a version attribute to be output in each jar resource element, optional, default is false -->
                    <outputJarVersions>true</outputJarVersions>

                    <!--install>false</install--> <!-- not yet supported -->
                    <verbose>true</verbose>
                </configuration>
            </plugin>
Environment: jdk 1.7u45 maven 3.0.5
Project: Mojo's Webstart Maven Plugin
Priority: Major Major
Reporter: Adrian Lapierre
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
--------------------------------------------------------------------- To unsubscribe from this list, please visit: http://xircles.codehaus.org/manage_email

Reply via email to