CVS: jcontainer/loom/plugins/maven-sar plugin.jelly,1.9,1.10

mauro-yCVjj/[email protected] Mon, 24 Nov 2003 03:07:16 -0600
Newsgroups gmane.comp.java.jcontainer.cvs
Message-ID <[email protected]>
Update of /cvsroot/jcontainer/jcontainer/loom/plugins/maven-sar
In directory hogshead.codehaus.org:/tmp/cvs-serv18563/loom/plugins/maven-sar

Modified Files:
	plugin.jelly 
Log Message:
Inverted quotes in jelly set command, which were giving
strange errors.  

Index: plugin.jelly
===================================================================
RCS file: /cvsroot/jcontainer/jcontainer/loom/plugins/maven-sar/plugin.jelly,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- plugin.jelly	23 Nov 2003 12:07:36 -0000	1.9
+++ plugin.jelly	24 Nov 2003 09:06:44 -0000	1.10
@@ -7,8 +7,8 @@
     xmlns:util="jelly:util">
 
     <j:set var="maven.sar.final.name" value="${pom.artifactId}.sar"/>
-    <j:set var="metagenerate" value='${context.getVariable("maven.sar.metagenerate")}'/>
-    <j:set var="logging" value='${context.getVariable("maven.sar.logging")}'/>
+    <j:set var="metagenerate" value="${context.getVariable('maven.sar.metagenerate')}"/>
+    <j:set var="logging" value="${context.getVariable('maven.sar.logging')}"/>
 
     <!--==================================================================-->
     <!-- Default goal : Builds a sar file                                 -->