aboutsummaryrefslogtreecommitdiffstats
path: root/build.xml
diff options
context:
space:
mode:
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml6
1 files changed, 5 insertions, 1 deletions
diff --git a/build.xml b/build.xml
index b3db7068a3..1896cc41f3 100644
--- a/build.xml
+++ b/build.xml
@@ -1074,8 +1074,10 @@ under the License.
</filterchain>
</loadresource>
+ <echo message="Building classes for @{module}"/>
+
<!-- compile the sources -->
- <javac release="8"
+ <javac
target="${jdk.version.class}"
source="${jdk.version.source}"
destdir="@{classes}"
@@ -1097,6 +1099,8 @@ under the License.
</filterchain>
</loadresource>
+ <echo message="Building java9+ classes for @{module}"/>
+
<!-- compile jigsaw files to sources, so we don't forget to update/provide them for Java 8 builds -->
<javac release="9"
srcdir="${basedir}/@{module}/src/main/java9"