pom_add_dep(7)
==============
:doctype:	manpage
:man source:	JAVAPACKAGES
:man manual:	Java Packages Tools

NAME
----
pom_add_dep - add dependency to POM file

SYNOPSIS
--------
*%pom_add_dep* groupId*:*artifactId[*:*version[*:*scope]]
  [POM-location] [extra-XML]

*%pom_add_dep_mgmt* groupId:articId[*:*version[*:*scope]]
  [POM-location] [extra-XML]

DESCRIPTION
-----------
These macros patch specified POM file adding a dependency on given
version of artifactId from groupId, with given scope (if
any). *pom_add_dep* adds the dependency to *<dependencies>* XML node,
while *pom_add_dep_mgmt* adds it to *dependencyManagement*.

groupId and artifactId are identifiers of Maven artifact on which
dependency is to be added.  They must be specified.  If version is not
specified then default value of "any" is used.  If scope is not
specified then no scope is defined (Maven defaults to "compile" in
this case).

POM location can be either a full path to the POM file, or a path to
the directory containing *pom.xml*.  If POM location is not given then
*pom.xml* from current working directory is used.

Extra XML is additional XML code to be added into the *<dependency>*
node. This parameter can be ommited, in which case no extra XML is
appended.

EXAMPLES
--------
*%pom_add_dep foo:bar baz* - this call adds dependency on artifact
*foo:bar* to *baz/pom.xml* file.

AUTHOR
------
Written by Mikolaj Izdebski.

REPORTING BUGS
--------------
Bugs should be reported through Red Hat Bugzilla at
http://bugzilla.redhat.com/.

SEE ALSO
--------
*pom_add_parent*(7),
*pom_add_plugin*(7),
*pom_disable_module*(7),
*pom_remove_dep*(7),
*pom_remove_parent*(7),
*pom_remove_plugin*(7),
*pom_set_parent*(7),
*pom_xpath_inject*(7),
*pom_xpath_remove*(7),
*pom_xpath_replace*(7),
*pom_xpath_set*(7).
