- Documentation (2.5.0-rc1)
- Release Notes
- Tutorials
- Reference
- Introduction
- Settings Files
- Ivy Files
- Ant Tasks
- artifactproperty
- artifactreport
- buildlist
- buildnumber
- buildobr
- cachefileset
- cachepath
- checkdepsupdate
- cleancache
- configure
- convertmanifest
- convertpom
- deliver
- dependencytree
- findrevision
- fixdeps
- info
- install
- listmodules
- makepom
- post resolve tasks
- publish
- report
- repreport
- resolve
- resources
- retrieve
- settings
- var
- Using standalone
- OSGi
- Developer doc
makepom
[since 2.0]
The makepom
task allows to convert an Ivy file to a POM file.
An example of use is to publish an Ivy managed module to a Maven 2 repository.
Note that all Ivy features are not supported by Maven POMs, so the converted POM may not resolve to the exact same dependencies as the original Ivy file.
[since 2.2]
It is possible to specify a template file defining the structure of the generated POM. The following processing is done on this template:
-
properties like
${property.name}
are replaced if they are defined in Ant or by theivy:makepom
task (see below for the standard properties) -
lines containing the string
SKIP_LINE
are skipped. -
the defined dependencies will be added to the first
<dependencies>
element encountered in the POM template. If the template doesn’t contain a<dependencies>
element, it is generated at the end of the POM.
The ivy:makepom
task defines following properties that can be used in the template.
-
ivy.pom.groupId
: defaults to the organisation as defined in the ivy.xml file -
ivy.pom.artifactId
: defaults to the value of theartifactName
attribute of this task, or the name of the module as defined in the ivy.xml file -
ivy.pom.packaging
: defaults to the value of theartifactPackaging
attribute of this task, or the extension of the artifact -
ivy.pom.version
: defaults to the revision as defined in the ivy.xml file -
ivy.pom.name
: defaults toSKIP_LINE
-
ivy.pom.description
: defaults to the value of thedescription
attribute of this task, orSKIP_LINE
when not specified -
ivy.pom.url
: defaults to the homepage as defined in the ivy.xml file -
ivy.pom.license
: the content of the specifiedheaderFile
, orSKIP_LINE
if not specified -
ivy.pom.header
: some Ivy information, orSKIP_LINE
if theprintIvyInfo
attribute is set tofalse
.
Note that each property can be given a value manually in the Ant build file. In that case, Ivy will use the value specified in the build file instead of the default value.
The default template that ships with Ivy looks like this:
${ivy.pom.license}
${ivy.pom.header}
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>${ivy.pom.groupId}</groupId>
<artifactId>${ivy.pom.artifactId}</artifactId>
<packaging>${ivy.pom.packaging}</packaging>
<version>${ivy.pom.version}</version>
<name>${ivy.pom.name}</name>
<description>${ivy.pom.description}</description>
<url>${ivy.pom.url}</url>
</project>
Attributes
Attribute | Description | Required |
---|---|---|
ivyfile |
the source Ivy file to convert |
Yes |
pomfile |
the destination POM file to write |
Yes |
templatefile |
the template file to use when generating the POM (since 2.2) |
No, defaults to the internal template file. |
artifactName |
The name of the artifact which is represented by the generated POM file. (since 2.2) |
No, defaults to the module name in the source Ivy file. |
artifactPackaging |
The packaging of the artifact which is represented by the generated POM file. (since 2.2) |
No, the artifact type is taken by default. Defaults to |
conf |
a comma separated list of the configurations to include in the generated POM. Wildcards are supported here. (since 2.2) |
No, defaults to all configurations. |
settingsRef |
A reference to Ivy settings that must be used by this task |
No, defaults to |
printIvyInfo |
Add some information about Ivy to the generated POM. (since 2.2) |
No, defaults to |
headerFile |
the header of the generated POM file |
No |
description |
The description that will be added to the generated POM. (since 2.2) |
No, defaults to no description or (since 2.5) to the description in the source Ivy file. |
Child elements
Element | Description | Cardinality |
---|---|---|
mapping |
describes the mapping from an Ivy module configuration to a Maven POM scope.
These elements takes two attributes: |
0..n |
dependency |
describes extra dependencies that should be added to the generated Maven POM file.
These elements takes the following attributes: |
0..n |
Examples
<ivy:makepom ivyfile="${basedir}/path/to/ivy.xml" pomfile="${basedir}/path/to/module.pom" conf="default,runtime">
<mapping conf="default" scope="compile"/>
<mapping conf="runtime" scope="runtime"/>
<dependency group="com.acme" artifact="acme-logging" version="1.0" optional="true"/>
</ivy:makepom>
Converts ${basedir}/path/to/ivy.xml
to a POM and writes the result to ${basedir}/path/to/module.pom
. The configuration 'default' in the parsed Ivy file will be mapped to the scope 'compile', the configuration 'runtime' will be mapped to 'runtime', and other configurations will be excluded.
The com.acme.acme-logging artifact with version 1.0 will be added as an optional dependency.