werken 2003/09/05 14:22:26
Modified: src/plugins-build/jar plugin.jelly
Log:
Removing log usage from jar plugin, since it quite possibly is
breaking the bootstrap.
Revision Changes Path
1.21 +1 -5 maven/src/plugins-build/jar/plugin.jelly
Index: plugin.jelly
===================================================================
RCS file: /home/cvs/maven/src/plugins-build/jar/plugin.jelly,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- plugin.jelly 5 Sep 2003 15:14:20 -0000 1.20
+++ plugin.jelly 5 Sep 2003 21:22:26 -0000 1.21
@@ -7,8 +7,7 @@
xmlns:maven="jelly:maven"
xmlns:deploy="deploy"
xmlns:util="jelly:util"
- xmlns:doc="doc"
- xmlns:log="jelly:log">
+ xmlns:doc="doc">
<!-- ================================================================== -->
<!-- J A R -->
@@ -84,7 +83,6 @@
<j:forEach var="attribute" items="${attributeList}">
<j:set var="name"
value="maven.jar.manifest.attribute.${attribute}"/>
<j:set var="value" value="${context.findVariable(name)}"/>
- <log:debug>[user attribute] ${attribute}: ${value}</log:debug>
<ant:attribute name="${attribute}" value="${value}"/>
</j:forEach>
</j:if>
@@ -97,12 +95,10 @@
<j:set var="attributeListVar"
value="maven.jar.manifest.${group}.attributes.list"/>
<j:set var="groupAttributes"
value="${context.findVariable(attributeListVar)}"/>
<util:tokenize var="attributeList" delim=","
trim="true">${groupAttributes}</util:tokenize>
- <log:debug>[group] Name: ${groupName}</log:debug>
<ant:section name="${groupName}">
<j:forEach var="attribute" items="${attributeList}">
<j:set var="name"
value="maven.jar.manifest.${group}.attribute.${attribute}"/>
<j:set var="value" value="${context.findVariable(name)}"/>
- <log:debug>[attribute] ${attribute}: ${value}</log:debug>
<ant:attribute name="${attribute}" value="${value}"/>
</j:forEach>
</ant:section>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]