I can't find how to name an assembly. It should contain a free name and the version number.
Configure the maven-assembly-plugin in your pom like this:
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<finalName>yourfreename-${version}</finalName>
...
</configuration>
</plugin>
-dirk
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
