mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-26 19:20:45 +00:00
java 9 compliance
- base64, bytearrtohex, installed fonts, xml sax parser
This commit is contained in:
@@ -11,7 +11,7 @@
|
||||
<fileset dir="${ant.lib.dir}" includes="**/*.jar"/>
|
||||
</path>
|
||||
<taskdef name="testng" classname="org.testng.TestNGAntTask" classpathref="ant.lib.classpath" />
|
||||
<taskdef uri="antlib:org.jacoco.ant" resource="org/jacoco/ant/antlib.xml" classpathref="ant.lib.classpath" />
|
||||
<!--<taskdef uri="antlib:org.jacoco.ant" resource="org/jacoco/ant/antlib.xml" classpathref="ant.lib.classpath" />-->
|
||||
<taskdef name="jflex" classname="jflex.anttask.JFlexTask" classpathref="ant.lib.classpath" />
|
||||
|
||||
|
||||
@@ -44,7 +44,7 @@
|
||||
<mkdir dir="${lib.dir}"/>
|
||||
<javac srcdir="${src.dir}" destdir="${compile.dir}" includes="**/*.java" target="${target.java}" source="${target.java}" debug="true"
|
||||
debuglevel="lines,vars,source" includeantruntime="false" encoding="utf-8">
|
||||
<compilerarg line="-Xlint:unchecked"/> <!-- For Java 8: -Xdiags:verbose -->
|
||||
<compilerarg line="-Xlint:unchecked -Xlint:deprecation"/> <!-- For Java 8: -Xdiags:verbose -->
|
||||
<classpath>
|
||||
<fileset dir="${lib.dir}" includes="**/*.jar"/>
|
||||
</classpath>
|
||||
@@ -84,7 +84,7 @@
|
||||
<mkdir dir="${test.result.dir}/raw/"/>
|
||||
|
||||
<mkdir dir="${coverage.dir}" />
|
||||
<jacoco:coverage destfile="${coverage.dir}/jacoco.exec">
|
||||
<!--<jacoco:coverage destfile="${coverage.dir}/jacoco.exec">-->
|
||||
<testng
|
||||
outputDir="${test.result.dir}"
|
||||
haltOnFailure="${test.halt}" verbose="2" workingDir="${basedir}" >
|
||||
@@ -99,11 +99,11 @@
|
||||
<classfileset dir="${compile.test.dir}" includes="**/*.class" />
|
||||
|
||||
</testng>
|
||||
</jacoco:coverage>
|
||||
<!--</jacoco:coverage>-->
|
||||
<!-- Coverage report -->
|
||||
<mkdir dir="${coverage.result.dir}"/>
|
||||
|
||||
<jacoco:report>
|
||||
<!--<jacoco:report>
|
||||
<executiondata>
|
||||
<file file="${coverage.dir}/jacoco.exec" />
|
||||
</executiondata>
|
||||
@@ -117,6 +117,7 @@
|
||||
</structure>
|
||||
<html destdir="${coverage.result.dir}" />
|
||||
</jacoco:report>
|
||||
-->
|
||||
</target>
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user