did you take a look at implementing maven-assembly-plugin
<build>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<finalName>finalname-${project.version}</finalName>
</configuration>
....
http://maven.apache.org/plugins/maven-assembly-plugin/assembly-mojo.html
http://stackoverflow.com/questions/1326527/maven-assembly-plugin-custom-jar-filenames
Bon Chance,
Martin
______________________________________________
Note de déni et de confidentialitéCe message est confidentiel et peut être
privilégié. Si vous n'êtes pas le destinataire prévu, nous te demandons avec
bonté que pour satisfaire informez l'expéditeur. N'importe quelle diffusion non
autorisée ou la copie de ceci est interdite. Ce message sert à l'information
seulement et n'aura pas n'importe quel effet légalement obligatoire. Étant
donné que les email peuvent facilement être sujets à la manipulation, nous ne
pouvons accepter aucune responsabilité pour le contenu fourni.
Date: Mon, 2 Jan 2012 17:05:26 +0100
Subject: WebService versioning with maven aar plugin
From: [email protected]
To: [email protected]
Hello,
As i need to deploy several version of my WS, I think the best way is to deploy
different WS, like that :
foo-1.0.aar
foo-2.0.aar
This requires to modify the service.xml to have different service name....
In my pom aar name is define with finalName :
<finalName>foo-${version}</finalName>
<aarName>${project.build.finalName}</aarName>
But I want to use also the property ${version} in the service.xml, but
${version} isn't replaced. And i don't find the option to allow/activate the
filtering like we can do with :
<resources>
<resource>
<directory>foo/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
Is there a way to have a service name versioned dynamically ? and not hard
coded :
<service name="foo-1.0"> ...
<service name="foo-2.0"> ...
Thanks in advance!
Regard,
pym