Author: mkienenb
Date: Wed Jun 3 02:29:03 2015
New Revision: 1683212
URL: http://svn.apache.org/r1683212
Log:
VELOCITY-862: Rebuilding parser using javacc 4.1 loses Node import
Modified:
velocity/engine/branches/1.x/build/build.xml
Modified: velocity/engine/branches/1.x/build/build.xml
URL:
http://svn.apache.org/viewvc/velocity/engine/branches/1.x/build/build.xml?rev=1683212&r1=1683211&r2=1683212&view=diff
==============================================================================
--- velocity/engine/branches/1.x/build/build.xml (original)
+++ velocity/engine/branches/1.x/build/build.xml Wed Jun 3 02:29:03 2015
@@ -375,6 +375,12 @@
<replace
file="${src.java.dir}/org/apache/velocity/runtime/parser/ParserTokenManager.java"
token="StringBuffer"
value="StrBuilder"/>
+ <replace
file="${src.java.dir}/org/apache/velocity/runtime/parser/JJTParserState.java"
+ token="package org.apache.velocity.runtime.parser;">
+ <replacevalue><![CDATA[package org.apache.velocity.runtime.parser;
+
+import org.apache.velocity.runtime.parser.node.Node;]]></replacevalue>
+</replace>
</target>
<target name="javacc-cleanup" depends="parser-check">