>What I want to do is pass ${buildNumber} to the maven jar/ear/war
plugins

Here is how we use it in jar plugin for example:

                        <plugin>
        
<groupId>org.apache.maven.plugins</groupId>
        
<artifactId>maven-jar-plugin</artifactId>
                                <configuration>
                                        <archive>
                                                <manifestEntries>
        
<BuildVersion>${buildNumber}</BuildVersion>
        
<BuildDate>${date}</BuildDate>
                                                </manifestEntries>
                                        </archive>
                                </configuration>
                        </plugin>

Best regards,
                  Juri.

-----Original Message-----
From: Enrique Gaona [mailto:[EMAIL PROTECTED] 
Sent: Friday, February 23, 2007 8:42 PM
To: Maven Users List
Subject: How-to pass variables from one plugin to another



Greets,
How do I go about setting the value of a variable from 1 plugin and
passing
that variable to another plugin.   If I'm being vague, here are the
details:-)   I have a custom plugin (buildtools-tag-plugins) where I set
the buildNumber instance variable to the current date and time and then
I
add it to the project hashtable using
project.getProperties().put("buildNumber", builddate).  What I want to
do
is pass ${buildNumber} to the maven jar/ear/war plugins  as such:
                        <manifestEntries>

<Implementation-Build>

${buildNumber}

</Implementation-Build>
                                                </manifestEntries>

In my ear and war MANIFEST files, I only get Implementation-Build: null
,
while in my jar files MANIFEST files Implementation-Build doesn't even
show
up.

This is how  am invoking my build:
 mvn clean com.ibm.csdp.maven.plugins:buildtools-tag-plugins:tagbuild
-Dtagbuild.tagPrefix='CSDP_DEV_tag' antrun:run install rpm:rpm

Any help is very much appreciated.   Thanks

Enrique

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

Reply via email to