dion 2003/08/10 19:12:00
Modified: src/plugins-build/test Tag: MAVEN_RC1_STABLE plugin.jelly
Log:
Fixes for MAVEN-541
Revision Changes Path
No revision
No revision
1.12.2.2 +23 -0 maven/src/plugins-build/test/plugin.jelly
Index: plugin.jelly
===================================================================
RCS file: /home/cvs/maven/src/plugins-build/test/plugin.jelly,v
retrieving revision 1.12.2.1
retrieving revision 1.12.2.2
diff -u -r1.12.2.1 -r1.12.2.2
--- plugin.jelly 7 Aug 2003 17:00:54 -0000 1.12.2.1
+++ plugin.jelly 11 Aug 2003 02:12:00 -0000 1.12.2.2
@@ -39,6 +39,29 @@
<src>
<path refid="maven.test.compile.src.set"/>
</src>
+ <j:if test="${context.getVariable('maven.compile.compilerargs') != null}">
+ <compilerarg line="${maven.compile.compilerargs}" />
+ </j:if>
+
+ <j:if test="${context.getVariable('maven.compile.encoding') != null}">
+ <setProperty name="encoding" value="${maven.compile.encoding}" />
+ </j:if>
+
+ <j:if test="${context.getVariable('maven.compile.executable') != null}">
+ <setProperty name="executable" value="${maven.compile.executable}" />
+ </j:if>
+
+ <j:if test="${context.getVariable('maven.compile.fork') != null}">
+ <setProperty name="fork" value="${maven.compile.fork}" />
+ </j:if>
+
+ <j:if test="${context.getVariable('maven.compile.source') != null}">
+ <setProperty name="source" value="${maven.compile.source}" />
+ </j:if>
+
+ <j:if test="${context.getVariable('maven.compile.verbose') != null}">
+ <setProperty name="verbose" value="${maven.compile.verbose}" />
+ </j:if>
</javac>
</j:if>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]