ant-contrib/ant-contrib-java-8.patch
Petr Šabata d58b66c208 RHEL 9.0.0 Alpha bootstrap
The content of this branch was automatically imported from Fedora ELN
with the following as its source:
https://src.fedoraproject.org/rpms/ant-contrib#5e41bf56237c4ea394e44c9053dbc0c9f5fe20bd
2020-10-14 21:39:07 +02:00

27 lines
751 B
Diff

diff --git a/build.xml b/build.xml
index eb6a80b..dcf3522 100644
--- a/build.xml
+++ b/build.xml
@@ -58,8 +58,8 @@
destdir="${target.classes.dir}"
debug="true"
classpathref="compile.classpath"
- source="${jdk.source}"
- target="${jdk.target}"
+ source="1.8"
+ target="1.8"
/>
<copy todir="${target.classes.dir}">
@@ -73,8 +73,8 @@
<javac srcdir="${test.src.dir}"
destdir="${target.test-classes.dir}"
debug="true"
- source="${jdk.source}"
- target="${jdk.target}">
+ source="1.8"
+ target="1.8">
<classpath>
<path refid="test.classpath" />
<pathelement location="${target.classes.dir}" />