|
327 | 327 | <property name="ant-javafx.jar.location" value="${platform.home}${file.separator}tools${file.separator}ant-javafx.jar"/> |
328 | 328 | </target> |
329 | 329 | <target name="-check-ant-javafx-in-probjdk-lib" unless="ant-javafx.jar.location"> |
330 | | - <condition property="do.set.ant-javafx.in.probjdk.lib.has_jre"> |
331 | | - <available file="${java.home}${file.separator}..${file.separator}lib${file.separator}ant-javafx.jar"/> |
332 | | - </condition> |
333 | | - <condition property="do.set.ant-javafx.in.probjdk.lib.no_jre"> |
334 | | - <available file="${java.home}${file.separator}lib${file.separator}ant-javafx.jar"/> |
335 | | - </condition> |
336 | 330 | <condition property="do.set.ant-javafx.in.probjdk.lib"> |
337 | 331 | <and> |
338 | 332 | <not><isset property="ant-javafx.jar.location"/></not> |
339 | | - <or> |
340 | | - <isset property="do.set.ant-javafx.in.probjdk.lib.has_jre"/> |
341 | | - <isset property="do.set.ant-javafx.in.probjdk.lib.no_jre"/> |
342 | | - </or> |
| 333 | + <available file="${java.home}${file.separator}..${file.separator}lib${file.separator}ant-javafx.jar"/> |
343 | 334 | </and> |
344 | 335 | </condition> |
345 | 336 | </target> |
346 | 337 | <target name="-set-ant-javafx-in-probjdk-lib" depends="-set-ant-javafx-in-platform-home-tools,-check-ant-javafx-in-probjdk-lib" if="do.set.ant-javafx.in.probjdk.lib"> |
347 | | - <condition property="ant-javafx.jar.location" value="${java.home}${file.separator}..${file.separator}lib${file.separator}ant-javafx.jar" else="${java.home}${file.separator}lib${file.separator}ant-javafx.jar"> |
348 | | - <isset property="do.set.ant-javafx.in.probjdk.lib.has_jre"/> |
349 | | - </condition> |
| 338 | + <property name="ant-javafx.jar.location" value="${java.home}${file.separator}..${file.separator}lib${file.separator}ant-javafx.jar"/> |
350 | 339 | </target> |
351 | 340 | <target name="-check-ant-javafx-in-probjdk-tools" unless="ant-javafx.jar.location"> |
352 | | - <condition property="do.set.ant-javafx.in.probjdk.tools.has_jre"> |
353 | | - <available file="${java.home}${file.separator}..${file.separator}tools${file.separator}ant-javafx.jar"/> |
354 | | - </condition> |
355 | | - <condition property="do.set.ant-javafx.in.probjdk.tools.no_jre"> |
356 | | - <available file="${java.home}${file.separator}tools${file.separator}ant-javafx.jar"/> |
357 | | - </condition> |
358 | 341 | <condition property="do.set.ant-javafx.in.probjdk.tools"> |
359 | 342 | <and> |
360 | 343 | <not><isset property="ant-javafx.jar.location"/></not> |
361 | | - <or> |
362 | | - <isset property="do.set.ant-javafx.in.probjdk.tools.has_jre"/> |
363 | | - <isset property="do.set.ant-javafx.in.probjdk.tools.no_jre"/> |
364 | | - </or> |
| 344 | + <available file="${java.home}${file.separator}..${file.separator}tools${file.separator}ant-javafx.jar"/> |
365 | 345 | </and> |
366 | 346 | </condition> |
367 | 347 | </target> |
368 | 348 | <target name="-set-ant-javafx-in-probjdk-tools" depends="-set-ant-javafx-in-probjdk-lib,-check-ant-javafx-in-probjdk-tools" if="do.set.ant-javafx.in.probjdk.tools"> |
369 | | - <condition property="ant-javafx.jar.location" value="${java.home}${file.separator}..${file.separator}tools${file.separator}ant-javafx.jar" else="${java.home}${file.separator}tools${file.separator}ant-javafx.jar"> |
370 | | - <isset property="do.set.ant-javafx.in.probjdk.tools.has_jre"/> |
371 | | - </condition> |
| 349 | + <property name="ant-javafx.jar.location" value="${java.home}${file.separator}..${file.separator}tools${file.separator}ant-javafx.jar"/> |
372 | 350 | </target> |
373 | 351 | <target name="-check-ant-javafx-in-macjdk-lib" unless="ant-javafx.jar.location"> |
374 | 352 | <condition property="do.set.ant-javafx.in.macjdk.lib"> |
|
1847 | 1825 | |
1848 | 1826 | // manifest |
1849 | 1827 | var man = jar.createManifest(); |
1850 | | - var userManifestPath = project.getProperty("manifest.file"); |
1851 | | - if (userManifestPath) { |
1852 | | - var userManifestFile = project.resolveFile(userManifestPath); |
1853 | | - if (userManifestFile.isFile()) { |
1854 | | - var manifestEncoding = project.getProperty("manifest.encoding"); |
1855 | | - var userManifestReader = manifestEncoding ? |
1856 | | - new java.io.InputStreamReader( |
1857 | | - new java.io.FileInputStream(userManifestFile), |
1858 | | - manifestEncoding) : |
1859 | | - new java.io.InputStreamReader( |
1860 | | - new java.io.FileInputStream(userManifestFile)); |
1861 | | - try { |
1862 | | - var userManifest = new org.apache.tools.ant.taskdefs.Manifest(userManifestReader); |
1863 | | - man.merge(userManifest); |
1864 | | - } finally { |
1865 | | - userManifestReader.close(); |
1866 | | - } |
1867 | | - } |
1868 | | - } |
1869 | 1828 | var a1val = new String(project.getProperty("application.vendor")); |
1870 | 1829 | var a1 = new org.apache.tools.ant.taskdefs.Manifest.Attribute(); |
1871 | 1830 | a1.setName("Implementation-Vendor"); |
|
0 commit comments