You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@maven.apache.org by Peter Neubauer <pe...@neubauer.se> on 2006/08/30 21:33:21 UTC

custom information in the released POM

Hi,
I would like to add some additional information as attributes/elements
to e.g. the dependency tag in the POM that is generated as the result
of a release, so the resulting tag lokos something like

<dependency>
        <groupId>org.osgi</groupId>
        <artifactId>osgi_R4_core</artifactId>
        <version>1.0</version>
       <!--contributed-->
      <startlevel>3</startlevel>
      <start>true</start>
</dependency>

or as attributes

<dependency startlevel="3" start="true">
        <groupId>org.osgi</groupId>
        <artifactId>osgi_R4_core</artifactId>
        <version>1.0</version>
</dependency>

Is it possible to have this information survive the release plugin or
what is the best way to get out such information in a standerd maven
way?

Thanks for any hints!

/peter

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org