Skip navigation.

artifactproperty

since 1.1

Sets an ant property for each dependency artifacts previously resolved.

Please prefer the use of retrieve + standard ant path creation, which make your build more independent from ivy (once artifacts are properly retrieved, ivy is not required any more).

The property name and value are generated using the classical pattern concept, all artifact tokens and ivy variables being available.

Attribute Description Required
name a pattern used to generate the name of the properties to set Yes
value a pattern used to generate the value of the properties to set Yes
conf a comma separated list of the configurations for which properties should be set No. Defaults to the configurations resolved by the last resolve call, or * if no resolve was explicitly called
haltonfailure true to halt the build on ivy failure, false to continue No. Defaults to true
validate true to force ivy files validation against ivy.xsd, false to force no validation No. Defaults to default ivy value (as configured in configuration file)

Example

Suppose we have one dependency called mydep in revision 1.0 publishing two artifacts: foo.jar and bar.jar.
Then:

<artifactproperty conf="build"
      name="[module].[artifact]-[revision]"
      value="${cache.dir}/[module]/[artifact]-[revision].[ext]"/>

will set two properties:

mydep.foo-1.0 = my/cache/dir/mydep/foo-1.0.jar
mydep.bar-1.0 = my/cache/dir/mydep/bar-1.0.jar