Thanks; I started seeing through the fog as well.  I don't know where I came up 
with that ${pom naming scheme.  The scm variable needs project. prepended, so 
what works is

 export REL=${project.version}
 export LAYER=${layer}
 export SVNURL=${project.scm.developerConnection}

Thanks again!


Olivier Dehon wrote:
On Fri, 2008-11-21 at 14:07 -0800, Rusty Wright wrote:
I'm trying to inject some properties from my pom.xml into a shell script using 
the assembly plugin.  Is that possible?  Is there some special syntax that I 
should be using?  In my pom.xml I have

[snip]

And the deploy.sh script has at the top

  export REL=${project.version}
  export LAYER=${pom.layer}
  export SVNURL=${pom.developerConnection}

I believe you want:

export LAYER=${layer}
export SVNURL=${scm.developerConnection}

(untested)

-Olivier



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


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

Reply via email to