Hi Jerome, That looks like it has good information for configuring my project. I hope to get a chance this weekend to try it out and get back to you. Thanks much for the information, I just need an example of how it works and should be able to figure out the rest.
Thanks, Walter Jerome Lacoste-2 wrote: > > On Thu, Apr 3, 2008 at 12:42 PM, walterw <[EMAIL PROTECTED]> wrote: >> >> Hi, >> >> Here is my pom.xml that corresponds to the webstart: > > Walter > > I also highly recommend you to look at the various integration tests > > http://svn.mojo.codehaus.org/browse/mojo/trunk/mojo/webstart/webstart-maven-plugin/src/it > > it002, it003 and it006 deal with webstart + WARs (some with the jnlp, > others with jnlp for download servlet). > > As for your code, have you tried with the jnlp-inline mojo instead ? > > There a bit of confusion in the naming of the mojos and when to use > them. I need to clean this up, but I wonder if the least confusing is > not to rename them completely. > > J > >> [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] >> >> > > > > -- > Jerome Lacoste > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > > -- View this message in context: http://www.nabble.com/webstart-question-tp16302197s177p16495721.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]
