2003-04-10 10:51:44 +00:00

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>