git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@113315 13f79535-47bb-0310-9956-ffa450edef68
46 lines
1.2 KiB
XML
46 lines
1.2 KiB
XML
<?xml version="1.0"?>
|
|
<document xmlns:j="jelly:core">
|
|
|
|
<properties>
|
|
<title>Dependencies</title>
|
|
</properties>
|
|
|
|
<body>
|
|
<section name="Dependencies">
|
|
<j:if test="${size(pom.dependencies) == 0}">
|
|
<p>
|
|
There are no dependencies for this project. It is a standalone
|
|
application that does not depend on any other project.
|
|
</p>
|
|
</j:if>
|
|
<j:if test="${size(pom.dependencies) != 0}">
|
|
<p>
|
|
The following is a list of dependencies for this project. These
|
|
dependencies are required to compile and run the application:
|
|
</p>
|
|
<table>
|
|
<tr>
|
|
<th>ID</th>
|
|
<th>Version</th>
|
|
<th>JAR</th>
|
|
</tr>
|
|
<j:forEach var="dep" items="${pom.dependencies}">
|
|
<tr>
|
|
<td>
|
|
<j:if test="${!empty(dep.url)}">
|
|
<a href="${dep.url}">${dep.groupId}</a>
|
|
</j:if>
|
|
<j:if test="${empty(dep.url)}">
|
|
${dep.groupId}
|
|
</j:if>
|
|
</td>
|
|
<td>${dep.version}</td>
|
|
<td>${dep.artifact}</td>
|
|
</tr>
|
|
</j:forEach>
|
|
</table>
|
|
</j:if>
|
|
</section>
|
|
</body>
|
|
</document>
|