remove jdt.compiler.jar as javac engine from subprojects

This commit is contained in:
Ben Fry
2021-07-04 21:21:39 -04:00
parent d9ae6c9aac
commit 37752a217c
4 changed files with 17 additions and 21 deletions

View File

@@ -6,24 +6,22 @@
<delete file="library/io.jar" />
</target>
<property name="core.path" location="../../../core/library/core.jar" />
<target name="compile" description="Compile sources">
<condition property="core-built">
<available file="../../../core/library/core.jar" />
<available file="${core.path}" />
</condition>
<fail unless="core-built" message="Please build the core library first and make sure it sits in ../../../core/library/core.jar" />
<fail unless="core-built" message="Please build the core library first and make sure it is located at ${core.path}" />
<mkdir dir="bin" />
<javac source="11"
target="11"
srcdir="src" destdir="bin"
encoding="UTF-8"
includeAntRuntime="false"
classpath="../../../core/library/core.jar"
nowarn="true"
compiler="org.eclipse.jdt.core.JDTCompilerAdapter">
<compilerclasspath path="../../mode/org.eclipse.jdt.core.jar;
../../mode/jdtCompilerAdapter.jar" />
</javac>
target="11"
srcdir="src" destdir="bin"
encoding="UTF-8"
includeAntRuntime="false"
classpath="${core.path}"
nowarn="true" />
</target>
<target name="build" depends="compile" description="Build I/O library">

1
java/libraries/io/library/.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
io.jar