Hello,
I'd like to create an integration-test archetype for my webapps projects. It
will use cargo and selenium as explained on matt raible blog and some other
blogs/maven wikis.
I get an issue as my POM template must include the cargo "<deployable>"
element to refer to the WAR artifact :
<deployable>
<artifactId>${artifactId}</artifactId>
<type>war</type>
</deployable>
... but artifactId is set to "myproject-integration" when using the
archetype.
Is there any way to make some custom substitutions in the POM templates, or
to make some String computation during POM template renderring ?
Nico.