--- ../maven-war-plugin-1.6.1.orig/plugin.jelly	2004-10-23 08:53:08.000000000 -0500
+++ plugin.jelly	2005-04-13 13:07:26.000000000 -0500
@@ -90,6 +90,15 @@
                      value="${pom.currentVersion}" />
           <ant:attribute name="Implementation-Vendor"
                      value="${pom.organization.name}" />
+			<j:if test="${context.getVariable('maven.war.manifest.attributes.list') != null}">
+				<util:tokenize var="attributeList" delim="," trim="true">${maven.war.manifest.attributes.list}</util:tokenize>
+				<j:forEach var="attribute" items="${attributeList}">
+					<j:set var="name" value="maven.war.manifest.attribute.${attribute}"/>
+					<j:set var="value" value="${context.findVariable(name)}"/>
+					<ant:attribute name="${attribute}" value="${value}"/>
+				</j:forEach>
+			</j:if>
+
         </ant:section>
       </ant:manifest>
 

