Hi,

I'm using Maven to manage a Java3D Webstart project.

The problem is that i need to create an extension in the JNLP like this:

<extension href="https://j3d-webstart.dev.java.net/release/java3d-1.3-latest.jnlp"/>

I do not want to define the jar's names as these are defined in this file taking into account the OS version.

In the plugin.jelly there is no such case! All of them define a name for the jars.. and those with a jnlp.extension.site use the ${lib.file.name} as the jar name.

Is there a fix for this?!

Nonetheless i'm not shure how to specify the dependency for building the jnlp as there is no need to download any jar file... what i've done is :

<dependency>
<artifactId>maven-jnlp-plugin</artifactId>
<groupId>maven</groupId>
<version>1.4</version>
<type>plugin</type>
<properties>
<jnlp.extension.site>j3d-webstart.dev.java.net</jnlp.extension.site>
<jnlp.extension.dir>release</jnlp.extension.dir>
<jnlp.extension.jnlp>java3d-1.3-latest.jnlp</jnlp.extension.jnlp>
</properties>
</dependency>


still the result is not the expected.... even with the site definition i get something like:

<extension href="release/java3d-1.3-latest.jnlp" name="maven-jnlp-plugin-1.4.1.jar">
</extension>


I hope you can help me with this...

Thank you in advance for any comment regarding this subject.


Nelson

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



Reply via email to