Update JFlex to 1.7.0

Previous patched version (1.4.3) from Itellij was dropped. As we are using skeleton from Intellij, we should update our jflex version accordingly
This commit is contained in:
Mikhail Zarechenskiy
2016-11-07 15:37:01 +03:00
parent 8feaaf4df0
commit c956428d96
2 changed files with 3 additions and 6 deletions
+1 -2
View File
@@ -10,11 +10,10 @@
<sequential>
<delete dir="${out.dir}"/>
<mkdir dir="${out.dir}"/>
<java classname="JFlex.Main"
<java classname="jflex.Main"
jvmargs="-Xmx512M"
fork="true"
failonerror="true">
<arg value="-sliceandcharat"/>
<arg value="-skel"/>
<arg value="@{skeleton}"/>
<arg value="-d"/>
+2 -4
View File
@@ -199,11 +199,9 @@
<delete dir="${dependencies}/dx-src" failonerror="false"/>
<untar src="${dependencies}/download/${android-sources.tgz}" dest="${dependencies}/dx-src" compression="gzip"/>
<!-- jflex 1.4 -->
<mkdir dir="${dependencies}/jflex"/>
<get-maven-library prefix="de/jflex" lib="jflex" version="1.4.3" src="false"
target.jar.name.base="JFlex"
dependencies="${dependencies}/jflex"/>
<get src="https://raw.github.com/JetBrains/intellij-community/master/tools/lexer/jflex-1.7.0-SNAPSHOT.jar"
dest="${dependencies}/jflex/JFlex.jar" usetimestamp="true"/>
<get src="https://raw.github.com/JetBrains/intellij-community/master/tools/lexer/idea-flex.skeleton"
dest="${dependencies}/jflex/idea-flex.skeleton" usetimestamp="true"/>