Skip to content

Commit

Permalink
revert to java 1.8 for testing purposes
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeloffner committed Feb 23, 2024
1 parent cc358cb commit 27a81fb
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions ant/build-core.xml
Original file line number Diff line number Diff line change
Expand Up @@ -313,8 +313,8 @@
<!-- compie the source -->
<javac
srcdir="${srcInst}"
source="11"
target="11"
source="1.8"
target="1.8"
destdir="${temp}/agent"
includeantruntime="false"
debug="true"
Expand All @@ -336,8 +336,8 @@
<!-- compie the source -->
<javac
srcdir="${srcLoader}"
source="11"
target="11"
source="1.8"
target="1.8"
destdir="${temp}/loader"
debug="true"
includeantruntime="false"
Expand Down Expand Up @@ -371,8 +371,8 @@
<!-- compile the core -->
<javac
srcdir="${srcCore}"
source="11"
target="11"
source="1.8"
target="1.8"
destdir="${core}"
includeantruntime="false"
debug="true"
Expand Down

0 comments on commit 27a81fb

Please sign in to comment.