1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013
|
<?xml version="1.0" encoding="UTF-8"?>
<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
-->
<!--
*** GENERATED FROM TEMPLATE - DO NOT EDIT ***
*** EDIT ../build.xml INSTEAD ***
-->
<project name="jfx-impl" default="jfx-deployment" basedir=".." xmlns:j2seproject1="http://www.netbeans.org/ns/j2se-project/1"
xmlns:j2seproject3="http://www.netbeans.org/ns/j2se-project/3" xmlns:fx="javafx:com.sun.javafx.tools.ant">
<description>JavaFX-specific Ant calls</description>
<!-- Empty placeholders for easier customization in ../build.xml -->
<target name="-pre-jfx-jar">
<!-- Called right before <fx:jar> task. You can override this target in the ../build.xml file. -->
</target>
<target name="-post-jfx-jar">
<!-- Called right after <fx:jar> task. You can override this target in the ../build.xml file. -->
</target>
<target name="-pre-jfx-deploy">
<!-- Called right before <fx:deploy> task. You can override this target in the ../build.xml file. -->
</target>
<target name="-post-jfx-deploy">
<!-- Called right after <fx:deploy> task. You can override this target in the ../build.xml file. -->
</target>
<target name="-pre-jfx-native">
<!-- Called right before the call to native packager (just after -pre-jfx-deploy). You can override this target in the ../build.xml file. -->
</target>
<target name="-post-jfx-native">
<!-- Called right after the call to native packager (just after -post-jfx-deploy). You can override this target in the ../build.xml file. -->
</target>
<!-- Check system and JDK version -->
<target name="-check-operating-system">
<condition property="running.on.mac">
<os family="mac"/>
</condition>
<condition property="running.on.unix">
<os family="unix"/>
</condition>
<condition property="running.on.windows">
<os family="windows"/>
</condition>
<echo message="running.on.mac = ${running.on.mac}" level="verbose"/>
<echo message="running.on.unix = ${running.on.unix}" level="verbose"/>
<echo message="running.on.windows = ${running.on.windows}" level="verbose"/>
</target>
<target name="-check-platform-home-fxsdk-java" depends="-check-property-javafx.sdk" if="javafx.sdk.defined">
<condition property="do.set.platform.home.fxsdk.java">
<and>
<not><isset property="active.platform.home.java.executable"/></not>
<or>
<available file="${javafx.sdk}${file.separator}bin${file.separator}java"/>
<available file="${javafx.sdk}${file.separator}bin${file.separator}java.exe"/>
</or>
</and>
</condition>
</target>
<target name="-set-platform-home-fxsdk-java" depends="-check-platform-home-fxsdk-java" if="do.set.platform.home.fxsdk.java">
<property name="active.platform.home.java.executable" value="${javafx.sdk}${file.separator}bin${file.separator}java"/>
</target>
<target name="-check-platform-home-java" if="platform.home">
<condition property="do.set.platform.home.java">
<and>
<not><isset property="active.platform.home.java.executable"/></not>
<or>
<available file="${platform.home}${file.separator}bin${file.separator}java"/>
<available file="${platform.home}${file.separator}bin${file.separator}java.exe"/>
</or>
</and>
</condition>
</target>
<target name="-set-platform-home-java" depends="-set-platform-home-fxsdk-java,-check-platform-home-java" if="do.set.platform.home.java">
<property name="active.platform.home.java.executable" value="${platform.home}${file.separator}bin${file.separator}java"/>
</target>
<target name="-check-platform-home-probjdk-java" unless="active.platform.home.java.executable">
<condition property="do.set.platform.home.probjdk.java">
<and>
<not><isset property="active.platform.home.java.executable"/></not>
<or>
<available file="${java.home}${file.separator}..${file.separator}bin${file.separator}java"/>
<available file="${java.home}${file.separator}..${file.separator}bin${file.separator}java.exe"/>
</or>
</and>
</condition>
</target>
<target name="-set-platform-home-probjdk-java" depends="-set-platform-home-java,-check-platform-home-probjdk-java" if="do.set.platform.home.probjdk.java">
<property name="active.platform.home.java.executable" value="${java.home}${file.separator}..${file.separator}bin${file.separator}java"/>
</target>
<target name="-check-platform-home-envjdk-java" unless="active.platform.home.java.executable">
<property environment="env"/>
<condition property="do.set.platform.home.envjdk.java">
<and>
<not><isset property="active.platform.home.java.executable"/></not>
<or>
<available file="${env.JAVA_HOME}${file.separator}bin${file.separator}java"/>
<available file="${env.JAVA_HOME}${file.separator}bin${file.separator}java.exe"/>
</or>
</and>
</condition>
</target>
<target name="-set-platform-home-envjdk-java" depends="-set-platform-home-probjdk-java,-check-platform-home-envjdk-java" if="do.set.platform.home.envjdk.java">
<property environment="env"/>
<property name="active.platform.home.java.executable" value="${env.JAVA_HOME}${file.separator}bin${file.separator}java"/>
</target>
<target name="-check-platform-home-fxrt-java" depends="-check-property-javafx.runtime" if="javafx.runtime.defined">
<condition property="do.set.platform.home.fxrt.java">
<and>
<not><isset property="active.platform.home.java.executable"/></not>
<or>
<available file="${javafx.runtime}${file.separator}bin${file.separator}java"/>
<available file="${javafx.runtime}${file.separator}bin${file.separator}java.exe"/>
</or>
</and>
</condition>
</target>
<target name="-set-platform-home-fxrt-java" depends="-set-platform-home-envjdk-java,-check-platform-home-fxrt-java" if="do.set.platform.home.fxrt.java">
<property name="active.platform.home.java.executable" value="${javafx.runtime}${file.separator}bin${file.separator}java"/>
<echo message="Warning: java executable not found in JDK, evaluating java executable in RT instead." level="info"/>
</target>
<target name="-check-platform-home-jre-java" unless="active.platform.home.java.executable">
<condition property="do.set.platform.home.jre.java">
<and>
<not><isset property="active.platform.home.java.executable"/></not>
<or>
<available file="${java.home}${file.separator}bin${file.separator}java"/>
<available file="${java.home}${file.separator}bin${file.separator}java.exe"/>
</or>
</and>
</condition>
</target>
<target name="-set-platform-home-jre-java" depends="-set-platform-home-fxrt-java,-check-platform-home-jre-java" if="do.set.platform.home.jre.java">
<property name="active.platform.home.java.executable" value="${java.home}${file.separator}bin${file.separator}java"/>
<echo message="Warning: java executable not found in JDK, evaluating java executable in RT instead." level="info"/>
</target>
<target name="-check-platform-home" depends="-set-platform-home-jre-java">
<echo message="active.platform.home.java.executable = ${active.platform.home.java.executable}" level="verbose"/>
<fail message="Error:${line.separator}java executable not found !" unless="active.platform.home.java.executable"/>
</target>
<target name="-check-jdk-version" depends="-do-init,-check-platform-home" unless="jdk-version-checked-in-jfximpl">
<local name="version-output"/>
<exec executable="${active.platform.home.java.executable}" outputproperty="version-output">
<arg value="-version"/>
</exec>
<echo message="version-output:${line.separator}${version-output}" level="verbose"/>
<condition property="have-jdk-older-than-1.6">
<or>
<contains string="${version-output}" substring="java version "1.0"/>
<contains string="${version-output}" substring="java version "1.1"/>
<contains string="${version-output}" substring="java version "1.2"/>
<contains string="${version-output}" substring="java version "1.3"/>
<contains string="${version-output}" substring="java version "1.4"/>
<contains string="${version-output}" substring="java version "1.5"/>
</or>
</condition>
<fail message="Error:${line.separator}JavaFX 2.0+ projects require JDK version 1.6+ !" if="have-jdk-older-than-1.6"/>
<condition property="have-jdk-7u4or5-mac">
<and>
<or>
<contains string="${version-output}" substring="java version "1.7.0_04"/>
<contains string="${version-output}" substring="java version "1.7.0_05"/>
</or>
<os family="mac"/>
</and>
</condition>
<condition property="have-jdk-pre7u6">
<or>
<isset property="have-jdk-older-than-1.6"/>
<contains string="${version-output}" substring="java version "1.6"/>
<contains string="${version-output}" substring="java version "1.7.0""/>
<contains string="${version-output}" substring="java version "1.7.0_01"/>
<contains string="${version-output}" substring="java version "1.7.0_02"/>
<contains string="${version-output}" substring="java version "1.7.0_03"/>
<contains string="${version-output}" substring="java version "1.7.0_04"/>
<contains string="${version-output}" substring="java version "1.7.0_05"/>
</or>
</condition>
<condition property="have-jdk-pre7u14">
<or>
<isset property="have-jdk-pre7u6"/>
<contains string="${version-output}" substring="java version "1.7.0_06"/>
<contains string="${version-output}" substring="java version "1.7.0_07"/>
<contains string="${version-output}" substring="java version "1.7.0_08"/>
<contains string="${version-output}" substring="java version "1.7.0_09"/>
<contains string="${version-output}" substring="java version "1.7.0_10"/>
<contains string="${version-output}" substring="java version "1.7.0_11"/>
<contains string="${version-output}" substring="java version "1.7.0_12"/>
<contains string="${version-output}" substring="java version "1.7.0_13"/>
</or>
</condition>
<property name="jdk-version-checked-in-jfximpl" value="true"/>
<echo message="have-jdk-7u4or5-mac = ${have-jdk-7u4or5-mac}" level="verbose"/>
<echo message="have-jdk-pre7u6 = ${have-jdk-pre7u6}" level="verbose"/>
<echo message="have-jdk-pre7u14 = ${have-jdk-pre7u14}" level="verbose"/>
</target>
<target name="-check-ant-jre-version" unless="ant-jre-version-checked-in-jfximpl">
<local name="version-output"/>
<exec executable="${java.home}${file.separator}bin${file.separator}java" outputproperty="version-output">
<arg value="-version"/>
</exec>
<echo message="version-output:${line.separator}${version-output}" level="verbose"/>
<condition property="have-ant-jre-pre7u6">
<or>
<contains string="${version-output}" substring="java version "1.0"/>
<contains string="${version-output}" substring="java version "1.1"/>
<contains string="${version-output}" substring="java version "1.2"/>
<contains string="${version-output}" substring="java version "1.3"/>
<contains string="${version-output}" substring="java version "1.4"/>
<contains string="${version-output}" substring="java version "1.5"/>
<contains string="${version-output}" substring="java version "1.6"/>
<contains string="${version-output}" substring="java version "1.7.0""/>
<contains string="${version-output}" substring="java version "1.7.0_01"/>
<contains string="${version-output}" substring="java version "1.7.0_02"/>
<contains string="${version-output}" substring="java version "1.7.0_03"/>
<contains string="${version-output}" substring="java version "1.7.0_04"/>
<contains string="${version-output}" substring="java version "1.7.0_05"/>
</or>
</condition>
<condition property="have-jdk7-css2bin-bug">
<!-- as of NB7.4 release date the external css-to-bss converter is unreliable in all JDK7 versions before 7u40 (with exception of 7u14)-->
<and>
<contains string="${version-output}" substring="java version "1.7"/>
<not><matches string="${version-output}" pattern="\bjava version "1\.7\.0_(14|[4-9].)"/></not>
</and>
</condition>
<property name="ant-jre-version-checked-in-jfximpl" value="true"/>
<echo message="have-ant-jre-pre7u6 = ${have-ant-jre-pre7u6}" level="verbose"/>
<echo message="have-jdk7-css2bin-bug = ${have-jdk7-css2bin-bug}" level="verbose"/>
</target>
<target name="-check-jdk-7u4or5-mac" depends="-check-jdk-version" if="have-jdk-7u4or5-mac">
<fail message="Error:${line.separator}JDK 7u4 Mac and 7u5 Mac do not support WebStart and JavaFX 2.0+ browser plugin technologies.${line.separator}Please upgrade to JDK 7u6 or later."/>
</target>
<!-- Check availability of JavaFX SDK deployment support (ant-javafx.jar) -->
<target name="-check-endorsed-javafx-ant-classpath">
<condition property="endorsed-javafx-ant-classpath-available">
<and>
<isset property="endorsed.javafx.ant.classpath"/>
<not>
<equals arg1="${endorsed.javafx.ant.classpath}" arg2=""/>
</not>
</and>
</condition>
<echo message="endorsed-javafx-ant-classpath-available = ${endorsed-javafx-ant-classpath-available}" level="verbose"/>
</target>
<target name="-check-property-javafx.sdk">
<echo message="javafx.sdk = ${javafx.sdk}" level="verbose"/>
<condition property="javafx.sdk.defined">
<and>
<isset property="javafx.sdk"/>
<not><contains string="${javafx.sdk}" substring="$${platform" casesensitive="false"/></not>
</and>
</condition>
<condition property="javafx.sdk.missing+default">
<and>
<equals arg1="${platform.active}" arg2="Default_JavaFX_Platform" trim="true"/>
<not><isset property="javafx.sdk.defined"/></not>
</and>
</condition>
<condition property="javafx.sdk.missing-default">
<and>
<not><equals arg1="${platform.active}" arg2="Default_JavaFX_Platform" trim="true"/></not>
<not><isset property="javafx.sdk.defined"/></not>
</and>
</condition>
<echo message="javafx.sdk.defined = ${javafx.sdk.defined}" level="verbose"/>
<echo message="javafx.sdk.missing+default = ${javafx.sdk.missing+default}" level="verbose"/>
<echo message="javafx.sdk.missing-default = ${javafx.sdk.missing-default}" level="verbose"/>
</target>
<target name="-check-ant-javafx-in-fxsdk-lib" depends="-check-property-javafx.sdk" if="javafx.sdk.defined">
<condition property="do.set.ant-javafx.in.fxsdk.lib">
<and>
<not><isset property="ant-javafx.jar.location"/></not>
<available file="${javafx.sdk}${file.separator}lib${file.separator}ant-javafx.jar"/>
</and>
</condition>
</target>
<target name="-set-ant-javafx-in-fxsdk-lib" depends="-check-ant-javafx-in-fxsdk-lib" if="do.set.ant-javafx.in.fxsdk.lib">
<property name="ant-javafx.jar.location" value="${javafx.sdk}${file.separator}lib${file.separator}ant-javafx.jar"/>
</target>
<target name="-check-ant-javafx-in-fxsdk-tools" depends="-check-property-javafx.sdk" if="javafx.sdk.defined">
<condition property="do.set.ant-javafx.in.fxsdk.tools">
<and>
<not><isset property="ant-javafx.jar.location"/></not>
<available file="${javafx.sdk}${file.separator}tools${file.separator}ant-javafx.jar"/>
</and>
</condition>
</target>
<target name="-set-ant-javafx-in-fxsdk-tools" depends="-set-ant-javafx-in-fxsdk-lib,-check-ant-javafx-in-fxsdk-tools" if="do.set.ant-javafx.in.fxsdk.tools">
<property name="ant-javafx.jar.location" value="${javafx.sdk}${file.separator}tools${file.separator}ant-javafx.jar"/>
</target>
<target name="-check-ant-javafx-in-platform-home-lib" if="platform.home">
<condition property="do.set.ant-javafx.in.platform.home.lib">
<and>
<not><isset property="ant-javafx.jar.location"/></not>
<available file="${platform.home}${file.separator}lib${file.separator}ant-javafx.jar"/>
</and>
</condition>
</target>
<target name="-set-ant-javafx-in-platform-home-lib" depends="-set-ant-javafx-in-fxsdk-tools,-check-ant-javafx-in-platform-home-lib" if="do.set.ant-javafx.in.platform.home.lib">
<property name="ant-javafx.jar.location" value="${platform.home}${file.separator}lib${file.separator}ant-javafx.jar"/>
</target>
<target name="-check-ant-javafx-in-platform-home-tools" if="platform.home">
<condition property="do.set.ant-javafx.in.platform.home.tools">
<and>
<not><isset property="ant-javafx.jar.location"/></not>
<available file="${platform.home}${file.separator}tools${file.separator}ant-javafx.jar"/>
</and>
</condition>
</target>
<target name="-set-ant-javafx-in-platform-home-tools" depends="-set-ant-javafx-in-platform-home-lib,-check-ant-javafx-in-platform-home-tools" if="do.set.ant-javafx.in.platform.home.tools">
<property name="ant-javafx.jar.location" value="${platform.home}${file.separator}tools${file.separator}ant-javafx.jar"/>
</target>
<target name="-check-ant-javafx-in-probjdk-lib" unless="ant-javafx.jar.location">
<condition property="do.set.ant-javafx.in.probjdk.lib">
<and>
<not><isset property="ant-javafx.jar.location"/></not>
<available file="${java.home}${file.separator}..${file.separator}lib${file.separator}ant-javafx.jar"/>
</and>
</condition>
</target>
<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">
<property name="ant-javafx.jar.location" value="${java.home}${file.separator}..${file.separator}lib${file.separator}ant-javafx.jar"/>
</target>
<target name="-check-ant-javafx-in-probjdk-tools" unless="ant-javafx.jar.location">
<condition property="do.set.ant-javafx.in.probjdk.tools">
<and>
<not><isset property="ant-javafx.jar.location"/></not>
<available file="${java.home}${file.separator}..${file.separator}tools${file.separator}ant-javafx.jar"/>
</and>
</condition>
</target>
<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">
<property name="ant-javafx.jar.location" value="${java.home}${file.separator}..${file.separator}tools${file.separator}ant-javafx.jar"/>
</target>
<target name="-check-ant-javafx-in-macjdk-lib" unless="ant-javafx.jar.location">
<condition property="do.set.ant-javafx.in.macjdk.lib">
<and>
<not><isset property="ant-javafx.jar.location"/></not>
<available file="${java.home}${file.separator}lib${file.separator}ant-javafx.jar"/>
</and>
</condition>
</target>
<target name="-set-ant-javafx-in-macjdk-lib" depends="-set-ant-javafx-in-probjdk-tools,-check-ant-javafx-in-macjdk-lib" if="do.set.ant-javafx.in.macjdk.lib">
<property name="ant-javafx.jar.location" value="${java.home}${file.separator}lib${file.separator}ant-javafx.jar"/>
</target>
<target name="-check-ant-javafx-in-envjdk-lib" unless="ant-javafx.jar.location">
<property environment="env"/>
<condition property="do.set.ant-javafx.in.envjdk.lib">
<and>
<not><isset property="ant-javafx.jar.location"/></not>
<available file="${env.JAVA_HOME}${file.separator}lib${file.separator}ant-javafx.jar"/>
</and>
</condition>
</target>
<target name="-set-ant-javafx-in-envjdk-lib" depends="-set-ant-javafx-in-macjdk-lib,-check-ant-javafx-in-envjdk-lib" if="do.set.ant-javafx.in.envjdk.lib">
<property name="ant-javafx.jar.location" value="${env.JAVA_HOME}${file.separator}lib${file.separator}ant-javafx.jar"/>
</target>
<target name="-check-ant-javafx-in-envjdk-tools" unless="ant-javafx.jar.location">
<property environment="env"/>
<condition property="do.set.ant-javafx.in.envjdk.tools">
<and>
<not><isset property="ant-javafx.jar.location"/></not>
<available file="${env.JAVA_HOME}${file.separator}tools${file.separator}ant-javafx.jar"/>
</and>
</condition>
</target>
<target name="-set-ant-javafx-in-envjdk-tools" depends="-set-ant-javafx-in-envjdk-lib,-check-ant-javafx-in-envjdk-tools" if="do.set.ant-javafx.in.envjdk.tools">
<property name="ant-javafx.jar.location" value="${env.JAVA_HOME}${file.separator}tools${file.separator}ant-javafx.jar"/>
</target>
<target name="-pre-check-ant-javafx-version" depends="-set-ant-javafx-in-envjdk-tools" unless="ant-javafx-version-already-checked-in-jfximpl">
<condition property="do.check.ant-javafx.version">
<and>
<isset property="ant-javafx.jar.location"/>
<not><isset property="ant-javafx-version-already-checked-in-jfximpl"/></not>
</and>
</condition>
</target>
<target name="-set-endorsed-javafx-ant-classpath" depends="-check-endorsed-javafx-ant-classpath,-pre-check-ant-javafx-version" if="endorsed-javafx-ant-classpath-available">
<property name="javafx.ant.classpath" value="${endorsed.javafx.ant.classpath}:${ant-javafx.jar.location}"/>
</target>
<target name="-set-javafx-ant-classpath" depends="-check-endorsed-javafx-ant-classpath,-pre-check-ant-javafx-version" unless="endorsed-javafx-ant-classpath-available">
<property name="javafx.ant.classpath" value="${ant-javafx.jar.location}"/>
</target>
<target name="-check-ant-javafx-version" depends="-pre-check-ant-javafx-version,
-set-endorsed-javafx-ant-classpath,-set-javafx-ant-classpath" if="do.check.ant-javafx.version">
<echo message="ant-javafx.jar.location = ${ant-javafx.jar.location}" level="verbose"/>
<echo message="javafx.ant.classpath = ${javafx.ant.classpath}" level="verbose"/>
<taskdef resource="com/sun/javafx/tools/ant/antlib.xml"
uri="javafx:com.sun.javafx.tools.ant"
classpath="${javafx.ant.classpath}"/>
<condition property="have-fx-ant-init">
<typefound name="javafx:com.sun.javafx.tools.ant:init-ant"/>
</condition>
<property name="ant-javafx-version-already-checked-in-jfximpl" value="true"/>
<echo message="have-fx-ant-init = ${have-fx-ant-init}" level="verbose"/>
</target>
<target name="-check-jfx-sdk-version-old" depends="-check-ant-javafx-version" unless="have-fx-ant-init">
<property name="javafx.ant.version" value="1.0"/>
</target>
<target name="-check-jfx-sdk-version-new" depends="-check-ant-javafx-version" if="have-fx-ant-init">
<fx:init-ant/>
<condition property="have-fx-ant-api-1.1">
<!-- new features from JavaFX 2.0.2 are available in API version 1.1 or later -->
<matches pattern="1.[1-9]" string="${javafx.ant.version}"/>
</condition>
<condition property="have-fx-ant-api-1.2">
<!-- new features from JavaFX 2.2 are available in API version 1.2 or later -->
<matches pattern="1.[2-9]" string="${javafx.ant.version}"/>
</condition>
</target>
<target name="-check-jfx-sdk-version" depends="-check-jfx-sdk-version-old, -check-jfx-sdk-version-new" unless="jfx.sdk.version.checked">
<echo message="Detected JavaFX Ant API version ${javafx.ant.version}" level="info"/>
<echo message="have-fx-ant-api-1.1 = ${have-fx-ant-api-1.1}" level="verbose"/>
<echo message="have-fx-ant-api-1.2 = ${have-fx-ant-api-1.2}" level="verbose"/>
<echo message="javafx.ant.classpath = ${javafx.ant.classpath}" level="verbose"/>
<property name="jfx.sdk.version.checked" value="true"/>
</target>
<target name="-check-jfx-deployment" depends="-check-jdk-version,-check-jfx-sdk-version">
<condition property="jfx-deployment-available">
<and>
<or>
<isset property="do.set.ant-javafx.in.fxsdk.lib"/>
<isset property="do.set.ant-javafx.in.fxsdk.tools"/>
<isset property="do.set.ant-javafx.in.platform.home.lib"/>
<isset property="do.set.ant-javafx.in.platform.home.tools"/>
<isset property="do.set.ant-javafx.in.probjdk.lib"/>
<isset property="do.set.ant-javafx.in.probjdk.tools"/>
<isset property="do.set.ant-javafx.in.envjdk.lib"/>
<isset property="do.set.ant-javafx.in.envjdk.tools"/>
</or>
<isset property="ant-javafx.jar.location"/>
</and>
</condition>
<condition property="jfx-deployment-missing+jdk7u6">
<and>
<not><isset property="jfx-deployment-available"/></not>
<not><isset property="have-jdk-pre7u6"/></not>
</and>
</condition>
<condition property="jfx-deployment-missing+javafx.sdk.missing+default">
<and>
<not><isset property="jfx-deployment-available"/></not>
<isset property="have-jdk-pre7u6"/>
<isset property="javafx.sdk.missing+default"/>
</and>
</condition>
<condition property="jfx-deployment-missing+javafx.sdk.missing-default">
<and>
<not><isset property="jfx-deployment-available"/></not>
<isset property="have-jdk-pre7u6"/>
<isset property="javafx.sdk.missing-default"/>
</and>
</condition>
<fail message="Error:${line.separator}JavaFX deployment library not found in active JDK.${line.separator}Please check that the JDK is correctly installed and its version is at least 7u4 on Mac or 7u6 on other systems." if="jfx-deployment-missing+jdk7u6"/>
<fail message="Error:${line.separator}JavaFX deployment library not found.${line.separator}JavaFX SDK path undefined. Check the definition of ${platform.active} in Java Platform Manager${line.separator}(or directly the properties platform.active and javafx.sdk in project.properties file).${line.separator}Note: If missing, the default JavaFX-enabled platform gets created automatically when creating a new JavaFX Project." if="jfx-deployment-missing+javafx.sdk.missing+default"/>
<fail message="Error:${line.separator}JavaFX deployment library not found.${line.separator}JavaFX SDK path undefined. Check the definition of ${platform.active} in Java Platform Manager${line.separator}(or directly the properties platform.active and javafx.sdk in project.properties file)." if="jfx-deployment-missing+javafx.sdk.missing-default"/>
<fail message="Error:${line.separator}JavaFX deployment library not found." unless="jfx-deployment-available"/>
<echo message="jfx-deployment-available = ${jfx-deployment-available}" level="verbose"/>
</target>
<!-- Check availability of main JavaFX runtime jar (jfxrt.jar) -->
<target name="-check-property-javafx.runtime">
<echo message="javafx.runtime = ${javafx.runtime}" level="verbose"/>
<condition property="javafx.runtime.defined">
<and>
<isset property="javafx.runtime"/>
<not><contains string="${javafx.runtime}" substring="$${platform" casesensitive="false"/></not>
</and>
</condition>
<condition property="javafx.runtime.missing+default">
<and>
<equals arg1="${platform.active}" arg2="Default_JavaFX_Platform" trim="true"/>
<not><isset property="javafx.runtime.defined"/></not>
</and>
</condition>
<condition property="javafx.runtime.missing-default">
<and>
<not><equals arg1="${platform.active}" arg2="Default_JavaFX_Platform" trim="true"/></not>
<not><isset property="javafx.runtime.defined"/></not>
</and>
</condition>
<echo message="javafx.runtime.defined = ${javafx.runtime.defined}" level="verbose"/>
<echo message="javafx.runtime.missing+default = ${javafx.runtime.missing+default}" level="verbose"/>
<echo message="javafx.runtime.missing-default = ${javafx.runtime.missing-default}" level="verbose"/>
</target>
<target name="-check-jfxrt-in-fxrt" depends="-check-property-javafx.runtime" if="javafx.runtime.defined">
<condition property="do.set.jfxrt.in.fxrt.old">
<and>
<not><isset property="jfxrt.jar.location"/></not>
<available file="${javafx.runtime}${file.separator}lib${file.separator}jfxrt.jar"/>
</and>
</condition>
<condition property="do.set.jfxrt.in.fxrt.new">
<and>
<not><isset property="do.set.jfxrt.in.fxrt.old"/></not>
<not><isset property="jfxrt.jar.location"/></not>
<available file="${javafx.runtime}${file.separator}lib${file.separator}ext${file.separator}jfxrt.jar"/>
</and>
</condition>
</target>
<target name="-set-jfxrt-in-fxrt-old" depends="-check-jfxrt-in-fxrt" if="do.set.jfxrt.in.fxrt.old">
<property name="jfxrt.jar.location" value="${javafx.runtime}${file.separator}lib${file.separator}jfxrt.jar"/>
</target>
<target name="-set-jfxrt-in-fxrt-new" depends="-set-jfxrt-in-fxrt-old,-check-jfxrt-in-fxrt" if="do.set.jfxrt.in.fxrt.new">
<property name="jfxrt.jar.location" value="${javafx.runtime}${file.separator}lib${file.separator}ext${file.separator}jfxrt.jar"/>
</target>
<target name="-check-jfxrt-in-fxsdk-jre" depends="-check-property-javafx.sdk" if="javafx.sdk.defined">
<condition property="do.set.jfxrt.in.fxsdk.jre.old">
<and>
<not><isset property="jfxrt.jar.location"/></not>
<available file="${javafx.sdk}${file.separator}jre${file.separator}lib${file.separator}jfxrt.jar"/>
</and>
</condition>
<condition property="do.set.jfxrt.in.fxsdk.jre.new">
<and>
<not><isset property="do.set.jfxrt.in.fxsdk.jre.old"/></not>
<not><isset property="jfxrt.jar.location"/></not>
<available file="${javafx.sdk}${file.separator}jre${file.separator}lib${file.separator}ext${file.separator}jfxrt.jar"/>
</and>
</condition>
</target>
<target name="-set-jfxrt-in-fxsdk-jre-old" depends="-set-jfxrt-in-fxrt-new,-check-jfxrt-in-fxsdk-jre" if="do.set.jfxrt.in.fxsdk.jre.old">
<property name="jfxrt.jar.location" value="${javafx.sdk}${file.separator}jre${file.separator}lib${file.separator}jfxrt.jar"/>
</target>
<target name="-set-jfxrt-in-fxsdk-jre-new" depends="-set-jfxrt-in-fxsdk-jre-old,-check-jfxrt-in-fxsdk-jre" if="do.set.jfxrt.in.fxsdk.jre.new">
<property name="jfxrt.jar.location" value="${javafx.sdk}${file.separator}jre${file.separator}lib${file.separator}ext${file.separator}jfxrt.jar"/>
</target>
<target name="-check-jfxrt-in-fxsdk-rt" depends="-check-property-javafx.sdk" if="javafx.sdk.defined">
<condition property="do.set.jfxrt.in.fxsdk.rt.old">
<and>
<not><isset property="jfxrt.jar.location"/></not>
<available file="${javafx.sdk}${file.separator}rt${file.separator}lib${file.separator}jfxrt.jar"/>
</and>
</condition>
<condition property="do.set.jfxrt.in.fxsdk.rt.new">
<and>
<not><isset property="do.set.jfxrt.in.fxsdk.rt.old"/></not>
<not><isset property="jfxrt.jar.location"/></not>
<available file="${javafx.sdk}${file.separator}rt${file.separator}lib${file.separator}ext${file.separator}jfxrt.jar"/>
</and>
</condition>
</target>
<target name="-set-jfxrt-in-fxsdk-rt-old" depends="-set-jfxrt-in-fxsdk-jre-new,-check-jfxrt-in-fxsdk-rt" if="do.set.jfxrt.in.fxsdk.rt.old">
<property name="jfxrt.jar.location" value="${javafx.sdk}${file.separator}rt${file.separator}lib${file.separator}jfxrt.jar"/>
</target>
<target name="-set-jfxrt-in-fxsdk-rt-new" depends="-set-jfxrt-in-fxsdk-rt-old,-check-jfxrt-in-fxsdk-rt" if="do.set.jfxrt.in.fxsdk.rt.new">
<property name="jfxrt.jar.location" value="${javafx.sdk}${file.separator}rt${file.separator}lib${file.separator}ext${file.separator}jfxrt.jar"/>
</target>
<target name="-check-jfxrt-in-platform-home-jre" if="platform.home">
<condition property="do.set.jfxrt.in.platform.home.jre.old">
<and>
<not><isset property="jfxrt.jar.location"/></not>
<available file="${platform.home}${file.separator}jre${file.separator}lib${file.separator}jfxrt.jar"/>
</and>
</condition>
<condition property="do.set.jfxrt.in.platform.home.jre.new">
<and>
<not><isset property="do.set.jfxrt.in.platform.home.jre.old"/></not>
<not><isset property="jfxrt.jar.location"/></not>
<available file="${platform.home}${file.separator}jre${file.separator}lib${file.separator}ext${file.separator}jfxrt.jar"/>
</and>
</condition>
</target>
<target name="-set-jfxrt-in-platform-home-jre-old" depends="-set-jfxrt-in-fxsdk-rt-new,-check-jfxrt-in-platform-home-jre" if="do.set.jfxrt.in.platform.home.jre.old">
<property name="jfxrt.jar.location" value="${platform.home}${file.separator}jre${file.separator}lib${file.separator}jfxrt.jar"/>
</target>
<target name="-set-jfxrt-in-platform-home-jre-new" depends="-set-jfxrt-in-platform-home-jre-old,-check-jfxrt-in-platform-home-jre" if="do.set.jfxrt.in.platform.home.jre.new">
<property name="jfxrt.jar.location" value="${platform.home}${file.separator}jre${file.separator}lib${file.separator}ext${file.separator}jfxrt.jar"/>
</target>
<target name="-check-jfxrt-in-platform-home-rt" if="platform.home">
<condition property="do.set.jfxrt.in.platform.home.rt.old">
<and>
<not><isset property="jfxrt.jar.location"/></not>
<available file="${platform.home}${file.separator}rt${file.separator}lib${file.separator}jfxrt.jar"/>
</and>
</condition>
<condition property="do.set.jfxrt.in.platform.home.rt.new">
<and>
<not><isset property="do.set.jfxrt.in.platform.home.rt.old"/></not>
<not><isset property="jfxrt.jar.location"/></not>
<available file="${platform.home}${file.separator}rt${file.separator}lib${file.separator}ext${file.separator}jfxrt.jar"/>
</and>
</condition>
</target>
<target name="-set-jfxrt-in-platform-home-rt-old" depends="-set-jfxrt-in-platform-home-jre-new,-check-jfxrt-in-platform-home-rt" if="do.set.jfxrt.in.platform.home.rt.old">
<property name="jfxrt.jar.location" value="${platform.home}${file.separator}rt${file.separator}lib${file.separator}jfxrt.jar"/>
</target>
<target name="-set-jfxrt-in-platform-home-rt-new" depends="-set-jfxrt-in-platform-home-rt-old,-check-jfxrt-in-platform-home-rt" if="do.set.jfxrt.in.platform.home.rt.new">
<property name="jfxrt.jar.location" value="${platform.home}${file.separator}rt${file.separator}lib${file.separator}ext${file.separator}jfxrt.jar"/>
</target>
<target name="-check-jfxrt-in-jre" unless="jfxrt.jar.location">
<condition property="do.set.jfxrt.in.jre.old">
<and>
<not><isset property="jfxrt.jar.location"/></not>
<available file="${java.home}${file.separator}lib${file.separator}jfxrt.jar"/>
</and>
</condition>
<condition property="do.set.jfxrt.in.jre.new">
<and>
<not><isset property="do.set.jfxrt.in.jre.old"/></not>
<not><isset property="jfxrt.jar.location"/></not>
<available file="${java.home}${file.separator}lib${file.separator}ext${file.separator}jfxrt.jar"/>
</and>
</condition>
</target>
<target name="-set-jfxrt-in-jre-old" depends="-set-jfxrt-in-platform-home-rt-new,-check-jfxrt-in-jre" if="do.set.jfxrt.in.jre.old">
<property name="jfxrt.jar.location" value="${java.home}${file.separator}lib${file.separator}jfxrt.jar"/>
</target>
<target name="-set-jfxrt-in-jre-new" depends="-set-jfxrt-in-jre-old,-check-jfxrt-in-jre" if="do.set.jfxrt.in.jre.new">
<property name="jfxrt.jar.location" value="${java.home}${file.separator}lib${file.separator}ext${file.separator}jfxrt.jar"/>
</target>
<target name="-check-jfxrt-in-envjdk-jre" unless="jfxrt.jar.location">
<property environment="env"/>
<condition property="do.set.jfxrt.in.envjdk.jre.old">
<and>
<not><isset property="jfxrt.jar.location"/></not>
<available file="${env.JAVA_HOME}${file.separator}jre${file.separator}lib${file.separator}jfxrt.jar"/>
</and>
</condition>
<condition property="do.set.jfxrt.in.envjdk.jre.new">
<and>
<not><isset property="do.set.jfxrt.in.envjdk.jre.old"/></not>
<not><isset property="jfxrt.jar.location"/></not>
<available file="${env.JAVA_HOME}${file.separator}jre${file.separator}lib${file.separator}ext${file.separator}jfxrt.jar"/>
</and>
</condition>
</target>
<target name="-set-jfxrt-in-envjdk-jre-old" depends="-set-jfxrt-in-jre-new,-check-jfxrt-in-envjdk-jre" if="do.set.jfxrt.in.envjdk.jre.old">
<property name="jfxrt.jar.location" value="${env.JAVA_HOME}${file.separator}jre${file.separator}lib${file.separator}jfxrt.jar"/>
</target>
<target name="-set-jfxrt-in-envjdk-jre-new" depends="-set-jfxrt-in-envjdk-jre-old,-check-jfxrt-in-envjdk-jre" if="do.set.jfxrt.in.envjdk.jre.new">
<property name="jfxrt.jar.location" value="${env.JAVA_HOME}${file.separator}jre${file.separator}lib${file.separator}ext${file.separator}jfxrt.jar"/>
</target>
<target name="-pre-check-jfx-runtime" depends="-set-jfxrt-in-envjdk-jre-new">
<echo message="jfxrt.jar.location = ${jfxrt.jar.location}" level="verbose"/>
</target>
<target name="-check-jfx-runtime" depends="-check-jdk-version, -pre-check-jfx-runtime">
<condition property="jfx-runtime-available">
<and>
<or>
<isset property="do.set.jfxrt.in.fxrt.old"/>
<isset property="do.set.jfxrt.in.fxrt.new"/>
<isset property="do.set.jfxrt.in.fxsdk.jre.old"/>
<isset property="do.set.jfxrt.in.fxsdk.jre.new"/>
<isset property="do.set.jfxrt.in.fxsdk.rt.old"/>
<isset property="do.set.jfxrt.in.fxsdk.rt.new"/>
<isset property="do.set.jfxrt.in.platform.home.jre.old"/>
<isset property="do.set.jfxrt.in.platform.home.jre.new"/>
<isset property="do.set.jfxrt.in.platform.home.rt.old"/>
<isset property="do.set.jfxrt.in.platform.home.rt.new"/>
<isset property="do.set.jfxrt.in.jre.old"/>
<isset property="do.set.jfxrt.in.jre.new"/>
<isset property="do.set.jfxrt.in.envjdk.jre.old"/>
<isset property="do.set.jfxrt.in.envjdk.jre.new"/>
</or>
<isset property="jfxrt.jar.location"/>
</and>
</condition>
<fail message="Error:${line.separator}JavaFX runtime JAR not found." unless="jfx-runtime-available"/>
<echo message="jfx-runtime-available = ${jfx-runtime-available}" level="verbose"/>
</target>
<!-- Check availability of WebStart executable -->
<target name="-check-webstart-in-fxrt" depends="-check-property-javafx.runtime" if="javafx.runtime.defined">
<condition property="do.set.webstart.in.fxrt">
<and>
<not><isset property="active.webstart.executable"/></not>
<isset property="javafx.runtime.defined"/>
<or>
<available file="${javafx.runtime}${file.separator}bin${file.separator}javaws.exe"/>
<available file="${javafx.runtime}${file.separator}bin${file.separator}javaws"/>
</or>
</and>
</condition>
</target>
<target name="-set-webstart-in-fxrt" depends="-check-webstart-in-fxrt" if="do.set.webstart.in.fxrt">
<property name="active.webstart.executable" value="${javafx.runtime}${file.separator}bin${file.separator}javaws"/>
</target>
<target name="-check-webstart-in-fxsdk-jre" depends="-check-property-javafx.sdk" if="javafx.sdk.defined">
<condition property="do.set.webstart.in.fxsdk.jre">
<and>
<not><isset property="active.webstart.executable"/></not>
<isset property="javafx.sdk.defined"/>
<or>
<available file="${javafx.sdk}${file.separator}jre${file.separator}bin${file.separator}javaws.exe"/>
<available file="${javafx.sdk}${file.separator}jre${file.separator}bin${file.separator}javaws"/>
</or>
</and>
</condition>
</target>
<target name="-set-webstart-in-fxsdk-jre" depends="-set-webstart-in-fxrt,-check-webstart-in-fxsdk-jre" if="do.set.webstart.in.fxsdk.jre">
<property name="active.webstart.executable" value="${javafx.sdk}${file.separator}jre${file.separator}bin${file.separator}javaws"/>
</target>
<target name="-check-webstart-in-fxsdk" depends="-check-property-javafx.sdk" if="javafx.sdk.defined">
<condition property="do.set.webstart.in.fxsdk">
<and>
<not><isset property="active.webstart.executable"/></not>
<isset property="javafx.sdk.defined"/>
<or>
<available file="${javafx.sdk}${file.separator}bin${file.separator}javaws.exe"/>
<available file="${javafx.sdk}${file.separator}bin${file.separator}javaws"/>
</or>
</and>
</condition>
</target>
<target name="-set-webstart-in-fxsdk" depends="-set-webstart-in-fxsdk-jre,-check-webstart-in-fxsdk" if="do.set.webstart.in.fxsdk">
<property name="active.webstart.executable" value="${javafx.sdk}${file.separator}bin${file.separator}javaws"/>
</target>
<target name="-check-webstart-in-platform-home-jre" if="platform.home">
<condition property="do.set.webstart.in.platform.home.jre">
<and>
<not><isset property="active.webstart.executable"/></not>
<or>
<available file="${platform.home}${file.separator}jre${file.separator}bin${file.separator}javaws.exe"/>
<available file="${platform.home}${file.separator}jre${file.separator}bin${file.separator}javaws"/>
</or>
</and>
</condition>
</target>
<target name="-set-webstart-in-platform-home-jre" depends="-set-webstart-in-fxsdk,-check-webstart-in-platform-home-jre" if="do.set.webstart.in.platform.home.jre">
<property name="active.webstart.executable" value="${platform.home}${file.separator}jre${file.separator}bin${file.separator}javaws"/>
</target>
<target name="-check-webstart-in-platform-home" if="platform.home">
<condition property="do.set.webstart.in.platform.home">
<and>
<not><isset property="active.webstart.executable"/></not>
<or>
<available file="${platform.home}${file.separator}bin${file.separator}javaws.exe"/>
<available file="${platform.home}${file.separator}bin${file.separator}javaws"/>
</or>
</and>
</condition>
</target>
<target name="-set-webstart-in-platform-home" depends="-set-webstart-in-platform-home-jre,-check-webstart-in-platform-home" if="do.set.webstart.in.platform.home">
<property name="active.webstart.executable" value="${platform.home}${file.separator}bin${file.separator}javaws"/>
</target>
<target name="-check-webstart-in-jre" unless="active.webstart.executable">
<condition property="do.set.webstart.in.jre">
<and>
<not><isset property="active.webstart.executable"/></not>
<or>
<available file="${java.home}${file.separator}bin${file.separator}javaws.exe"/>
<available file="${java.home}${file.separator}bin${file.separator}javaws"/>
</or>
</and>
</condition>
</target>
<target name="-set-webstart-in-jre" depends="-set-webstart-in-platform-home,-check-webstart-in-jre" if="do.set.webstart.in.jre">
<property name="active.webstart.executable" value="${java.home}${file.separator}bin${file.separator}javaws"/>
</target>
<target name="-check-webstart-in-probjdk" unless="active.webstart.executable">
<condition property="do.set.webstart.in.probjdk">
<and>
<not><isset property="active.webstart.executable"/></not>
<or>
<available file="${java.home}${file.separator}..${file.separator}bin${file.separator}javaws.exe"/>
<available file="${java.home}${file.separator}..${file.separator}bin${file.separator}javaws"/>
</or>
</and>
</condition>
</target>
<target name="-set-webstart-in-probjdk" depends="-set-webstart-in-jre,-check-webstart-in-probjdk" if="do.set.webstart.in.probjdk">
<property name="active.webstart.executable" value="${java.home}${file.separator}..${file.separator}bin${file.separator}javaws"/>
</target>
<target name="-check-webstart-in-envjdk" unless="active.webstart.executable">
<property environment="env"/>
<condition property="do.set.webstart.in.envjdk">
<and>
<not><isset property="active.webstart.executable"/></not>
<or>
<available file="${env.JAVA_HOME}${file.separator}bin${file.separator}javaws.exe"/>
<available file="${env.JAVA_HOME}${file.separator}bin${file.separator}javaws"/>
</or>
</and>
</condition>
</target>
<target name="-set-webstart-in-envjdk" depends="-set-webstart-in-probjdk,-check-webstart-in-envjdk" if="do.set.webstart.in.envjdk">
<property name="active.webstart.executable" value="${env.JAVA_HOME}${file.separator}bin${file.separator}javaws"/>
</target>
<target name="-pre-check-webstart-in-unix" depends="-check-operating-system,-set-webstart-in-envjdk" unless="active.webstart.executable">
<condition property="running.on.unix-active.webstart.executable">
<and>
<not><isset property="active.webstart.executable"/></not>
<isset property="running.on.unix"/>
</and>
</condition>
</target>
<target name="-check-webstart-in-unix" depends="-pre-check-webstart-in-unix" if="running.on.unix-active.webstart.executable">
<local name="exec.which.javaws.result"/>
<exec executable="command" failifexecutionfails="false" failonerror="false" resultproperty="exec.which.javaws.result" outputproperty="exec.which.javaws.output">
<arg line="-v javaws"/>
</exec>
<condition property="do.set.webstart.in.unix">
<and>
<not><isset property="active.webstart.executable"/></not>
<isset property="exec.which.javaws.result"/>
<equals arg1="${exec.which.javaws.result}" arg2="0"/>
<isset property="exec.which.javaws.output"/>
<not><equals arg1="${exec.which.javaws.output}" arg2=""/></not>
</and>
</condition>
<echo message="do.set.webstart.in.unix = ${do.set.webstart.in.unix}" level="verbose"/>
</target>
<target name="-set-webstart-in-unix" depends="-set-webstart-in-envjdk,-check-webstart-in-unix" if="do.set.webstart.in.unix">
<property name="active.webstart.executable" value="${exec.which.javaws.output}"/>
</target>
<target name="-pre-check-jfx-webstart" depends="-set-webstart-in-unix">
<echo message="active.webstart.executable = ${active.webstart.executable}" level="verbose"/>
</target>
<target name="-check-jfx-webstart" depends="-pre-check-jfx-webstart">
<condition property="jfx-webstart-available">
<and>
<or>
<isset property="do.set.webstart.in.fxrt"/>
<isset property="do.set.webstart.in.fxsdk.jre"/>
<isset property="do.set.webstart.in.fxsdk"/>
<isset property="do.set.webstart.in.platform.home.jre"/>
<isset property="do.set.webstart.in.platform.home"/>
<isset property="do.set.webstart.in.jre"/>
<isset property="do.set.webstart.in.probjdk"/>
<isset property="do.set.webstart.in.envjdk"/>
<isset property="do.set.webstart.in.unix"/>
</or>
<isset property="active.webstart.executable"/>
</and>
</condition>
<condition property="jfx-webstart-missing+jdk7u6">
<and>
<not><isset property="jfx-webstart-available"/></not>
<not><isset property="have-jdk-pre7u6"/></not>
</and>
</condition>
<condition property="jfx-webstart-missing+javafx.runtime.missing+default">
<and>
<not><isset property="jfx-webstart-available"/></not>
<isset property="have-jdk-pre7u6"/>
<isset property="javafx.runtime.missing+default"/>
</and>
</condition>
<condition property="jfx-webstart-missing+javafx.runtime.missing-default">
<and>
<not><isset property="jfx-webstart-available"/></not>
<isset property="have-jdk-pre7u6"/>
<isset property="javafx.runtime.missing-default"/>
</and>
</condition>
<fail message="Error:${line.separator}WebStart executable could not be found in active JDK.${line.separator}Please check that the JDK is correctly installed and its version is at least 7u6." if="jfx-webstart-missing+jdk7u6"/>
<fail message="Error:${line.separator}WebStart executable could not be found.${line.separator}JavaFX RT path undefined. Check the definition of ${platform.active} in Java Platform Manager${line.separator}(or directly the properties platform.active and javafx.runtime in project.properties file).${line.separator}Note: If missing, the default JavaFX-enabled platform gets created automatically when creating a new JavaFX Project." if="jfx-webstart-missing+javafx.runtime.missing+default"/>
<fail message="Error:${line.separator}WebStart executable could not be found.${line.separator}JavaFX RT path undefined. Check the definition of ${platform.active} in Java Platform Manager${line.separator}(or directly the properties platform.active and javafx.runtime in project.properties file)." if="jfx-webstart-missing+javafx.runtime.missing-default"/>
<fail message="Error:${line.separator}WebStart executable could not be found." unless="jfx-webstart-available"/>
<echo message="jfx-webstart-available = ${jfx-webstart-available}" level="verbose"/>
</target>
<!-- Legacy targets kept for compatibility with older build-impl.xml scripts -->
<!-- Note: target "-check-javafx" is not necessary any more but is referenced from NB 7.1 build-impl.xml -->
<target name="-check-javafx"/>
<!-- Note: target "-javafx-check-error" is not necessary any more but is referenced from NB 7.1 build-impl.xml -->
<target name="-javafx-check-error"/>
<!-- Note: target "-init-javafx" is not necessary any more but is referenced from NB 7.1 build-impl.xml -->
<target name="-init-javafx"/>
<!-- Check project properties -->
<target name="-check-default-run-config" unless="config">
<property name="config" value="<default config>"/>
</target>
<target name="-check-project">
<condition property="main-class-available">
<isset property="javafx.main.class"/>
</condition>
<condition property="vmargs-available">
<and>
<isset property="run.jvmargs"/>
<not><equals arg1="${run.jvmargs}" arg2=""/></not>
</and>
</condition>
<condition property="preloader-available">
<and>
<isset property="javafx.preloader.enabled"/>
<equals arg1="${javafx.preloader.enabled}" arg2="true"/>
<isset property="javafx.preloader.class"/>
<not><equals arg1="${javafx.preloader.class}" arg2=""/></not>
<isset property="javafx.preloader.jar.filename"/>
<not><equals arg1="${javafx.preloader.jar.filename}" arg2=""/></not>
</and>
</condition>
<condition property="app-with-preloader">
<and>
<istrue value="${preloader-available}"/>
<istrue value="${main-class-available}"/>
</and>
</condition>
<condition property="app-with-external-preloader-jar">
<and>
<isset property="app-with-preloader"/>
<isset property="javafx.preloader.type"/>
<equals arg1="${javafx.preloader.type}" arg2="jar" trim="true"/>
</and>
</condition>
<condition property="app-without-preloader">
<and>
<not>
<istrue value="${preloader-available}"/>
</not>
<istrue value="${main-class-available}"/>
</and>
</condition>
<condition property="preloader-app">
<and>
<isset property="javafx.preloader"/>
<equals arg1="${javafx.preloader}" arg2="true"/>
</and>
</condition>
<condition property="fx-in-swing-app">
<and>
<isset property="javafx.swing"/>
<equals arg1="${javafx.swing}" arg2="true"/>
</and>
</condition>
<condition property="fx-in-swing-workaround-app">
<and>
<istrue value="${fx-in-swing-app}"/>
<istrue value="${preloader-app}"/>
</and>
</condition>
<condition property="preloader-app-no-workaround">
<and>
<istrue value="${preloader-app}"/>
<not><istrue value="${fx-in-swing-app}"/></not>
</and>
</condition>
<condition property="html-template-available">
<and>
<isset property="javafx.run.htmltemplate"/>
<not>
<equals arg1="${javafx.run.htmltemplate}" arg2=""/>
</not>
</and>
</condition>
<condition property="icon-available">
<and>
<isset property="javafx.deploy.icon"/>
<not>
<equals arg1="${javafx.deploy.icon}" arg2=""/>
</not>
</and>
</condition>
<condition property="dimensions-available">
<and>
<isset property="javafx.run.width"/>
<isset property="javafx.run.height"/>
<not><equals arg1="${javafx.run.width}" arg2=""/></not>
<not><equals arg1="${javafx.run.height}" arg2=""/></not>
</and>
</condition>
<condition property="update-mode-background">
<and>
<isset property="javafx.deploy.backgroundupdate"/>
<equals arg1="${javafx.deploy.backgroundupdate}" arg2="true" trim="true"/>
</and>
</condition>
<condition property="offline-allowed">
<and>
<isset property="javafx.deploy.allowoffline"/>
<equals arg1="${javafx.deploy.allowoffline}" arg2="true" trim="true"/>
</and>
</condition>
<condition property="permissions-elevated">
<and>
<isset property="javafx.deploy.permissionselevated"/>
<equals arg1="${javafx.deploy.permissionselevated}" arg2="true" trim="true"/>
</and>
</condition>
<condition property="binary-encode-css">
<and>
<isset property="javafx.binarycss"/>
<equals arg1="${javafx.binarycss}" arg2="true" trim="true"/>
</and>
</condition>
<condition property="rebase-lib-jars">
<and>
<isset property="javafx.rebase.libs"/>
<equals arg1="${javafx.rebase.libs}" arg2="true" trim="true"/>
</and>
</condition>
<condition property="use-blob-signing">
<and>
<isset property="javafx.signing.blob"/>
<equals arg1="${javafx.signing.blob}" arg2="true" trim="true"/>
</and>
</condition>
<echo message="main-class-available = ${main-class-available}" level="verbose"/>
<echo message="vmargs-available = ${vmargs-available}" level="verbose"/>
<echo message="preloader-available = ${preloader-available}" level="verbose"/>
<echo message="app-with-preloader = ${app-with-preloader}" level="verbose"/>
<echo message="app-with-preloader-without-project = ${app-with-preloader-without-project}" level="verbose"/>
<echo message="app-without-preloader = ${app-without-preloader}" level="verbose"/>
<echo message="preloader-app = ${preloader-app}" level="verbose"/>
<echo message="fx-in-swing-app = ${fx-in-swing-app}" level="verbose"/>
<echo message="fx-in-swing-workaround-app = ${fx-in-swing-workaround-app}" level="verbose"/>
<echo message="preloader-app-no-workaround = ${preloader-app-no-workaround}" level="verbose"/>
<echo message="html-template-available = ${html-template-available}" level="verbose"/>
<echo message="icon-available = ${icon-available}" level="verbose"/>
<echo message="dimensions-available = ${dimensions-available}" level="verbose"/>
<echo message="update-mode-background = ${update-mode-background}" level="verbose"/>
<echo message="offline-allowed = ${offline-allowed}" level="verbose"/>
<echo message="permissions-elevated = ${permissions-elevated}" level="verbose"/>
<echo message="binary-encode-css = ${binary-encode-css}" level="verbose"/>
<echo message="rebase-lib-jars = ${rebase-lib-jars}" level="verbose"/>
<echo message="use-blob-signing = ${use-blob-signing}" level="verbose"/>
</target>
<target name="-swing-api-check" depends="-check-project,-check-jfx-deployment" if="fx-in-swing-app">
<condition property="fx-in-swing-app-workaround">
<and>
<isset property="fx-in-swing-app"/>
<not><isset property="have-fx-ant-api-1.2"/></not>
</and>
</condition>
</target>
<target name="-swing-api-warning" depends="-swing-api-check" if="fx-in-swing-app-workaround">
<echo message="Info: No support for FX-in-Swing deployment detected in current JavaFX SDK. Using workaround instead."/>
</target>
<target name="-icon-deployment-check" depends="-check-project,-check-jfx-deployment" if="icon-available">
<condition property="icon-deployment-may-not-be-supported">
<and>
<isset property="icon-available"/>
<not><isset property="have-fx-ant-api-1.1"/></not>
</and>
</condition>
</target>
<target name="-icon-warning" depends="-icon-deployment-check" if="icon-deployment-may-not-be-supported">
<echo message="Warning: Note that due to a bug in early JavaFX 2.0 SDK distributions the icon may not be properly set in deployment files."/>
</target>
<target name="-set-dimensions" depends="-check-project" if="dimensions-available">
<property name="javafx.width" value="${javafx.run.width}"/>
<property name="javafx.height" value="${javafx.run.height}"/>
</target>
<target name="-reset-dimensions" depends="-check-project" unless="dimensions-available">
<property name="javafx.width" value="800"/>
<property name="javafx.height" value="600"/>
</target>
<target name="-set-update-mode-background" depends="-check-project" if="update-mode-background">
<property name="update-mode" value="background"/>
</target>
<target name="-set-update-mode-eager" depends="-check-project" unless="update-mode-background">
<property name="update-mode" value="eager"/>
</target>
<target name="-set-permissions-elevated" depends="-check-project" if="permissions-elevated">
<property name="permissions.elevated" value="true"/>
</target>
<target name="-reset-permissions-elevated" depends="-check-project" unless="permissions-elevated">
<property name="permissions.elevated" value="false"/>
</target>
<target name="-set-binary-css" depends="-check-project,-init-css-conversion" if="do.copy.binary.css">
<property name="css-include-ext" value="bss"/>
<property name="css-exclude-ext" value="css"/>
</target>
<target name="-unset-binary-css" depends="-check-project,-init-css-conversion" unless="do.copy.binary.css">
<property name="css-include-ext" value="css"/>
<property name="css-exclude-ext" value="bss"/>
</target>
<target name="-copy-binary-css" depends="-init-css-conversion,-set-binary-css,-unset-binary-css,-copy-binary-css-bypass,-copy-binary-css-impl"/>
<target name="-init-css-conversion" depends="-check-project,-check-ant-jre-version">
<fileset id="cssfiles" dir="${basedir}${file.separator}${build.classes.dir}">
<include name="**${file.separator}*.css"/>
</fileset>
<pathconvert refid="cssfiles" property="cssfileset.notempty" setonempty="false"/>
<condition property="do.copy.binary.css">
<and>
<isset property="binary-encode-css"/>
<isset property="cssfileset.notempty"/>
<not><isset property="have-jdk7-css2bin-bug"/></not>
</and>
</condition>
<condition property="do.bypass.binary.css">
<and>
<isset property="binary-encode-css"/>
<isset property="cssfileset.notempty"/>
<isset property="have-jdk7-css2bin-bug"/>
</and>
</condition>
<echo message="do.copy.binary.css = ${do.copy.binary.css}" level="verbose"/>
<echo message="do.bypass.binary.css = ${do.bypass.binary.css}" level="verbose"/>
</target>
<target name="-copy-binary-css-bypass" depends="-init-css-conversion" if="do.bypass.binary.css">
<echo message="Warning: Bypassing FX CSS to BSS conversion due to a bug in <fx:csstobin> task in current JDK platform" level="warning"/>
</target>
<target name="-copy-binary-css-impl" depends="-init-css-conversion" if="do.copy.binary.css">
<property name="cssfileslist" refid="cssfiles"/>
<echo message="css files to binary convert: " level="verbose">${cssfileslist}</echo>
<fx:csstobin outdir="${basedir}${file.separator}${build.classes.dir}">
<fileset refid="cssfiles"/>
</fx:csstobin>
</target>
<!-- Copy dependent libraries -->
<!-- Note: target "-jfx-copylibs" is referenced from NB 7.1 build-impl.xml -->
<target name="-jfx-copylibs" depends="init,compile,-pre-pre-jar,-pre-jar,-jfx-copylibs-warning" unless="fallback.no.javascript">
<jfx-copylibs-js-impl/>
</target>
<target name="-jfx-copylibs-warning" if="fallback.no.javascript">
<echo message="Warning: Dependent Libraries copy (-jfx-copylibs) skipped in fallback build mode due to JDK missing JavaScript support."/>
</target>
<macrodef name="jfx-copylibs-js-impl">
<sequential>
<local name="run.classpath.without.build.classes.and.dist.dir"/>
<pathconvert property="run.classpath.without.build.classes.and.dist.dir">
<path path="${run.classpath}"/>
<map from="${basedir}${file.separator}${build.classes.dir}" to=""/>
<map from="${basedir}${file.separator}${dist.jar}" to=""/>
<scriptmapper language="javascript">
self.addMappedName(
(source.indexOf("jfxrt.jar") >= 0) ||
(source.indexOf("deploy.jar") >= 0) ||
(source.indexOf("javaws.jar") >= 0) ||
(source.indexOf("plugin.jar") >= 0)
? "" : source
);
</scriptmapper>
</pathconvert>
<!-- add possibly missing dependencies at distance 2 (build system logic thus provides transitive closure) -->
<local name="run.and.lib.classpath"/>
<echo message="JavaScript: -jfx-copylibs" level="verbose"/>
<script language="javascript">
<![CDATA[
function prefix(s, len) {
if(s == null || len <= 0 || s.length == 0) {
return new String("");
}
return new String(s.substr(0, len));
}
function defined(s) {
return (s != null) && (s != "null") && (s.length > 0);
}
var pathConvert = project.createTask("pathconvert");
pathConvert.setProperty("run.and.lib.classpath");
var classPath = new String(project.getProperty("run.classpath.without.build.classes.and.dist.dir"));
var fileSeparator = new String(project.getProperty("file.separator"));
if(defined(classPath)) {
var classPathCopy = pathConvert.createPath();
classPathCopy.setPath(classPath);
var pathArray;
if(classPath.indexOf(";") != -1) {
pathArray = classPath.split(";");
} else {
pathArray = classPath.split(":");
}
var added = new java.lang.StringBuilder();
for (var i = 0; i < pathArray.length; i++) {
var index = pathArray[i].lastIndexOf(fileSeparator);
if (index >= 0) {
var onePath = prefix(pathArray[i], index+1).concat("lib");
var oneDir = new java.io.File(onePath);
if(oneDir.exists()) {
var fs = project.createDataType( "fileset" );
fs.setDir( oneDir );
fs.setIncludes("*.jar");
var ds = fs.getDirectoryScanner(project);
var srcFiles = ds.getIncludedFiles();
for (var j = 0; j < srcFiles.length; j++) {
if(classPath.indexOf( srcFiles[j] ) == -1 && added.indexOf( srcFiles[j] ) == -1) {
var path = pathConvert.createPath();
path.setPath( onePath.concat(fileSeparator).concat(srcFiles[j]) );
added.append( srcFiles[j] );
}
}
}
}
}
}
pathConvert.perform();
]]>
</script>
<echo message="run.and.lib.classpath = ${run.and.lib.classpath}" level="verbose"/>
<delete dir="${dist.dir}${file.separator}lib" includeEmptyDirs="true" quiet="true"/>
<copy todir="${dist.dir}${file.separator}lib" flatten="true" preservelastmodified="true" overwrite="true">
<path>
<pathelement path="${run.and.lib.classpath}"/>
</path>
</copy>
</sequential>
</macrodef>
<target name="-copy-external-preloader-jar" depends="-check-project" if="app-with-external-preloader-jar">
<copy file="${javafx.preloader.jar.path}" todir="${dist.dir}${file.separator}lib"/>
</target>
<!-- Optional classpath re-base of dependent JAR manifests after copy to lib/, required by GlassFish -->
<!-- Note: target "-rebase-libs" is referenced from NB 7.1 build-impl.xml -->
<target name="-rebase-libs" depends="-check-project, -jfx-copylibs, -check-rebase-libs, -rebase-libs-warning" if="do-rebase-lib-jars">
<rebase-libs-js-impl/>
</target>
<target name="-check-rebase-libs">
<condition property="do-rebase-lib-jars">
<and>
<isset property="rebase-lib-jars"/>
<not><isset property="fallback.no.javascript"/></not>
</and>
</condition>
<condition property="do-skip-rebase-libs">
<and>
<isset property="rebase-lib-jars"/>
<isset property="fallback.no.javascript"/>
</and>
</condition>
</target>
<target name="-rebase-libs-warning" depends="-check-rebase-libs" if="do-skip-rebase-libs">
<echo message="Warning: Dependent Libraries JARs rebase (-rebase-libs) skipped in fallback build mode due to JDK missing JavaScript support."/>
</target>
<macrodef name="rebase-libs-js-impl">
<sequential>
<property name="pp_rebase_dir" value="${basedir}${file.separator}${dist.dir}${file.separator}lib"/>
<property name="pp_rebase_fs" value="*.jar"/>
<echo message="JavaScript: -rebase-libs-js-impl" level="verbose"/>
<script language="javascript">
<![CDATA[
var dir = new String(project.getProperty("pp_rebase_dir"));
var fDir = new java.io.File(dir);
if( fDir.exists() ) {
var callTask = project.createTask("antcall");
callTask.setTarget("-rebase-libs-macro-call");
var param = callTask.createParam();
param.setName("jar.file.to.rebase");
var includes = new String(project.getProperty("pp_rebase_fs"));
var fs = project.createDataType("fileset");
fs.setDir( fDir );
fs.setIncludes(includes);
var ds = fs.getDirectoryScanner(project);
var srcFiles = ds.getIncludedFiles();
for (var i = 0; i < srcFiles.length; i++) {
param.setValue(dir.concat("${file.separator}").concat(srcFiles[i]));
callTask.perform();
}
}
]]>
</script>
</sequential>
</macrodef>
<macrodef name="rebase-lib">
<attribute name="jarfile"/>
<sequential>
<local name="tmpdir"/>
<property name="tmpdir" value="${java.io.tmpdir}${file.separator}${user.name}_${ant.project.name}_rebase" />
<echo message="tmpdir = ${tmpdir}" level="verbose"/>
<delete dir="${tmpdir}" quiet="true"/>
<mkdir dir="${tmpdir}"/>
<unzip src="@{jarfile}" dest="${tmpdir}">
<patternset>
<include name="META-INF${file.separator}MANIFEST.MF"/>
</patternset>
</unzip>
<local name="manifest.file.temp"/>
<property name="manifest.file.temp" value="${tmpdir}${file.separator}META-INF${file.separator}MANIFEST.MF" />
<echo message="manifest.file.temp = ${manifest.file.temp}" level="verbose"/>
<!-- edited manifest file -->
<local name="manifest.file.temp.new"/>
<property name="manifest.file.temp.new" value="${manifest.file.temp}_new" />
<echo message="manifest.file.temp.new = ${manifest.file.temp.new}" level="verbose"/>
<echo message="JavaScript: rebase-lib" level="verbose"/>
<script language="javascript">
<![CDATA[
var UTF_8 = "UTF-8";
var ATTR_CLASS_PATH = "Class-Path";
var ATTR_CLASS_PATH_FX = "JavaFX-Class-Path";
function endsWith(s, suffix) {
var i = s.lastIndexOf(suffix);
return (i != -1) && (i == (s.length - suffix.length));
}
function isSigned(manifest) {
var sections = manifest.getSectionNames();
while(sections.hasMoreElements()) {
var sectionname = new String(sections.nextElement());
var section = manifest.getSection(sectionname);
if(section != null) {
var sectionKeys = section.getAttributeKeys();
while (sectionKeys.hasMoreElements()) {
var element = new String(sectionKeys.nextElement());
if (endsWith(element, "-Digest") || endsWith(element, "-digest")) {
return true;
}
}
}
}
return false;
}
var src = new String(project.getProperty("manifest.file.temp"));
var srf = new java.io.File(src);
var manifest;
try {
var fis = new java.io.FileInputStream(srf);
try {
var isr = new java.io.InputStreamReader(fis, UTF_8);
try {
manifest = new org.apache.tools.ant.taskdefs.Manifest(isr);
} finally {
isr.close();
}
} finally {
fis.close();
}
} catch(e) {
manifest = null;
}
if(manifest != null) {
if(isSigned(manifest)) {
print("Warning: Signed JAR can not be rebased.");
} else {
var mainSection = manifest.getMainSection();
var classPath = mainSection.getAttributeValue(ATTR_CLASS_PATH);
var classPathAttr = null;
if (classPath != null) {
classPathAttr = ATTR_CLASS_PATH;
} else {
classPath = mainSection.getAttributeValue(ATTR_CLASS_PATH_FX);
if(classPath != null) {
classPathAttr = ATTR_CLASS_PATH_FX;
}
}
if(classPath != null) {
var result = new java.lang.StringBuilder();
var changed = false;
var pathArray = classPath.split(" ");
for (var i = 0; i < pathArray.length; i++) {
if (result.length() > 0) {
result.append(' ');
}
var index = pathArray[i].lastIndexOf('/');
if (index >= 0 && index < pathArray[i].length - 1) {
pathArray[i] = pathArray[i].substring(index+1);
changed = true;
}
result.append(pathArray[i]);
}
mainSection.removeAttribute(classPathAttr);
mainSection.addAttributeAndCheck(new org.apache.tools.ant.taskdefs.Manifest.Attribute(classPathAttr, result.toString()));
var tgt = new String(project.getProperty("manifest.file.temp.new"));
var tgf = new java.io.File(tgt);
try {
var fos = new java.io.FileOutputStream(tgf);
try {
var osw = new java.io.OutputStreamWriter(fos, UTF_8);
try {
var manifestOut = new java.io.PrintWriter(osw);
manifest.write(manifestOut);
manifestOut.close();
} finally {
osw.close();
}
} finally {
fos.close();
}
} catch(e) {
print("Warning: problem storing rebased manifest file.");
}
}
}
}
]]>
</script>
<antcall target="-move-new-manifest-if-exists">
<param name="move.file.from" value="${manifest.file.temp.new}"/>
<param name="move.file.to" value="${manifest.file.temp}"/>
</antcall>
<zip destfile="@{jarfile}" basedir="${tmpdir}" update="true"/>
<delete dir="${tmpdir}" quiet="true"/>
</sequential>
</macrodef>
<target name="-new-temp-mainfest-existence">
<condition property="new-temp-manifest-exists">
<available file="${move.file.from}"/>
</condition>
<echo message="new-temp-manifest-exists = ${new-temp-manifest-exists}" level="verbose"/>
</target>
<target name="-move-new-manifest-if-exists" depends="-new-temp-mainfest-existence" if="new-temp-manifest-exists">
<move file="${move.file.from}" tofile="${move.file.to}" failonerror="false"/>
</target>
<target name="-rebase-libs-macro-call">
<echo message="Rebase jarfile = ${jar.file.to.rebase}" level="verbose"/>
<rebase-lib jarfile="${jar.file.to.rebase}"/>
</target>
<!-- Main Deployment Target -->
<!-- Note: target "jfx-deployment" is referenced from NB 7.1+ build-impl.xml -->
<target name="jfx-deployment" depends="-check-jfx-deployment-launch,-do-jfx-deployment-script,-do-jfx-deployment-noscript" if="jfx-deployment-available"/>
<target name="-check-dist-lib-exists">
<deploy-defines/>
<available file="${jfx.deployment.dir}${file.separator}lib" type="dir" property="dist.lib.exists"/>
</target>
<target name="-check-jfx-deployment-jar-current-nolib" depends="-check-dist-lib-exists" unless="dist.lib.exists">
<uptodate property="jfx-deployment-jar-current" targetfile="${jfx.deployment.dir}${file.separator}${jfx.deployment.jar}" >
<srcfiles dir="${basedir}${file.separator}${build.classes.dir}" includes="**${file.separator}*"/>
<srcfiles dir="${basedir}${file.separator}nbproject" includes="**${file.separator}*"/>
</uptodate>
</target>
<target name="-check-jfx-deployment-jar-current-lib" depends="-check-dist-lib-exists" if="dist.lib.exists">
<uptodate property="jfx-deployment-jar-current" targetfile="${jfx.deployment.dir}${file.separator}${jfx.deployment.jar}" >
<srcfiles dir="${basedir}${file.separator}${build.classes.dir}" includes="**${file.separator}*"/>
<srcfiles dir="${jfx.deployment.dir}${file.separator}lib" includes="**${file.separator}*"/>
<srcfiles dir="${basedir}${file.separator}nbproject" includes="**${file.separator}*"/>
</uptodate>
</target>
<target name="-check-jfx-deployment-launch" depends="-check-jfx-deployment,-check-jfx-deployment-jar-current-nolib,-check-jfx-deployment-jar-current-lib">
<condition property="do-jfx-deployment-script">
<and>
<isset property="jfx-deployment-available"/>
<not><isset property="fallback.no.javascript"/></not>
<not><isset property="jfx-deployment-jar-current"/></not>
</and>
</condition>
<condition property="do-jfx-deployment-noscript">
<and>
<isset property="jfx-deployment-available"/>
<isset property="fallback.no.javascript"/>
<not><isset property="jfx-deployment-jar-current"/></not>
</and>
</condition>
</target>
<target name="-do-jfx-deployment-script" depends="-check-jfx-deployment-launch" if="do-jfx-deployment-script">
<antcall target="jfx-deployment-script"/>
</target>
<target name="-do-jfx-deployment-noscript" depends="-check-jfx-deployment-launch" if="do-jfx-deployment-noscript">
<antcall target="jfx-deployment-noscript"/>
</target>
<target name="jfx-deployment-script" depends="-check-jfx-deployment,-check-project,
-swing-api-warning,-icon-warning,
-set-dimensions,-reset-dimensions,-set-update-mode-background,-set-update-mode-eager,
-set-permissions-elevated,-reset-permissions-elevated,
-copy-external-preloader-jar,-copy-binary-css,
-deploy-app-sign-nopreloader-notemplate,
-deploy-app-sign-preloader-notemplate,
-deploy-app-sign-nopreloader-template,
-deploy-app-sign-preloader-template,
-deploy-app-sign-nopreloader-notemplate-swing,
-deploy-app-sign-nopreloader-template-swing,
-deploy-app-sign-blob-nopreloader-notemplate,
-deploy-app-sign-blob-preloader-notemplate,
-deploy-app-sign-blob-nopreloader-template,
-deploy-app-sign-blob-preloader-template,
-deploy-app-sign-blob-nopreloader-notemplate-swing,
-deploy-app-sign-blob-nopreloader-template-swing,
-deploy-app-nosign-nopreloader-notemplate,
-deploy-app-nosign-preloader-notemplate,
-deploy-app-nosign-nopreloader-template,
-deploy-app-nosign-preloader-template,
-deploy-app-nosign-nopreloader-notemplate-swing,
-deploy-app-nosign-nopreloader-template-swing"
if="jfx-deployment-available">
</target>
<target name="jfx-deployment-noscript" depends="-check-jfx-deployment,-check-project,
-swing-api-warning,-icon-warning,
-set-dimensions,-reset-dimensions,-set-update-mode-background,-set-update-mode-eager,
-set-permissions-elevated,-reset-permissions-elevated,
-copy-external-preloader-jar,-copy-binary-css,
-fallback-deploy-app-sign-nopreloader-notemplate,
-fallback-deploy-app-sign-preloader-notemplate,
-fallback-deploy-app-sign-nopreloader-template,
-fallback-deploy-app-sign-preloader-template,
-fallback-deploy-app-sign-nopreloader-notemplate-swing,
-fallback-deploy-app-sign-nopreloader-template-swing,
-fallback-deploy-app-sign-blob-nopreloader-notemplate,
-fallback-deploy-app-sign-blob-preloader-notemplate,
-fallback-deploy-app-sign-blob-nopreloader-template,
-fallback-deploy-app-sign-blob-preloader-template,
-fallback-deploy-app-sign-blob-nopreloader-notemplate-swing,
-fallback-deploy-app-sign-blob-nopreloader-template-swing,
-fallback-deploy-app-nosign-nopreloader-notemplate,
-fallback-deploy-app-nosign-preloader-notemplate,
-fallback-deploy-app-nosign-nopreloader-template,
-fallback-deploy-app-nosign-preloader-template,
-fallback-deploy-app-nosign-nopreloader-notemplate-swing,
-fallback-deploy-app-nosign-nopreloader-template-swing"
if="jfx-deployment-available">
</target>
<!-- Security / Signing -->
<target name="-unavailable-signjars-task" depends="-check-jfx-deployment" unless="jfx-deployment-available">
<echo message="Warning: Task required to sign JAR file is missing, check the availability of JavaFX 2.0 deployment tasks. JAR files will not be signed."/>
</target>
<target name="-security-props-check">
<condition property="javafx.signed.true">
<istrue value="${javafx.signing.enabled}"/>
</condition>
</target>
<target name="-check-signing-possible" depends="-security-props-check,-check-jfx-deployment,-unavailable-signjars-task">
<condition property="javafx.signed.true+signjars.task.available">
<and>
<isset property="javafx.signed.true"/>
<isset property="jfx-deployment-available"/>
</and>
</condition>
</target>
<target name="-javafx-init-keystore" depends="-check-signing-possible,-javafx-init-signing,-javafx-init-keystore1,-javafx-init-keystore2,-check-keystore-exists"
if="javafx.signed.true+signjars.task.available" unless="do.not.init.keystore">
<property name="javafx.signjar.vendor" value="CN=${application.vendor}"/>
<echo message="Going to create default keystore in ${javafx.signjar.keystore}"/>
<genkey dname="${javafx.signjar.vendor}" alias="${javafx.signjar.alias}" keystore="${javafx.signjar.keystore}"
storepass="${javafx.signjar.storepass}" keypass="${javafx.signjar.keypass}"/>
</target>
<target name="-check-keystore-exists" depends="-security-props-check">
<available property="javafx.signjar.keystore.exists" file="${javafx.signjar.keystore}"/>
<condition property="do.not.init.keystore">
<or>
<not><isset property="javafx.signed.true"/></not>
<isset property="javafx.signjar.keystore.exists"/>
</or>
</condition>
</target>
<target name="-javafx-init-signing">
<condition property="generated.key.signing">
<equals arg1="${javafx.signing.type}" arg2="self" trim="true"/>
</condition>
</target>
<target name="-javafx-init-keystore1" depends="-javafx-init-signing" if="generated.key.signing">
<property name="javafx.signjar.keystore" value="${basedir}${file.separator}build${file.separator}nb-jfx.jks" />
<property name="javafx.signjar.storepass" value="storepass"/>
<property name="javafx.signjar.keypass" value="keypass"/>
<property name="javafx.signjar.alias" value="nb-jfx"/>
</target>
<target name="-javafx-init-keystore2" depends="-javafx-init-signing" unless="generated.key.signing">
<property name="javafx.signjar.keystore" value="${javafx.signing.keystore}" />
<property name="javafx.signjar.storepass" value="${javafx.signing.keystore.password}"/>
<property name="javafx.signjar.keypass" value="${javafx.signing.keyalias.password}"/>
<property name="javafx.signjar.alias" value="${javafx.signing.keyalias}"/>
</target>
<target name="-check-signing-security" depends="-security-props-check">
<condition property="is.signing.unsafe">
<or>
<not><isset property="javafx.signed.true"/></not>
<not><equals arg1="${javafx.signing.type}" arg2="key" casesensitive="false" trim="true"/></not>
</or>
</condition>
</target>
<target name="-warn-insufficient-signing" depends="-check-signing-security" if="is.signing.unsafe">
<echo message="Warning: Unsigned and self-signed WebStart Applications and Applets are deprecated from JDK7u21 onwards due to security reasons.${line.separator} To ensure future correct functionality please sign WebStart Applications and Applets using trusted certificate."/>
</target>
<!-- Project Deployment Macros -->
<macrodef name="deploy-defines">
<sequential>
<basename property="jfx.deployment.jar" file="${dist.jar}"/>
<property name="jfx.deployment.dir" location="${dist.dir}"/>
</sequential>
</macrodef>
<macrodef name="deploy-preprocess">
<sequential>
<delete includeEmptyDirs="true" quiet="true">
<fileset dir="${jfx.deployment.dir}${file.separator}lib">
<exclude name="**${file.separator}*.jar"/>
</fileset>
</delete>
</sequential>
</macrodef>
<!-- fx:jar scripted call enables passing of arbitrarily long list of params and fx-version dependent behavior -->
<macrodef name="deploy-jar">
<sequential>
<antcall target="-pre-jfx-jar"/>
<echo message="javafx.ant.classpath = ${javafx.ant.classpath}" level="verbose"/>
<typedef name="fx_jar" classname="com.sun.javafx.tools.ant.FXJar" classpath="${javafx.ant.classpath}"/>
<echo message="Launching <fx:jar> task from ${ant-javafx.jar.location}" level="info"/>
<property name="pp_jar_destfile" value="${jfx.deployment.dir}${file.separator}${jfx.deployment.jar}"/>
<property name="pp_jar_buildclasses" value="${basedir}${file.separator}${build.classes.dir}"/>
<property name="pp_jar_cssbss" value="**${file.separator}*.${css-exclude-ext}"/>
<property name="pp_jar_dir" value="${jfx.deployment.dir}"/>
<property name="pp_jar_fs1" value="lib${file.separator}${javafx.preloader.jar.filename}"/>
<property name="pp_jar_fs2" value="lib${file.separator}*.jar"/>
<echo message="deploy_jar: pp_jar_destfile = ${pp_jar_destfile}" level="verbose"/>
<echo message="deploy_jar: pp_jar_buildclasses = ${pp_jar_buildclasses}" level="verbose"/>
<echo message="deploy_jar: pp_jar_cssbss = ${pp_jar_cssbss}" level="verbose"/>
<echo message="deploy_jar: pp_jar_dir = ${pp_jar_dir}" level="verbose"/>
<echo message="deploy_jar: pp_jar_fs1 = ${pp_jar_fs1}" level="verbose"/>
<echo message="deploy_jar: pp_jar_fs2 = ${pp_jar_fs2}" level="verbose"/>
<echo message="JavaScript: deploy-jar" level="verbose"/>
<script language="javascript">
<![CDATA[
function isTrue(prop) {
return prop != null &&
( prop.toLowerCase() == "true" || prop.toLowerCase() == "yes" || prop.toLowerCase() == "on" );
}
function prefix(s, len) {
if(s == null || len <= 0 || s.length == 0) {
return new String("");
}
return new String(s.substr(0, len));
}
function replaceSuffix(s, os, ns) {
return prefix(s, s.indexOf(os)).concat(ns);
}
function startsWith(s, prefix) {
return (s != null) && (s.indexOf(prefix) == 0);
}
function endsWith(s, suffix) {
var i = s.lastIndexOf(suffix);
return (i != -1) && (i == (s.length - suffix.length));
}
function defined(s) {
return (s != null) && (s != "null") && (s.length > 0);
}
function contains(array, prop) {
for (var i = 0; i < array.length; i++) {
var s1 = new String(array[i]);
var s2 = new String(prop);
if( s1.toLowerCase() == s2.toLowerCase() ) {
return true;
}
}
return false;
}
var S = new String(java.io.File.separator);
var JFXPAR = "javafx.param";
var JFXMAN = "javafx.manifest.entry";
var JFXPARN = "name";
var JFXPARV = "value";
var JFXPARH = "hidden";
var JFXLAZY = "download.mode.lazy.jar";
var withpreloader = new String(project.getProperty("app-with-preloader"));
var fx_ant_api_1_1 = new String(project.getProperty("have-fx-ant-api-1.1"));
var fx_ant_api_1_2 = new String(project.getProperty("have-fx-ant-api-1.2"));
var fx_in_swing_app = new String(project.getProperty("fx-in-swing-app"));
// get jars with lazy download mode property set
function getLazyJars() {
var jars = new Array();
var keys = project.getProperties().keys();
while(keys.hasMoreElements()) {
var pn = new String(keys.nextElement());
if(startsWith(pn, JFXLAZY)) {
var fname = new String(pn.substring(JFXLAZY.length+1));
jars.push(fname);
}
}
return jars.length > 0 ? jars : null;
}
// set download mode of dependent libraries
function setDownloadMode(fsEager, fsLazy, jars) {
for(var i = 0; i < jars.length; i++) {
fsEager.setExcludes("lib" + S + jars[i]);
fsLazy.setIncludes("lib" + S + jars[i]);
}
}
// fx:jar
var jar = project.createTask("fx_jar");
jar.setProject(project);
var destfile = new String(project.getProperty("pp_jar_destfile"));
jar.setDestfile(destfile);
// fx:application
var app = jar.createApplication();
app.setProject(project);
var title = new String(project.getProperty("application.title"));
var mainclass;
if(isTrue(fx_in_swing_app) && isTrue(fx_ant_api_1_2)) {
mainclass = new String(project.getProperty("main.class"));
app.setToolkit("swing");
} else {
mainclass = new String(project.getProperty("javafx.main.class"));
}
var fallback = new String(project.getProperty("javafx.fallback.class"));
app.setName(title);
app.setMainClass(mainclass);
app.setFallbackClass(fallback);
if(isTrue(withpreloader)) {
preloaderclass = new String(project.getProperty("javafx.preloader.class"));
app.setPreloaderClass(preloaderclass);
}
var appversion = new String(project.getProperty("javafx.application.implementation.version"));
if(defined(appversion)) {
app.setVersion(appversion);
} else {
app.setVersion("1.0");
}
// fx:param, fx:argument
var searchHides = project.getProperties().keys();
var hides = new Array();
while(searchHides.hasMoreElements()) {
// collect all hidden property names
var pns = new String(searchHides.nextElement());
if(startsWith(pns, JFXPAR) && endsWith(pns, JFXPARN)) {
var propns = new String(project.getProperty(pns));
var phs = replaceSuffix(pns, JFXPARN, JFXPARH);
var proph = new String(project.getProperty(phs));
if(isTrue(proph)) {
hides.push(propns);
}
}
}
var keys = project.getProperties().keys();
while(keys.hasMoreElements()) {
var pn = new String(keys.nextElement());
if(startsWith(pn, JFXPAR) && endsWith(pn, JFXPARN)) {
var propn = new String(project.getProperty(pn));
if(defined(propn) && !contains(hides, propn)) {
var pv = replaceSuffix(pn, JFXPARN, JFXPARV);
var propv = new String(project.getProperty(pv));
if(defined(propv)) {
var par = app.createParam();
par.setName(propn);
par.setValue(propv);
} else {
if(isTrue(fx_ant_api_1_1)) {
var arg = app.createArgument();
arg.addText(propn);
} else {
print("Warning: Unnamed parameters not supported by this version of JavaFX SDK deployment Ant tasks. Upgrade JavaFX to 2.0.2 or higher.");
}
}
}
}
}
// fx:resources
var res = jar.createResources();
res.setProject(project);
var pdir = new String(project.getProperty("pp_jar_dir"));
if(isTrue(withpreloader)) {
var f1 = res.createFileSet();
f1.setProject(project);
f1.setDir(new java.io.File(pdir));
var i1 = new String(project.getProperty("pp_jar_fs1"));
f1.setIncludes(i1);
f1.setRequiredFor("preloader");
var f2 = res.createFileSet();
f2.setProject(project);
f2.setDir(new java.io.File(pdir));
var i2a = new String(project.getProperty("jfx.deployment.jar"));
var i2b = new String(project.getProperty("pp_jar_fs2"));
var e2c = new String(project.getProperty("pp_jar_fs1"));
f2.setIncludes(i2a);
f2.setIncludes(i2b);
f2.setExcludes(e2c);
f2.setRequiredFor("startup");
var lazyjars = getLazyJars();
if(lazyjars != null) {
var f3 = res.createFileSet();
f3.setProject(project);
f3.setDir(new java.io.File(pdir));
f3.setRequiredFor("runtime");
setDownloadMode(f2,f3,lazyjars);
}
} else {
var fn = res.createFileSet();
fn.setProject(project);
fn.setDir(new java.io.File(pdir));
var ia = new String(project.getProperty("jfx.deployment.jar"));
var ib = new String(project.getProperty("pp_jar_fs2"));
fn.setIncludes(ia);
fn.setIncludes(ib);
fn.setRequiredFor("startup");
var lazyjars = getLazyJars();
if(lazyjars != null) {
var fn2 = res.createFileSet();
fn2.setProject(project);
fn2.setDir(new java.io.File(pdir));
fn2.setRequiredFor("runtime");
setDownloadMode(fn,fn2,lazyjars);
}
}
// fileset to exclude *.css or *.bss
var fs = jar.createFileSet();
fs.setProject(project);
var buildcls = new String(project.getProperty("pp_jar_buildclasses"));
var exc = new String(project.getProperty("pp_jar_cssbss"));
fs.setDir(new java.io.File(buildcls));
fs.setExcludes(exc);
// manifest
var man = jar.createManifest();
var a1val = new String(project.getProperty("application.vendor"));
var a1 = new org.apache.tools.ant.taskdefs.Manifest.Attribute();
a1.setName("Implementation-Vendor");
a1.setValue(a1val);
man.addConfiguredAttribute(a1);
var a2val = new String(project.getProperty("application.title"));
var a2 = new org.apache.tools.ant.taskdefs.Manifest.Attribute();
a2.setName("Implementation-Title");
a2.setValue(a2val);
man.addConfiguredAttribute(a2);
if(defined(appversion)) {
var a3 = new org.apache.tools.ant.taskdefs.Manifest.Attribute();
a3.setName("Implementation-Version");
a3.setValue(appversion);
man.addConfiguredAttribute(a3);
}
var a4prop = new String(project.getProperty("javafx.deploy.disable.proxy"));
if(isTrue(a4prop)) {
var a4 = new org.apache.tools.ant.taskdefs.Manifest.Attribute();
a4.setName("JavaFX-Feature-Proxy");
a4.setValue("None");
man.addConfiguredAttribute(a4);
}
// custom manifest entries
var searchManifestHides = project.getProperties().keys();
var manifestHides = new Array();
while(searchManifestHides.hasMoreElements()) {
// collect all hidden property names
var pns = new String(searchManifestHides.nextElement());
if(startsWith(pns, JFXMAN) && endsWith(pns, JFXPARN)) {
var propns = new String(project.getProperty(pns));
var phs = replaceSuffix(pns, JFXPARN, JFXPARH);
var proph = new String(project.getProperty(phs));
if(isTrue(proph)) {
manifestHides.push(propns);
}
}
}
var manifestKeys = project.getProperties().keys();
while(manifestKeys.hasMoreElements()) {
var pn = new String(manifestKeys.nextElement());
if(startsWith(pn, JFXMAN) && endsWith(pn, JFXPARN)) {
var propn = new String(project.getProperty(pn));
if(defined(propn) && !contains(manifestHides, propn)) {
var propnr = propn.replace(/\s/g, "-");
var entry = new org.apache.tools.ant.taskdefs.Manifest.Attribute();
entry.setName(propnr);
var pv = replaceSuffix(pn, JFXPARN, JFXPARV);
var propv = new String(project.getProperty(pv));
if(defined(propv)) {
entry.setValue(propv);
} else {
entry.setValue("");
}
man.addConfiguredAttribute(entry);
}
}
}
var profileAvailable = new String(project.getProperty("profile.available"));
if (defined(profileAvailable)) {
var profileAttribute = new org.apache.tools.ant.taskdefs.Manifest.Attribute();
profileAttribute.setName("Profile");
profileAttribute.setValue(new String(project.getProperty("javac.profile")));
man.addConfiguredAttribute(profileAttribute);
}
var perm_elev = new String(project.getProperty("permissions.elevated"));
var cust_perm = new String(project.getProperty("manifest.custom.permissions"));
var cust_cb = new String(project.getProperty("manifest.custom.codebase"));
var sa1 = new org.apache.tools.ant.taskdefs.Manifest.Attribute();
sa1.setName("Codebase");
if(!defined(cust_cb) || cust_cb == "*") {
sa1.setValue("*");
print("Warning: From JDK7u25 the Codebase manifest attribute should be used to restrict JAR repurposing.");
print(" Please set manifest.custom.codebase property to override the current default non-secure value '*'.");
} else {
sa1.setValue(cust_cb);
}
man.addConfiguredAttribute(sa1);
var sa2 = new org.apache.tools.ant.taskdefs.Manifest.Attribute();
sa2.setName("Permissions");
if(!defined(cust_perm)) {
if(isTrue(perm_elev)) {
sa2.setValue("all-permissions");
} else {
sa2.setValue("sandbox");
}
} else {
if(cust_perm == "all-permissions") {
sa2.setValue("all-permissions");
} else {
sa2.setValue("sandbox");
}
}
man.addConfiguredAttribute(sa2);
// Note: see JavaFX Jira issue #RT-25003 if attribute names are created lowercase in manifest
jar.perform();
]]>
</script>
<antcall target="-post-jfx-jar"/>
</sequential>
</macrodef>
<macrodef name="deploy-sign">
<sequential>
<echo message="keystore=${javafx.signjar.keystore}" level="verbose"/>
<echo message="storepass=${javafx.signjar.storepass}" level="verbose"/>
<echo message="alias=${javafx.signjar.alias}" level="verbose"/>
<echo message="keypass=${javafx.signjar.keypass}" level="verbose"/>
<signjar keystore="${javafx.signjar.keystore}"
storepass="${javafx.signjar.storepass}"
alias="${javafx.signjar.alias}"
keypass="${javafx.signjar.keypass}">
<fileset dir="${jfx.deployment.dir}">
<include name="${jfx.deployment.jar}"/>
<include name="lib${file.separator}*.jar"/>
</fileset>
</signjar>
</sequential>
</macrodef>
<macrodef name="deploy-sign-blob">
<sequential>
<echo message="keystore=${javafx.signjar.keystore}" level="verbose"/>
<echo message="storepass=${javafx.signjar.storepass}" level="verbose"/>
<echo message="alias=${javafx.signjar.alias}" level="verbose"/>
<echo message="keypass=${javafx.signjar.keypass}" level="verbose"/>
<echo message="Launching <fx:signjar> task from ${ant-javafx.jar.location}" level="info"/>
<fx:signjar keystore="${javafx.signjar.keystore}"
storepass="${javafx.signjar.storepass}"
alias="${javafx.signjar.alias}"
keypass="${javafx.signjar.keypass}">
<fileset dir="${jfx.deployment.dir}">
<include name="${jfx.deployment.jar}"/>
<include name="lib${file.separator}*.jar"/>
</fileset>
</fx:signjar>
</sequential>
</macrodef>
<macrodef name="deploy-sign-preloader">
<sequential>
<echo message="keystore=${javafx.signjar.keystore}" level="verbose"/>
<echo message="storepass=${javafx.signjar.storepass}" level="verbose"/>
<echo message="alias=${javafx.signjar.alias}" level="verbose"/>
<echo message="keypass=${javafx.signjar.keypass}" level="verbose"/>
<signjar keystore="${javafx.signjar.keystore}"
storepass="${javafx.signjar.storepass}"
alias="${javafx.signjar.alias}"
keypass="${javafx.signjar.keypass}">
<fileset dir="${jfx.deployment.dir}">
<include name="lib${file.separator}${javafx.preloader.jar.filename}"/>
</fileset>
</signjar>
<signjar keystore="${javafx.signjar.keystore}"
storepass="${javafx.signjar.storepass}"
alias="${javafx.signjar.alias}"
keypass="${javafx.signjar.keypass}">
<fileset dir="${jfx.deployment.dir}">
<include name="${jfx.deployment.jar}"/>
<include name="lib${file.separator}*.jar"/>
<exclude name="lib${file.separator}${javafx.preloader.jar.filename}"/>
</fileset>
</signjar>
</sequential>
</macrodef>
<macrodef name="deploy-sign-blob-preloader">
<sequential>
<echo message="keystore=${javafx.signjar.keystore}" level="verbose"/>
<echo message="storepass=${javafx.signjar.storepass}" level="verbose"/>
<echo message="alias=${javafx.signjar.alias}" level="verbose"/>
<echo message="keypass=${javafx.signjar.keypass}" level="verbose"/>
<signjar keystore="${javafx.signjar.keystore}"
storepass="${javafx.signjar.storepass}"
alias="${javafx.signjar.alias}"
keypass="${javafx.signjar.keypass}">
<fileset dir="${jfx.deployment.dir}">
<include name="lib${file.separator}${javafx.preloader.jar.filename}"/>
</fileset>
</signjar>
<echo message="Launching <fx:signjar> task from ${ant-javafx.jar.location}" level="info"/>
<fx:signjar keystore="${javafx.signjar.keystore}"
storepass="${javafx.signjar.storepass}"
alias="${javafx.signjar.alias}"
keypass="${javafx.signjar.keypass}">
<fileset dir="${jfx.deployment.dir}">
<include name="${jfx.deployment.jar}"/>
<include name="lib${file.separator}*.jar"/>
<exclude name="lib${file.separator}${javafx.preloader.jar.filename}"/>
</fileset>
</fx:signjar>
</sequential>
</macrodef>
<macrodef name="deploy-process-template">
<sequential>
<echo message="javafx.run.htmltemplate = ${javafx.run.htmltemplate}" level="verbose"/>
<pathconvert property="javafx.run.htmltemplate.processed">
<path path="${javafx.run.htmltemplate}"/>
<mapper>
<chainedmapper>
<flattenmapper/>
<globmapper from="*" to="${jfx.deployment.dir}${file.separator}*" casesensitive="no"/>
</chainedmapper>
</mapper>
</pathconvert>
<echo message="javafx.run.htmltemplate.processed = ${javafx.run.htmltemplate.processed}" level="verbose"/>
</sequential>
</macrodef>
<!-- fx:deploy scripted call enables passing of arbitrarily long lists of params, vmoptions and callbacks and fx-version dependent behavior -->
<macrodef name="deploy-deploy">
<sequential>
<antcall target="-pre-jfx-deploy"/>
<antcall target="-call-pre-jfx-native"/>
<echo message="javafx.ant.classpath = ${javafx.ant.classpath}" level="verbose"/>
<typedef name="fx_deploy" classname="com.sun.javafx.tools.ant.DeployFXTask" classpath="${javafx.ant.classpath}"/>
<echo message="Launching <fx:deploy> task from ${ant-javafx.jar.location}" level="info"/>
<property name="pp_deploy_dir" value="${jfx.deployment.dir}"/>
<property name="pp_deploy_fs1" value="lib${file.separator}${javafx.preloader.jar.filename}"/>
<property name="pp_deploy_fs2" value="lib${file.separator}*.jar"/>
<echo message="deploy_deploy: pp_deploy_dir = ${pp_deploy_dir}" level="verbose"/>
<echo message="deploy_deploy: pp_deploy_fs1 = ${pp_deploy_fs1}" level="verbose"/>
<echo message="deploy_deploy: pp_deploy_fs2 = ${pp_deploy_fs2}" level="verbose"/>
<echo message="JavaScript: deploy-deploy" level="verbose"/>
<basename property="jfx.deployment.base" file="${jfx.deployment.jar}" suffix=".jar"/>
<script language="javascript">
<![CDATA[
function isTrue(prop) {
return prop != null &&
(prop.toLowerCase()=="true" || prop.toLowerCase()=="yes" || prop.toLowerCase()=="on");
}
function prefix(s, len) {
if(s == null || len <= 0 || s.length == 0) {
return new String("");
}
return new String(s.substr(0, len));
}
function replaceSuffix(s, os, ns) {
return prefix(s, s.indexOf(os)).concat(ns);
}
function startsWith(s, prefix) {
return (s != null) && (s.indexOf(prefix) == 0);
}
function endsWith(s, suffix) {
var i = s.lastIndexOf(suffix);
return (i != -1) && (i == (s.length - suffix.length));
}
function defined(s) {
return (s != null) && (s != "null") && (s.length > 0);
}
function contains(array, prop) {
for (var i = 0; i < array.length; i++) {
var s1 = new String(array[i]);
var s2 = new String(prop);
if( s1.toLowerCase() == s2.toLowerCase() ) {
return true;
}
}
return false;
}
var S = java.io.File.separator;
var JFXPAR = "javafx.param";
var JFXPARN = "name";
var JFXPARV = "value";
var JFXPARH = "hidden";
var JFXCALLB = "javafx.jscallback";
var JFXLAZY = "download.mode.lazy.jar";
var withpreloader = new String(project.getProperty("app-with-preloader"));
var fx_ant_api_1_1 = new String(project.getProperty("have-fx-ant-api-1.1"));
var fx_ant_api_1_2 = new String(project.getProperty("have-fx-ant-api-1.2"));
var have_jdk_pre7u14 = new String(project.getProperty("have-jdk-pre7u14"));
var fx_in_swing_app = new String(project.getProperty("fx-in-swing-app"));
var debug_in_browser = new String(project.getProperty("project.state.debugging.in.browser"));
// get jars with lazy download mode property set
function getLazyJars() {
var jars = new Array();
var keys = project.getProperties().keys();
while(keys.hasMoreElements()) {
var pn = new String(keys.nextElement());
if(startsWith(pn, JFXLAZY)) {
var fname = pn.substring(JFXLAZY.length+1);
jars.push(fname);
}
}
return jars.length > 0 ? jars : null;
}
// set download mode of dependent libraries
function setDownloadMode(fsEager, fsLazy, jars) {
for(var i = 0; i < jars.length; i++) {
fsEager.setExcludes("lib" + S + jars[i]);
fsLazy.setIncludes("lib" + S + jars[i]);
}
}
// convert path to absolute if relative
function derelativizePath(path) {
var f = new java.io.File(path);
if(!f.exists()) {
f = new java.io.File(new String(project.getBaseDir()) + S + path);
}
if(f.exists()) {
try {
return f.getCanonicalPath();
} catch(err) {
return path;
}
}
return path;
}
// fx:deploy
var deploy = project.createTask("fx_deploy");
deploy.setProject(project);
var width = new String(project.getProperty("javafx.width"));
var height = new String(project.getProperty("javafx.height"));
var outdir = new String(project.getProperty("jfx.deployment.dir"));
var embedJNLP = new String(project.getProperty("javafx.deploy.embedJNLP"));
var updatemode = new String(project.getProperty("update-mode"));
var outfile = new String(project.getProperty("application.title"));
var includeDT = new String(project.getProperty("javafx.deploy.includeDT"));
var offline = new String(project.getProperty("javafx.deploy.allowoffline"));
deploy.setWidth(width);
deploy.setHeight(height);
deploy.setOutdir(outdir);
deploy.setEmbedJNLP(isTrue(embedJNLP));
deploy.setUpdateMode(updatemode);
deploy.setOutfile(outfile);
deploy.setIncludeDT(isTrue(includeDT));
if(defined(offline)) {
if(isTrue(fx_ant_api_1_1)) {
deploy.setOfflineAllowed(isTrue(offline));
} else {
print("Warning: offlineAllowed not supported by this version of JavaFX SDK deployment Ant task. Please upgrade JavaFX to 2.0.2 or higher.");
}
}
// native packaging (time consuming, thus applied in explicit build only)
var nativeEnabled = new String(project.getProperty("do.build.native.package"));
var nativeType = new String(project.getProperty("javafx.native.bundling.type"));
var projStateRun = new String(project.getProperty("project.state.running"));
var projStateDbg = new String(project.getProperty("project.state.debugging"));
var projStatePrf = new String(project.getProperty("project.state.profiling"));
if(isTrue(nativeEnabled) && defined(nativeType) && nativeType != "none") {
if(!isTrue(projStateRun) && !isTrue(projStateDbg) && !isTrue(projStatePrf)) {
if(isTrue(fx_ant_api_1_2)) {
deploy.setNativeBundles(nativeType);
print("Note: To create native bundles the <fx:deploy> task may require external tools. See JavaFX 2.2+ documentation for details.");
print("");
print("Launching <fx:deploy> in native packager mode...");
} else {
print("Warning: Native packaging is not supported by this version of JavaFX SDK deployment Ant task. Please upgrade to JDK 7u6 or higher.");
}
}
}
// fx:application
var app = deploy.createApplication();
app.setProject(project);
var title = new String(project.getProperty("application.title"));
var mainclass;
if(isTrue(fx_in_swing_app) && isTrue(fx_ant_api_1_2)) {
mainclass = new String(project.getProperty("main.class"));
app.setToolkit("swing");
} else {
mainclass = new String(project.getProperty("javafx.main.class"));
}
var fallback = new String(project.getProperty("javafx.fallback.class"));
app.setName(title);
app.setMainClass(mainclass);
app.setFallbackClass(fallback);
if(isTrue(withpreloader)) {
preloaderclass = new String(project.getProperty("javafx.preloader.class"));
app.setPreloaderClass(preloaderclass);
}
var appversion = new String(project.getProperty("javafx.application.implementation.version"));
if(defined(appversion)) {
app.setVersion(appversion);
} else {
app.setVersion("1.0");
}
// fx:param, fx:argument
var searchHides = project.getProperties().keys();
var hides = new Array();
while(searchHides.hasMoreElements()) {
// collect all hidden property names
var pns = new String(searchHides.nextElement());
if(startsWith(pns, JFXPAR) && endsWith(pns, JFXPARN)) {
var propns = new String(project.getProperty(pns));
var phs = replaceSuffix(pns, JFXPARN, JFXPARH);
var proph = new String(project.getProperty(phs));
if(isTrue(proph)) {
hides.push(propns);
}
}
}
var keys = project.getProperties().keys();
while(keys.hasMoreElements()) {
var pn = new String(keys.nextElement());
if(startsWith(pn, JFXPAR) && endsWith(pn, JFXPARN)) {
var propn = new String(project.getProperty(pn));
if(defined(propn) && !contains(hides, propn)) {
var pv = replaceSuffix(pn, JFXPARN, JFXPARV);
var propv = new String(project.getProperty(pv));
if(defined(propv)) {
var par = app.createParam();
par.setName(propn);
par.setValue(propv);
} else {
if(isTrue(fx_ant_api_1_1)) {
var arg = app.createArgument();
arg.addText(propn);
} else {
print("Warning: Unnamed parameters not supported by this version of JavaFX SDK deployment Ant tasks. Upgrade JavaFX to 2.0.2 or higher.");
}
}
}
}
}
// fx:resources
var res = deploy.createResources();
res.setProject(project);
var deploydir = new String(project.getProperty("pp_deploy_dir"));
if(isTrue(withpreloader)) {
var f1 = res.createFileSet();
f1.setProject(project);
f1.setDir(new java.io.File(deploydir));
var i1 = new String(project.getProperty("pp_deploy_fs1"));
f1.setIncludes(i1);
f1.setRequiredFor("preloader");
var f2 = res.createFileSet();
f2.setProject(project);
f2.setDir(new java.io.File(deploydir));
var i2a = new String(project.getProperty("jfx.deployment.jar"));
var i2b = new String(project.getProperty("pp_deploy_fs2"));
var e2c = new String(project.getProperty("pp_deploy_fs1"));
f2.setIncludes(i2a);
f2.setIncludes(i2b);
f2.setExcludes(e2c);
f2.setRequiredFor("startup");
var lazyjars = getLazyJars();
if(lazyjars != null) {
var f3 = res.createFileSet();
f3.setProject(project);
f3.setDir(new java.io.File(deploydir));
f3.setRequiredFor("runtime");
setDownloadMode(f2,f3,lazyjars);
}
} else {
var fn = res.createFileSet();
fn.setProject(project);
fn.setDir(new java.io.File(deploydir));
var ia = new String(project.getProperty("jfx.deployment.jar"));
var ib = new String(project.getProperty("pp_deploy_fs2"));
fn.setIncludes(ia);
fn.setIncludes(ib);
fn.setRequiredFor("startup");
var lazyjars = getLazyJars();
if(lazyjars != null) {
var fn2 = res.createFileSet();
fn2.setProject(project);
fn2.setDir(new java.io.File(deploydir));
fn2.setRequiredFor("runtime");
setDownloadMode(fn,fn2,lazyjars);
}
}
// fx:info
var info = deploy.createInfo();
info.setProject(project);
var vendor = new String(project.getProperty("application.vendor"));
var description = new String(project.getProperty("application.desc"));
info.setTitle(title); // title known from before
info.setVendor(vendor);
info.setDescription(description);
var splash = new String(project.getProperty("javafx.deploy.splash"));
if(defined(splash)) {
if(isTrue(fx_ant_api_1_1)) {
var sicon = info.createSplash();
sicon.setHref(splash);
sicon.setMode("any");
print("Adding splash image reference: " + splash);
} else {
print("Warning: Splash Image not supported by this version of JavaFX SDK deployment Ant task. Please upgrade JavaFX to 2.0.2 or higher.");
}
}
if(isTrue(nativeEnabled) && defined(nativeType) && nativeType != "none") {
var icon = new String(project.getProperty("javafx.deploy.icon.native"));
if(defined(icon)) {
if(isTrue(fx_ant_api_1_2) && !isTrue(have_jdk_pre7u14)) {
var dicon = derelativizePath(icon);
// create temporary icon copy renamed to application name (required by native packager)
var baseDir = new String(project.getProperty("basedir"));
var buildDir = new String(project.getProperty("build.dir"));
var deployBase = new String(project.getProperty("jfx.deployment.base"));
var copyTask = project.createTask("copy");
var source = new java.io.File(dicon);
var sourceName = new String(source.getName());
var lastDot = sourceName.lastIndexOf(".");
var sourceExt;
if(lastDot >=0) {
sourceExt = sourceName.substr(lastDot);
} else {
sourceExt = new String("");
}
var target = new java.io.File(baseDir.concat(S).concat(buildDir).concat(S).concat("icon").concat(S).concat(deployBase).concat(sourceExt));
copyTask.setFile(source);
copyTask.setTofile(target);
copyTask.setFlatten(true);
copyTask.setFailOnError(false);
copyTask.perform();
var tempicon;
if(target.exists()) {
try {
tempicon = target.getCanonicalPath();
} catch(err) {
tempicon = dicon;
}
} else {
tempicon = dicon;
}
var nicon = info.createIcon();
nicon.setHref(tempicon);
print("Source native icon reference: " + dicon);
print("Processed native icon reference: " + tempicon);
} else {
print("Warning: Native Package icon not supported by this version of JavaFX SDK deployment Ant task. Please upgrade to JDK7u14.");
}
}
} else {
var icon = new String(project.getProperty("javafx.deploy.icon"));
if(defined(icon)) {
if(isTrue(fx_ant_api_1_1)) {
var iicon = info.createIcon();
iicon.setHref(icon);
print("Adding WebStart icon reference: " + icon);
} else {
print("Warning: WebStart Icon not supported by this version of JavaFX SDK deployment Ant task. Please upgrade JavaFX to 2.0.2 or higher.");
}
}
}
// fx:permissions
var perm = deploy.createPermissions();
perm.setProject(project);
var elev = new String(project.getProperty("permissions.elevated"));
perm.setElevated(isTrue(elev));
// fx:preferences
var pref = deploy.createPreferences();
pref.setProject(project);
var scut = new String(project.getProperty("javafx.deploy.adddesktopshortcut"));
var instp = new String(project.getProperty("javafx.deploy.installpermanently"));
var smenu = new String(project.getProperty("javafx.deploy.addstartmenushortcut"));
pref.setShortcut(isTrue(scut));
pref.setInstall(isTrue(instp));
pref.setMenu(isTrue(smenu));
// fx:template
var templ = new String(project.getProperty("javafx.run.htmltemplate"));
var templp = new String(project.getProperty("javafx.run.htmltemplate.processed"));
if(defined(templ) && defined(templp)) {
var temp = deploy.createTemplate();
temp.setProject(project);
temp.setFile(new java.io.File(templ));
temp.setTofile(new java.io.File(templp));
}
// fx:platform
var plat = deploy.createPlatform();
plat.setProject(project);
var requestRT = new String(project.getProperty("javafx.deploy.request.runtime"));
if(defined(requestRT)) {
plat.setJavafx(requestRT);
}
var jvmargs = new String(project.getProperty("run.jvmargs"));
if(defined(jvmargs)) {
var jvmargss = jvmargs.split(" ");
for(var i = 0; i < jvmargss.length; i++) {
if(defined(jvmargss[i])) {
var vmarg = plat.createJvmarg();
vmarg.setValue(jvmargss[i]);
}
}
}
if(isTrue(debug_in_browser)) {
var vmarg = plat.createJvmarg();
vmarg.setValue(new String("-ea:javafx.browserdebug"));
}
if(isTrue(nativeEnabled) && defined(nativeType) && nativeType != "none") {
if(!isTrue(projStateRun) && !isTrue(projStateDbg) && !isTrue(projStatePrf)) {
if(plat.setBasedir) {
var sdkdir = new String(project.getProperty("javafx.sdk"));
if(defined(sdkdir)) {
plat.setBasedir(sdkdir);
}
} else {
print("Note: the current version of native packager Ant task can bundle the default JRE only.");
}
}
}
// fx:callbacks
var callbs = deploy.createCallbacks();
callbs.setProject(project);
var keys = project.getProperties().keys();
while(keys.hasMoreElements()) {
var pn = new String(keys.nextElement());
if(startsWith(pn, JFXCALLB)) {
var prop = new String(project.getProperty(pn));
if(defined(prop)) {
var cname = pn.substring(JFXCALLB.length+1);
var cb = callbs.createCallback();
cb.setProject(project);
cb.setName(cname);
cb.addText(prop);
}
}
}
deploy.perform();
]]>
</script>
<antcall target="-post-jfx-deploy"/>
<antcall target="-call-post-jfx-native"/>
</sequential>
</macrodef>
<!-- JavaFX SDK 2.0.x and 2.1.x deploy task can not generate pre-FX jnlp which is needed for FX-in-Swing projects-->
<macrodef name="deploy-deploy-swing">
<sequential>
<antcall target="-pre-jfx-deploy"/>
<local name="permissions-elevated-token"/>
<condition property="permissions-elevated-token" value="${line.separator} <security>${line.separator} <all-permissions/>${line.separator} </security>" else="">
<isset property="permissions-elevated"/>
</condition>
<local name="offline-allowed-token"/>
<condition property="offline-allowed-token" value="${line.separator} <offline-allowed/>" else="">
<isset property="offline-allowed"/>
</condition>
<local name="update-mode-background-token"/>
<condition property="update-mode-background-token" value="background" else="always">
<isset property="update-mode-background"/>
</condition>
<local name="html-template-processed-available"/>
<condition property="html-template-processed-available">
<and>
<isset property="javafx.run.htmltemplate.processed"/>
<not>
<equals arg1="${javafx.run.htmltemplate.processed}" arg2=""/>
</not>
</and>
</condition>
<local name="javafx.deploy.icon.basename"/>
<basename property="javafx.deploy.icon.basename" file="${javafx.deploy.icon}"/>
<local name="local-icon-filename-available"/>
<condition property="local-icon-filename-available">
<and>
<isset property="icon-available"/>
<isset property="javafx.deploy.icon.basename"/>
<not><equals arg1="${javafx.deploy.icon.basename}" arg2=""/></not>
<not><contains string="${javafx.deploy.icon.basename}" substring="$${javafx" casesensitive="false"/></not>
<not><contains string="${javafx.deploy.icon}" substring="http:" casesensitive="false"/></not>
</and>
</condition>
<local name="icon-token"/>
<condition property="icon-token" value="${line.separator} <icon href="${javafx.deploy.icon.basename}" kind="default"/>">
<isset property="local-icon-filename-available"/>
</condition>
<condition property="icon-token" value="${line.separator} <icon href="${javafx.deploy.icon}" kind="default"/>" else="">
<isset property="icon-available"/>
</condition>
<basename property="dist.filename" file="${dist.jar}" suffix=".jar"/>
<length file="${dist.jar}" property="dist.jar.size" />
<local name="vmargs-token"/>
<condition property="vmargs-token" value="java-vm-args="${run.jvmargs}" " else="">
<isset property="vmargs-available"/>
</condition>
<local name="applet-params-token"/>
<local name="application-args-token"/>
<echo message="JavaScript: deploy-deploy-swing 1" level="verbose"/>
<script language="javascript">
<![CDATA[
function prefix(s, len) {
if(s == null || len <= 0 || s.length == 0) {
return new String("");
}
return new String(s.substr(0, len));
}
function replaceSuffix(s, os, ns) {
return prefix(s, s.indexOf(os)).concat(ns);
}
function startsWith(s, prefix) {
return (s != null) && (s.indexOf(prefix) == 0);
}
function endsWith(s, suffix) {
var i = s.lastIndexOf(suffix);
return (i != -1) && (i == (s.length - suffix.length));
}
function defined(s) {
return (s != null) && (s != "null") && (s.length > 0);
}
var JFXPAR = "javafx.param";
var JFXPARN = "name";
var JFXPARV = "value";
var params = new java.lang.StringBuilder();
var args = new java.lang.StringBuilder();
var keys = project.getProperties().keys();
while(keys.hasMoreElements()) {
var pn = new String(keys.nextElement());
if(startsWith(pn, JFXPAR) && endsWith(pn, JFXPARN)) {
var propn = new String(project.getProperty(pn));
if(defined(propn)) {
var pv = replaceSuffix(pn, JFXPARN, JFXPARV);
var propv = new String(project.getProperty(pv));
if(defined(propv)) {
params.append("\n <param name=\"");
params.append(propn);
params.append("\" value=\"");
params.append(propv);
params.append("\"/>");
args.append("\n <argument>");
args.append(propn);
args.append("=");
args.append(propv);
args.append("</argument>");
} else {
params.append("\n <param name=\"");
params.append(propn);
params.append("\" value=\"\"/>");
args.append("\n <argument>");
args.append(propn);
args.append("</argument>");
}
}
}
}
project.setProperty("applet-params-token", new String(params.toString()));
project.setProperty("application-args-token", new String(args.toString()));
]]>
</script>
<local name="application.desc.processed"/>
<condition property="application.desc.processed" value="${application.desc}" else="Swing applet embedding JavaFX components.">
<isset property="application.desc"/>
</condition>
<filterchain id="jnlp.template.filter">
<replacetokens>
<token key="NAME" value="${dist.filename}"/>
<token key="MAINCLASS" value="${main.class}"/>
<token key="FILESIZE" value="${dist.jar.size}"/>
<token key="VENDOR" value="${application.vendor}"/>
<token key="TITLE" value="${application.title}"/>
<token key="DESCRIPTION" value="${application.desc.processed}"/>
<token key="WIDTH" value="${javafx.run.width}"/>
<token key="HEIGHT" value="${javafx.run.height}"/>
<token key="PERMISSIONS" value="${permissions-elevated-token}"/>
<token key="OFFLINE" value="${offline-allowed-token}"/>
<token key="UPDATEMODE" value="${update-mode-background-token}"/>
<token key="ICON" value="${icon-token}"/>
<token key="VMARGS" value="${vmargs-token}"/>
<token key="PARAMETERS" value="${applet-params-token}"/>
<token key="ARGUMENTS" value="${application-args-token}"/>
</replacetokens>
</filterchain>
<copy file="${basedir}${file.separator}nbproject${file.separator}templates${file.separator}FXSwingTemplateApplication.jnlp"
tofile="${dist.dir}${file.separator}${dist.filename}_application.jnlp" >
<filterchain refid="jnlp.template.filter"/>
</copy>
<copy file="${basedir}${file.separator}nbproject${file.separator}templates${file.separator}FXSwingTemplateApplet.jnlp"
tofile="${dist.dir}${file.separator}${dist.filename}_applet.jnlp" >
<filterchain refid="jnlp.template.filter"/>
</copy>
<copy file="${basedir}${file.separator}nbproject${file.separator}templates${file.separator}FXSwingTemplate.html"
tofile="${dist.dir}${file.separator}${dist.filename}.html" >
<filterchain refid="jnlp.template.filter"/>
</copy>
<echo message="JavaScript: deploy-deploy-swing 2" level="verbose"/>
<script language="javascript">
<![CDATA[
function startsWith(s, prefix) {
return (s != null) && (s.indexOf(prefix) == 0);
}
function defined(s) {
return (s != null) && (s != "null") && (s.length > 0);
}
var PREF = "file:";
var doCopyIcon = new String(project.getProperty("local-icon-filename-available"));
if(defined(doCopyIcon)) {
var iconProp = new String(project.getProperty("javafx.deploy.icon"));
if(startsWith(iconProp, PREF)) {
iconProp = iconProp.slice(PREF.length);
}
while(iconProp.charAt(0) == "/") {
iconProp = iconProp.slice(1);
}
var S = java.io.File.separator;
var baseDir = new String(project.getProperty("basedir"));
var distDir = new String(project.getProperty("dist.dir"));
var copyTask = new String(project.createTask("copy"));
var source = new java.io.File(iconProp);
var target = new java.io.File(baseDir.concat(S).concat(distDir));
copyTask.setFile(source);
copyTask.setTodir(target);
copyTask.setFlatten(true);
copyTask.setFailOnError(false);
copyTask.perform();
}
var doCopyHTMLFrom = new String(project.getProperty("html-template-available"));
var doCopyHTMLTo = new String(project.getProperty("html-template-processed-available"));
if(defined(doCopyHTMLFrom) && defined(doCopyHTMLTo)) {
var htmlFrom = new String(project.getProperty("javafx.run.htmltemplate"));
if(startsWith(htmlFrom, PREF)) {
htmlFrom = htmlFrom.slice(PREF.length);
}
while(startsWith(htmlFrom, "/")) {
htmlFrom = htmlFrom.slice(1);
}
var htmlTo = new String(project.getProperty("javafx.run.htmltemplate.processed"));
if(startsWith(htmlTo, PREF)) {
htmlTo = htmlTo.slice(PREF.length);
}
while(startsWith(htmlTo, "/")) {
htmlTo = htmlTo.slice(1);
}
var copyTask = project.createTask("copy");
var source = new java.io.File(htmlFrom);
var target = new java.io.File(htmlTo);
copyTask.setFile(source);
copyTask.setTofile(target);
copyTask.setFailOnError(false);
copyTask.perform();
}
]]>
</script>
<antcall target="-post-jfx-deploy"/>
</sequential>
</macrodef>
<!-- Fallback Project Deployment Macros To Support At Least Partially JDKs Without JavaScript Support -->
<macrodef name="fallback-deploy-application-def">
<sequential>
<echo message="Warning: Parameters (if any) not passed to <fx:application> in fallback build mode due to JDK missing JavaScript support."/>
<fx:application id="fxApp"
name="${application.title}"
mainClass="${javafx.main.class}"
fallbackClass="${javafx.fallback.class}">
<!-- PARAMETERS NOT PASSED IN FALLBACK -->
</fx:application>
</sequential>
</macrodef>
<macrodef name="fallback-deploy-application-def-preloader">
<sequential>
<echo message="Warning: Parameters (if any) not passed to <fx:application> in fallback build mode due to JDK missing JavaScript support."/>
<fx:application id="fxApp"
name="${application.title}"
mainClass="${javafx.main.class}"
preloaderClass="${javafx.preloader.class}"
fallbackClass="${javafx.fallback.class}">
<!-- PARAMETERS NOT PASSED IN FALLBACK -->
</fx:application>
</sequential>
</macrodef>
<macrodef name="fallback-deploy-application-def-swing">
<sequential>
<echo message="Warning: Parameters (if any) not passed to <fx:application> in fallback build mode due to JDK missing JavaScript support."/>
<fx:application id="fxApp"
name="${application.title}"
mainClass="${main.class}"
fallbackClass="${javafx.fallback.class}"
toolkit="swing">
<!-- PARAMETERS NOT PASSED IN FALLBACK -->
</fx:application>
</sequential>
</macrodef>
<macrodef name="fallback-deploy-resources">
<sequential>
<fx:resources id="appRes">
<fx:fileset requiredFor="startup" dir="${jfx.deployment.dir}">
<include name="${jfx.deployment.jar}"/>
<include name="lib${file.separator}*.jar"/>
<exclude name="lib${file.separator}${jfx.deployment.jar}"/>
</fx:fileset>
</fx:resources>
</sequential>
</macrodef>
<macrodef name="fallback-deploy-resources-preloader">
<sequential>
<fx:resources id="appRes">
<fx:fileset requiredFor="preloader" dir="${jfx.deployment.dir}">
<include name="lib${file.separator}${javafx.preloader.jar.filename}"/>
</fx:fileset>
<fx:fileset requiredFor="startup" dir="${jfx.deployment.dir}">
<include name="${jfx.deployment.jar}"/>
<include name="lib${file.separator}*.jar"/>
<exclude name="lib${file.separator}${javafx.preloader.jar.filename}"/>
<exclude name="lib${file.separator}${jfx.deployment.jar}"/>
</fx:fileset>
</fx:resources>
</sequential>
</macrodef>
<macrodef name="fallback-deploy-jar">
<sequential>
<antcall target="-pre-jfx-jar"/>
<fx:jar destfile="${jfx.deployment.dir}${file.separator}${jfx.deployment.jar}">
<fx:application refid="fxApp"/>
<fx:resources refid="appRes"/>
<fileset dir="${build.classes.dir}">
<exclude name="**${file.separator}*.${css-exclude-ext}"/>
</fileset>
<manifest>
<attribute name="Implementation-Vendor" value="${application.vendor}"/>
<attribute name="Implementation-Title" value="${application.title}"/>
<attribute name="Implementation-Version" value="1.0"/>
</manifest>
</fx:jar>
<antcall target="-post-jfx-jar"/>
</sequential>
</macrodef>
<macrodef name="fallback-deploy-deploy">
<sequential>
<antcall target="-pre-jfx-deploy"/>
<echo message="Warning: JVM Arguments and Callbacks (if any) not passed to <fx:deploy> in fallback build mode due to JDK missing JavaScript support."/>
<fx:deploy width="${javafx.width}" height="${javafx.height}"
outdir="${jfx.deployment.dir}" embedjnlp="true" updatemode="${update-mode}"
outfile="${application.title}" includeDT="${javafx.deploy.includeDT}">
<fx:application refid="fxApp"/>
<fx:resources refid="appRes"/>
<fx:info title="${application.title}" vendor="${application.vendor}"/>
<fx:permissions elevated="${permissions.elevated}"/>
<fx:preferences shortcut="${javafx.deploy.adddesktopshortcut}" install="${javafx.deploy.installpermanently}" menu="${javafx.deploy.addstartmenushortcut}"/>
<!-- PLATFORM NOT PASSED IN FALLBACK -->
<!-- CALLBACKS NOT PASSED IN FALLBACK -->
</fx:deploy>
<antcall target="-post-jfx-deploy"/>
</sequential>
</macrodef>
<macrodef name="fallback-deploy-deploy-template">
<sequential>
<antcall target="-pre-jfx-deploy"/>
<echo message="Warning: JVM Arguments and Callbacks (if any) not passed to <fx:deploy> in fallback build mode due to JDK missing JavaScript support."/>
<deploy-process-template/>
<fx:deploy width="${javafx.width}" height="${javafx.height}"
outdir="${jfx.deployment.dir}" embedjnlp="true" updatemode="${update-mode}"
outfile="${application.title}" includeDT="${javafx.deploy.includeDT}">
<fx:application refid="fxApp"/>
<fx:resources refid="appRes"/>
<fx:info title="${application.title}" vendor="${application.vendor}"/>
<fx:permissions elevated="${permissions.elevated}"/>
<fx:preferences shortcut="${javafx.deploy.adddesktopshortcut}" install="${javafx.deploy.installpermanently}" menu="${javafx.deploy.addstartmenushortcut}"/>
<fx:template file="${javafx.run.htmltemplate}" tofile="${javafx.run.htmltemplate.processed}"/>
<!-- PLATFORM NOT PASSED IN FALLBACK -->
<!-- CALLBACKS NOT PASSED IN FALLBACK -->
</fx:deploy>
<antcall target="-post-jfx-deploy"/>
</sequential>
</macrodef>
<!-- Project Deployment Targets -->
<target name="-check-sign" depends="-check-project,-javafx-init-keystore" if="javafx.signed.true+signjars.task.available">
<condition property="sign-nopreloader-notemplate">
<and>
<isset property="app-without-preloader"/>
<not><isset property="html-template-available"/></not>
<not><isset property="fx-in-swing-app-workaround"/></not>
<not><isset property="use-blob-signing"/></not>
</and>
</condition>
<condition property="sign-preloader-notemplate">
<and>
<isset property="app-with-preloader"/>
<not><isset property="html-template-available"/></not>
<not><isset property="fx-in-swing-app-workaround"/></not>
<not><isset property="use-blob-signing"/></not>
</and>
</condition>
<condition property="sign-nopreloader-template">
<and>
<isset property="app-without-preloader"/>
<isset property="html-template-available"/>
<not><isset property="fx-in-swing-app-workaround"/></not>
<not><isset property="use-blob-signing"/></not>
</and>
</condition>
<condition property="sign-preloader-template">
<and>
<isset property="app-with-preloader"/>
<isset property="html-template-available"/>
<not><isset property="fx-in-swing-app-workaround"/></not>
<not><isset property="use-blob-signing"/></not>
</and>
</condition>
<condition property="sign-nopreloader-notemplate-swing">
<and>
<isset property="app-without-preloader"/>
<not><isset property="html-template-available"/></not>
<isset property="fx-in-swing-app-workaround"/>
<not><isset property="use-blob-signing"/></not>
</and>
</condition>
<condition property="sign-nopreloader-template-swing">
<and>
<isset property="app-without-preloader"/>
<isset property="html-template-available"/>
<isset property="fx-in-swing-app-workaround"/>
<not><isset property="use-blob-signing"/></not>
</and>
</condition>
<condition property="sign-blob-nopreloader-notemplate">
<and>
<isset property="app-without-preloader"/>
<not><isset property="html-template-available"/></not>
<not><isset property="fx-in-swing-app-workaround"/></not>
<isset property="use-blob-signing"/>
</and>
</condition>
<condition property="sign-blob-preloader-notemplate">
<and>
<isset property="app-with-preloader"/>
<not><isset property="html-template-available"/></not>
<not><isset property="fx-in-swing-app-workaround"/></not>
<isset property="use-blob-signing"/>
</and>
</condition>
<condition property="sign-blob-nopreloader-template">
<and>
<isset property="app-without-preloader"/>
<isset property="html-template-available"/>
<not><isset property="fx-in-swing-app-workaround"/></not>
<isset property="use-blob-signing"/>
</and>
</condition>
<condition property="sign-blob-preloader-template">
<and>
<isset property="app-with-preloader"/>
<isset property="html-template-available"/>
<not><isset property="fx-in-swing-app-workaround"/></not>
<isset property="use-blob-signing"/>
</and>
</condition>
<condition property="sign-blob-nopreloader-notemplate-swing">
<and>
<isset property="app-without-preloader"/>
<not><isset property="html-template-available"/></not>
<isset property="fx-in-swing-app-workaround"/>
<isset property="use-blob-signing"/>
</and>
</condition>
<condition property="sign-blob-nopreloader-template-swing">
<and>
<isset property="app-without-preloader"/>
<isset property="html-template-available"/>
<isset property="fx-in-swing-app-workaround"/>
<isset property="use-blob-signing"/>
</and>
</condition>
</target>
<target name="-check-nosign" depends="-check-project">
<condition property="nosign-nopreloader-notemplate">
<and>
<isset property="app-without-preloader"/>
<not><isset property="html-template-available"/></not>
<not><isset property="javafx.signed.true"/></not>
<not><isset property="fx-in-swing-app-workaround"/></not>
</and>
</condition>
<condition property="nosign-preloader-notemplate">
<and>
<isset property="app-with-preloader"/>
<not><isset property="html-template-available"/></not>
<not><isset property="javafx.signed.true"/></not>
<not><isset property="fx-in-swing-app-workaround"/></not>
</and>
</condition>
<condition property="nosign-nopreloader-template">
<and>
<isset property="app-without-preloader"/>
<isset property="html-template-available"/>
<not><isset property="javafx.signed.true"/></not>
<not><isset property="fx-in-swing-app-workaround"/></not>
</and>
</condition>
<condition property="nosign-preloader-template">
<and>
<isset property="app-with-preloader"/>
<isset property="html-template-available"/>
<not><isset property="javafx.signed.true"/></not>
<not><isset property="fx-in-swing-app-workaround"/></not>
</and>
</condition>
<condition property="nosign-nopreloader-notemplate-swing">
<and>
<isset property="app-without-preloader"/>
<not><isset property="html-template-available"/></not>
<not><isset property="javafx.signed.true"/></not>
<isset property="fx-in-swing-app-workaround"/>
</and>
</condition>
<condition property="nosign-nopreloader-template-swing">
<and>
<isset property="app-without-preloader"/>
<isset property="html-template-available"/>
<not><isset property="javafx.signed.true"/></not>
<isset property="fx-in-swing-app-workaround"/>
</and>
</condition>
</target>
<!-- WITH SIGNING -->
<!-- project without preloader -->
<!-- no html template -->
<target name="-deploy-app-sign-nopreloader-notemplate" depends="-check-sign" if="sign-nopreloader-notemplate" unless="preloader-app">
<echo message="-deploy-app-sign-nopreloader-notemplate" level="verbose"/>
<deploy-defines/>
<deploy-preprocess/>
<deploy-jar/>
<deploy-sign/>
<deploy-deploy/>
</target>
<target name="-deploy-app-sign-blob-nopreloader-notemplate" depends="-check-sign" if="sign-blob-nopreloader-notemplate" unless="preloader-app">
<echo message="-deploy-app-sign-blob-nopreloader-notemplate" level="verbose"/>
<deploy-defines/>
<deploy-preprocess/>
<deploy-jar/>
<deploy-sign-blob/>
<deploy-deploy/>
</target>
<!-- project with preloader -->
<!-- no html template -->
<target name="-deploy-app-sign-preloader-notemplate" depends="-check-sign" if="sign-preloader-notemplate" unless="preloader-app">
<echo message="-deploy-app-sign-preloader-notemplate" level="verbose"/>
<deploy-defines/>
<deploy-preprocess/>
<deploy-jar/>
<deploy-sign-preloader/>
<deploy-deploy/>
</target>
<target name="-deploy-app-sign-blob-preloader-notemplate" depends="-check-sign" if="sign-blob-preloader-notemplate" unless="preloader-app">
<echo message="-deploy-app-sign-blob-preloader-notemplate" level="verbose"/>
<deploy-defines/>
<deploy-preprocess/>
<deploy-jar/>
<deploy-sign-blob-preloader/>
<deploy-deploy/>
</target>
<!-- project without preloader -->
<!-- html template -->
<target name="-deploy-app-sign-nopreloader-template" depends="-check-sign" if="sign-nopreloader-template" unless="preloader-app">
<echo message="-deploy-app-sign-nopreloader-template" level="verbose"/>
<deploy-defines/>
<deploy-preprocess/>
<deploy-jar/>
<deploy-sign/>
<deploy-process-template/>
<deploy-deploy/>
</target>
<target name="-deploy-app-sign-blob-nopreloader-template" depends="-check-sign" if="sign-blob-nopreloader-template" unless="preloader-app">
<echo message="-deploy-app-sign-blob-nopreloader-template" level="verbose"/>
<deploy-defines/>
<deploy-preprocess/>
<deploy-jar/>
<deploy-sign-blob/>
<deploy-process-template/>
<deploy-deploy/>
</target>
<!-- project with preloader -->
<!-- html template -->
<target name="-deploy-app-sign-preloader-template" depends="-check-sign" if="sign-preloader-template" unless="preloader-app">
<echo message="-deploy-app-sign-preloader-template" level="verbose"/>
<deploy-defines/>
<deploy-preprocess/>
<deploy-jar/>
<deploy-sign-preloader/>
<deploy-process-template/>
<deploy-deploy/>
</target>
<target name="-deploy-app-sign-blob-preloader-template" depends="-check-sign" if="sign-blob-preloader-template" unless="preloader-app">
<echo message="-deploy-app-sign-blob-preloader-template" level="verbose"/>
<deploy-defines/>
<deploy-preprocess/>
<deploy-jar/>
<deploy-sign-blob-preloader/>
<deploy-process-template/>
<deploy-deploy/>
</target>
<!-- project without preloader -->
<!-- no html template -->
<!-- FX in Swing app -->
<target name="-deploy-app-sign-nopreloader-notemplate-swing" depends="-check-sign" if="sign-nopreloader-notemplate-swing" unless="preloader-app-no-workaround">
<echo message="-deploy-app-sign-nopreloader-notemplate-swing" level="verbose"/>
<deploy-defines/>
<deploy-preprocess/>
<deploy-jar/>
<deploy-sign/>
<deploy-deploy-swing/>
</target>
<target name="-deploy-app-sign-blob-nopreloader-notemplate-swing" depends="-check-sign" if="sign-blob-nopreloader-notemplate-swing" unless="preloader-app-no-workaround">
<echo message="-deploy-app-sign-blob-nopreloader-notemplate-swing" level="verbose"/>
<deploy-defines/>
<deploy-preprocess/>
<deploy-jar/>
<deploy-sign-blob/>
<deploy-deploy-swing/>
</target>
<!-- project without preloader -->
<!-- html template -->
<!-- FX in Swing app -->
<target name="-deploy-app-sign-nopreloader-template-swing" depends="-check-sign" if="sign-nopreloader-template-swing" unless="preloader-app-no-workaround">
<echo message="-deploy-app-sign-nopreloader-template-swing" level="verbose"/>
<deploy-defines/>
<deploy-preprocess/>
<deploy-jar/>
<deploy-sign/>
<deploy-process-template/>
<deploy-deploy-swing/>
</target>
<target name="-deploy-app-sign-blob-nopreloader-template-swing" depends="-check-sign" if="sign-blob-nopreloader-template-swing" unless="preloader-app-no-workaround">
<echo message="-deploy-app-sign-blob-nopreloader-template-swing" level="verbose"/>
<deploy-defines/>
<deploy-preprocess/>
<deploy-jar/>
<deploy-sign-blob/>
<deploy-process-template/>
<deploy-deploy-swing/>
</target>
<!-- NO SIGNING -->
<!-- project without preloader -->
<!-- no html template -->
<target name="-deploy-app-nosign-nopreloader-notemplate" depends="-check-nosign" if="nosign-nopreloader-notemplate" unless="preloader-app">
<echo message="-deploy-app-nosign-nopreloader-notemplate" level="verbose"/>
<deploy-defines/>
<deploy-preprocess/>
<deploy-jar/>
<deploy-deploy/>
</target>
<!-- project with preloader -->
<!-- no html template -->
<target name="-deploy-app-nosign-preloader-notemplate" depends="-check-nosign" if="nosign-preloader-notemplate" unless="preloader-app">
<echo message="-deploy-app-nosign-preloader-notemplate" level="verbose"/>
<deploy-defines/>
<deploy-preprocess/>
<deploy-jar/>
<deploy-deploy/>
</target>
<!-- project without preloader -->
<!-- html template -->
<target name="-deploy-app-nosign-nopreloader-template" depends="-check-nosign" if="nosign-nopreloader-template" unless="preloader-app">
<echo message="-deploy-app-nosign-nopreloader-template" level="verbose"/>
<deploy-defines/>
<deploy-preprocess/>
<deploy-jar/>
<deploy-process-template/>
<deploy-deploy/>
</target>
<!-- project with preloader -->
<!-- html template -->
<target name="-deploy-app-nosign-preloader-template" depends="-check-nosign" if="nosign-preloader-template" unless="preloader-app">
<echo message="-deploy-app-nosign-preloader-template" level="verbose"/>
<deploy-defines/>
<deploy-preprocess/>
<deploy-jar/>
<deploy-process-template/>
<deploy-deploy/>
</target>
<!-- project without preloader -->
<!-- no html template -->
<!-- FX in Swing app -->
<target name="-deploy-app-nosign-nopreloader-notemplate-swing" depends="-check-nosign" if="nosign-nopreloader-notemplate-swing" unless="preloader-app-no-workaround">
<echo message="-deploy-app-nosign-nopreloader-notemplate-swing" level="verbose"/>
<deploy-defines/>
<deploy-preprocess/>
<deploy-jar/>
<deploy-deploy-swing/>
</target>
<!-- project without preloader -->
<!-- html template -->
<!-- FX in Swing app -->
<target name="-deploy-app-nosign-nopreloader-template-swing" depends="-check-nosign" if="nosign-nopreloader-template-swing" unless="preloader-app-no-workaround">
<echo message="-deploy-app-nosign-nopreloader-template-swing" level="verbose"/>
<deploy-defines/>
<deploy-preprocess/>
<deploy-jar/>
<deploy-process-template/>
<deploy-deploy-swing/>
</target>
<!-- FALLBACK (NO JAVASCRIPT) TARGETS WITH SIGNING -->
<target name="-check-fallback-sign-deploy-swing-possible" depends="-check-sign">
<local name="fail-deploy-swing-possible"/>
<condition property="fail-deploy-swing-possible">
<and>
<or>
<isset property="sign-nopreloader-notemplate-swing"/>
<isset property="sign-nopreloader-template-swing"/>
</or>
<not><isset property="have-fx-ant-api-1.2"/></not>
</and>
</condition>
<fail message="Error: JavaFX SDK version 2.2 or newer is needed to deploy FX-in-Swing on JDK without JavaScript support."
if="fail-deploy-swing-possible"/>
</target>
<!-- FALLBACK project without preloader -->
<!-- FALLBACK no html template -->
<target name="-fallback-deploy-app-sign-nopreloader-notemplate" depends="-check-sign" if="sign-nopreloader-notemplate" unless="preloader-app">
<echo message="-fallback-deploy-app-sign-nopreloader-notemplate" level="verbose"/>
<deploy-defines/>
<deploy-preprocess/>
<fallback-deploy-application-def/>
<fallback-deploy-resources/>
<fallback-deploy-jar/>
<deploy-sign/>
<fallback-deploy-deploy/>
</target>
<target name="-fallback-deploy-app-sign-blob-nopreloader-notemplate" depends="-check-sign" if="sign-blob-nopreloader-notemplate" unless="preloader-app">
<echo message="-fallback-deploy-app-sign-blob-nopreloader-notemplate" level="verbose"/>
<deploy-defines/>
<deploy-preprocess/>
<fallback-deploy-application-def/>
<fallback-deploy-resources/>
<fallback-deploy-jar/>
<deploy-sign-blob/>
<fallback-deploy-deploy/>
</target>
<!-- FALLBACK project with preloader -->
<!-- FALLBACK no html template -->
<target name="-fallback-deploy-app-sign-preloader-notemplate" depends="-check-sign" if="sign-preloader-notemplate" unless="preloader-app">
<echo message="-fallback-deploy-app-sign-preloader-notemplate" level="verbose"/>
<deploy-defines/>
<deploy-preprocess/>
<fallback-deploy-application-def-preloader/>
<fallback-deploy-resources-preloader/>
<fallback-deploy-jar/>
<deploy-sign-preloader/>
<fallback-deploy-deploy/>
</target>
<target name="-fallback-deploy-app-sign-blob-preloader-notemplate" depends="-check-sign" if="sign-blob-preloader-notemplate" unless="preloader-app">
<echo message="-fallback-deploy-app-sign-blob-preloader-notemplate" level="verbose"/>
<deploy-defines/>
<deploy-preprocess/>
<fallback-deploy-application-def-preloader/>
<fallback-deploy-resources-preloader/>
<fallback-deploy-jar/>
<deploy-sign-blob-preloader/>
<fallback-deploy-deploy/>
</target>
<!-- FALLBACK project without preloader -->
<!-- FALLBACK html template -->
<target name="-fallback-deploy-app-sign-nopreloader-template" depends="-check-sign" if="sign-nopreloader-template" unless="preloader-app">
<echo message="-fallback-deploy-app-sign-nopreloader-template" level="verbose"/>
<deploy-defines/>
<deploy-preprocess/>
<fallback-deploy-application-def/>
<fallback-deploy-resources/>
<fallback-deploy-jar/>
<deploy-sign/>
<fallback-deploy-deploy-template/>
</target>
<target name="-fallback-deploy-app-sign-blob-nopreloader-template" depends="-check-sign" if="sign-blob-nopreloader-template" unless="preloader-app">
<echo message="-fallback-deploy-app-sign-blob-nopreloader-template" level="verbose"/>
<deploy-defines/>
<deploy-preprocess/>
<fallback-deploy-application-def/>
<fallback-deploy-resources/>
<fallback-deploy-jar/>
<deploy-sign-blob/>
<fallback-deploy-deploy-template/>
</target>
<!-- FALLBACK project with preloader -->
<!-- FALLBACK html template -->
<target name="-fallback-deploy-app-sign-preloader-template" depends="-check-sign" if="sign-preloader-template" unless="preloader-app">
<echo message="-fallback-deploy-app-sign-preloader-template" level="verbose"/>
<deploy-defines/>
<deploy-preprocess/>
<fallback-deploy-application-def-preloader/>
<fallback-deploy-resources-preloader/>
<fallback-deploy-jar/>
<deploy-sign-preloader/>
<fallback-deploy-deploy-template/>
</target>
<target name="-fallback-deploy-app-sign-blob-preloader-template" depends="-check-sign" if="sign-blob-preloader-template" unless="preloader-app">
<echo message="-fallback-deploy-app-sign-blob-preloader-template" level="verbose"/>
<deploy-defines/>
<deploy-preprocess/>
<fallback-deploy-application-def-preloader/>
<fallback-deploy-resources-preloader/>
<fallback-deploy-jar/>
<deploy-sign-blob-preloader/>
<fallback-deploy-deploy-template/>
</target>
<!-- FALLBACK project without preloader -->
<!-- FALLBACK no html template -->
<!-- FALLBACK FX in Swing app -->
<target name="-fallback-deploy-app-sign-nopreloader-notemplate-swing" depends="-check-fallback-sign-deploy-swing-possible" if="sign-nopreloader-notemplate-swing" unless="preloader-app-no-workaround">
<echo message="-fallback-deploy-app-sign-nopreloader-notemplate-swing" level="verbose"/>
<deploy-defines/>
<deploy-preprocess/>
<fallback-deploy-application-def-swing/>
<fallback-deploy-resources/>
<fallback-deploy-jar/>
<deploy-sign/>
<fallback-deploy-deploy/>
</target>
<target name="-fallback-deploy-app-sign-blob-nopreloader-notemplate-swing" depends="-check-fallback-sign-deploy-swing-possible" if="sign-nopreloader-notemplate-swing" unless="preloader-app-no-workaround">
<echo message="-fallback-deploy-app-sign-blob-nopreloader-notemplate-swing" level="verbose"/>
<deploy-defines/>
<deploy-preprocess/>
<fallback-deploy-application-def-swing/>
<fallback-deploy-resources/>
<fallback-deploy-jar/>
<deploy-sign-blob/>
<fallback-deploy-deploy/>
</target>
<!-- FALLBACK project without preloader -->
<!-- FALLBACK html template -->
<!-- FALLBACK FX in Swing app -->
<target name="-fallback-deploy-app-sign-nopreloader-template-swing" depends="-check-fallback-sign-deploy-swing-possible" if="sign-nopreloader-template-swing" unless="preloader-app-no-workaround">
<echo message="-fallback-deploy-app-sign-nopreloader-template-swing" level="verbose"/>
<deploy-defines/>
<deploy-preprocess/>
<fallback-deploy-application-def-swing/>
<fallback-deploy-resources/>
<fallback-deploy-jar/>
<deploy-sign/>
<fallback-deploy-deploy-template/>
</target>
<target name="-fallback-deploy-app-sign-blob-nopreloader-template-swing" depends="-check-fallback-sign-deploy-swing-possible" if="sign-nopreloader-template-swing" unless="preloader-app-no-workaround">
<echo message="-fallback-deploy-app-sign-blob-nopreloader-template-swing" level="verbose"/>
<deploy-defines/>
<deploy-preprocess/>
<fallback-deploy-application-def-swing/>
<fallback-deploy-resources/>
<fallback-deploy-jar/>
<deploy-sign-blob/>
<fallback-deploy-deploy-template/>
</target>
<!-- FALLBACK (NO JAVASCRIPT) TARGETS NO SIGNING -->
<target name="-check-fallback-nosign-deploy-swing-possible" depends="-check-nosign">
<local name="fail-deploy-swing-possible"/>
<condition property="fail-deploy-swing-possible">
<and>
<or>
<isset property="nosign-nopreloader-notemplate-swing"/>
<isset property="nosign-nopreloader-template-swing"/>
</or>
<not><isset property="have-fx-ant-api-1.2"/></not>
</and>
</condition>
<fail message="Error: JavaFX SDK version 2.2 or newer is needed to deploy FX-in-Swing on JDK without JavaScript support."
if="fail-deploy-swing-possible"/>
</target>
<!-- FALLBACK project without preloader -->
<!-- FALLBACK no html template -->
<target name="-fallback-deploy-app-nosign-nopreloader-notemplate" depends="-check-nosign" if="nosign-nopreloader-notemplate" unless="preloader-app">
<echo message="-fallback-deploy-app-nosign-nopreloader-notemplate" level="verbose"/>
<deploy-defines/>
<deploy-preprocess/>
<fallback-deploy-application-def/>
<fallback-deploy-resources/>
<fallback-deploy-jar/>
<fallback-deploy-deploy/>
</target>
<!-- FALLBACK project with preloader -->
<!-- FALLBACK no html template -->
<target name="-fallback-deploy-app-nosign-preloader-notemplate" depends="-check-nosign" if="nosign-preloader-notemplate" unless="preloader-app">
<echo message="-fallback-deploy-app-nosign-preloader-notemplate" level="verbose"/>
<deploy-defines/>
<deploy-preprocess/>
<fallback-deploy-application-def-preloader/>
<fallback-deploy-resources-preloader/>
<fallback-deploy-jar/>
<fallback-deploy-deploy/>
</target>
<!-- FALLBACK project without preloader -->
<!-- FALLBACK html template -->
<target name="-fallback-deploy-app-nosign-nopreloader-template" depends="-check-nosign" if="nosign-nopreloader-template" unless="preloader-app">
<echo message="-fallback-deploy-app-nosign-nopreloader-template" level="verbose"/>
<deploy-defines/>
<deploy-preprocess/>
<fallback-deploy-application-def/>
<fallback-deploy-resources/>
<fallback-deploy-jar/>
<fallback-deploy-deploy-template/>
</target>
<!-- FALLBACK project with preloader -->
<!-- FALLBACK html template -->
<target name="-fallback-deploy-app-nosign-preloader-template" depends="-check-nosign" if="nosign-preloader-template" unless="preloader-app">
<echo message="-fallback-deploy-app-nosign-preloader-template" level="verbose"/>
<deploy-defines/>
<deploy-preprocess/>
<fallback-deploy-application-def-preloader/>
<fallback-deploy-resources-preloader/>
<fallback-deploy-jar/>
<fallback-deploy-deploy-template/>
</target>
<!-- FALLBACK project without preloader -->
<!-- FALLBACK no html template -->
<!-- FALLBACK FX in Swing app -->
<target name="-fallback-deploy-app-nosign-nopreloader-notemplate-swing" depends="-check-fallback-nosign-deploy-swing-possible" if="nosign-nopreloader-notemplate-swing" unless="preloader-app-no-workaround">
<echo message="-fallback-deploy-app-nosign-nopreloader-notemplate-swing" level="verbose"/>
<deploy-defines/>
<deploy-preprocess/>
<fallback-deploy-application-def-swing/>
<fallback-deploy-resources/>
<fallback-deploy-jar/>
<fallback-deploy-deploy/>
</target>
<!-- FALLBACK project without preloader -->
<!-- FALLBACK html template -->
<!-- FALLBACK FX in Swing app -->
<target name="-fallback-deploy-app-nosign-nopreloader-template-swing" depends="-check-fallback-nosign-deploy-swing-possible" if="nosign-nopreloader-template-swing" unless="preloader-app-no-workaround">
<echo message="-fallback-deploy-app-nosign-nopreloader-template-swing" level="verbose"/>
<deploy-defines/>
<deploy-preprocess/>
<fallback-deploy-application-def-swing/>
<fallback-deploy-resources/>
<fallback-deploy-jar/>
<fallback-deploy-deploy-template/>
</target>
<!-- Project Build Targets -->
<target name="jfx-build" depends="-jfx-do-compile, -jfx-do-jar, -jfx-do-post-jar"/>
<target name="jfx-build-noscript" depends="-set-fallback-no-javascript, -jfx-do-compile, -jfx-do-jar, -jfx-do-post-jar"/>
<target name="jfx-rebuild" depends="clean, -jfx-do-compile, -jfx-do-jar, -jfx-do-post-jar"/>
<target name="jfx-rebuild-noscript" depends="-set-fallback-no-javascript, clean, -jfx-do-compile, -jfx-do-jar, -jfx-do-post-jar"/>
<target name="jfx-build-native" depends="-set-do-build-native-package, -check-ant-jre-supports-native-packaging, -check-native-packager-external-tools, jfx-rebuild"/>
<target name="jfx-build-native-noscript" depends="-set-do-build-native-package, -check-ant-jre-supports-native-packaging, -check-native-packager-external-tools, jfx-rebuild-noscript"/>
<target name="build-native">
<property name="javafx.native.bundling.type" value="${native.bundling.type}"/>
<antcall target="jfx-build-native"/>
</target>
<target name="build-native-noscript">
<property name="javafx.native.bundling.type" value="${native.bundling.type}"/>
<antcall target="jfx-build-native-noscript"/>
</target>
<target name="-check-do-jar">
<condition property="do-jar-false">
<and>
<isset property="do.jar"/>
<equals arg1="${do.jar}" arg2="false"/>
</and>
</condition>
</target>
<target name="-set-fallback-no-javascript">
<property name="fallback.no.javascript" value="true"/>
<echo message="Warning: Using fallback build infrastructure due to default JDK missing JavaScript support."/>
</target>
<target name="-jfx-do-compile" depends="-check-do-jar" if="do-jar-false">
<antcall target="compile"/>
</target>
<target name="-jfx-do-jar" depends="-check-do-jar" unless="do-jar-false">
<antcall target="jar"/>
</target>
<target name="-jfx-do-post-jar" depends="-init-check,-check-project" if="preloader-app">
<!-- Preloaders are created using SE copylibs task that creates readme file relevant for SE only -->
<delete file="${basedir}${file.separator}${dist.dir}${file.separator}README.TXT"/>
</target>
<target name="-set-do-build-native-package">
<property name="do.build.native.package" value="true"/>
<echo message="do.build.native.package = ${do.build.native.package}" level="verbose"/>
</target>
<target name="-check-ant-jre-supports-native-packaging" depends="-check-ant-jre-version">
<fail message="Error:${line.separator}JavaFX native packager requires NetBeans to run on JDK 1.7u6 or later !" if="have-ant-jre-pre7u6"/>
</target>
<target name="-call-pre-jfx-native" if="do.build.native.package">
<antcall target="-pre-jfx-native"/>
</target>
<target name="-call-post-jfx-native" if="do.build.native.package">
<antcall target="-post-jfx-native"/>
</target>
<target name="-check-native-bundling-type" depends="-check-operating-system" if="do.build.native.package">
<condition property="need.Inno.presence">
<and>
<isset property="running.on.windows"/>
<isset property="javafx.native.bundling.type"/>
<or>
<equals arg1="${javafx.native.bundling.type}" arg2="all" casesensitive="false"/>
<equals arg1="${javafx.native.bundling.type}" arg2="installer" casesensitive="false"/>
<equals arg1="${javafx.native.bundling.type}" arg2="exe" casesensitive="false"/>
</or>
</and>
</condition>
<condition property="need.WiX.presence">
<and>
<isset property="running.on.windows"/>
<isset property="javafx.native.bundling.type"/>
<or>
<equals arg1="${javafx.native.bundling.type}" arg2="all" casesensitive="false"/>
<equals arg1="${javafx.native.bundling.type}" arg2="installer" casesensitive="false"/>
<equals arg1="${javafx.native.bundling.type}" arg2="msi" casesensitive="false"/>
</or>
</and>
</condition>
<condition property="need.dpkg.presence">
<and>
<isset property="running.on.unix"/>
<isset property="javafx.native.bundling.type"/>
<or>
<equals arg1="${javafx.native.bundling.type}" arg2="deb" casesensitive="false"/>
</or>
</and>
</condition>
<condition property="need.rpmbuild.presence">
<and>
<isset property="running.on.unix"/>
<isset property="javafx.native.bundling.type"/>
<or>
<equals arg1="${javafx.native.bundling.type}" arg2="rpm" casesensitive="false"/>
</or>
</and>
</condition>
<echo message="need.Inno.presence:${need.Inno.presence}" level="verbose"/>
<echo message="need.WiX.presence:${need.WiX.presence}" level="verbose"/>
<echo message="need.dpkg.presence:${need.dpkg.presence}" level="verbose"/>
<echo message="need.rpmbuild.presence:${need.rpmbuild.presence}" level="verbose"/>
</target>
<target name="-check-Inno-presence" depends="-check-native-bundling-type" if="need.Inno.presence">
<local name="exec-output"/>
<local name="exec-error"/>
<local name="exec-result"/>
<exec executable="iscc" outputproperty="exec-output" failifexecutionfails="false" errorproperty="exec-error" resultproperty="exec-result"/>
<echo message="exec-output:${exec-output}" level="verbose"/>
<echo message="exec-error:${exec-error}" level="verbose"/>
<echo message="exec-result:${exec-result}" level="verbose"/>
<condition property="missing.Inno">
<not><and>
<contains string="${exec-output}" substring="Inno Setup"/>
<not><contains string="${exec-output}" substring="Inno Setup 1"/></not>
<not><contains string="${exec-output}" substring="Inno Setup 2"/></not>
<not><contains string="${exec-output}" substring="Inno Setup 3"/></not>
<not><contains string="${exec-output}" substring="Inno Setup 4"/></not>
</and></not>
</condition>
</target>
<target name="-check-WiX-presence" depends="-check-native-bundling-type" if="need.WiX.presence">
<local name="exec-output"/>
<local name="exec-error"/>
<local name="exec-result"/>
<exec executable="candle" outputproperty="exec-output" failifexecutionfails="false" errorproperty="exec-error" resultproperty="exec-result">
<arg value="-?"/>
</exec>
<echo message="exec-output:${exec-output}" level="verbose"/>
<echo message="exec-error:${exec-error}" level="verbose"/>
<echo message="exec-result:${exec-result}" level="verbose"/>
<condition property="missing.WiX">
<not><and>
<contains string="${exec-output}" substring="Windows Installer Xml Compiler version"/>
<not><contains string="${exec-output}" substring="Windows Installer Xml Compiler version 1"/></not>
<not><contains string="${exec-output}" substring="Windows Installer Xml Compiler version 2"/></not>
</and></not>
</condition>
</target>
<target name="-check-dpkg-presence" depends="-check-native-bundling-type" if="need.dpkg.presence">
<local name="exec.which.dpkg.result"/>
<local name="exec.which.dpkg.output"/>
<exec executable="command" failifexecutionfails="false" failonerror="false" resultproperty="exec.which.dpkg.result" outputproperty="exec.which.dpkg.output">
<arg line="-v dpkg"/>
</exec>
<condition property="missing.dpkg">
<not><and>
<isset property="exec.which.dpkg.result"/>
<equals arg1="${exec.which.dpkg.result}" arg2="0"/>
<isset property="exec.which.dpkg.output"/>
<not><equals arg1="${exec.which.dpkg.output}" arg2=""/></not>
</and></not>
</condition>
</target>
<target name="-check-rpmbuild-presence" depends="-check-native-bundling-type" if="need.rpmbuild.presence">
<local name="exec.which.rpmbuild.result"/>
<local name="exec.which.rpmbuild.output"/>
<exec executable="command" failifexecutionfails="false" failonerror="false" resultproperty="exec.which.rpmbuild.result" outputproperty="exec.which.rpmbuild.output">
<arg line="-v rpmbuild"/>
</exec>
<condition property="missing.rpmbuild">
<not><and>
<isset property="exec.which.rpmbuild.result"/>
<equals arg1="${exec.which.rpmbuild.result}" arg2="0"/>
<isset property="exec.which.rpmbuild.output"/>
<not><equals arg1="${exec.which.rpmbuild.output}" arg2=""/></not>
</and></not>
</condition>
</target>
<target name="-check-native-packager-external-tools" depends="-check-Inno-presence, -check-WiX-presence, -check-dpkg-presence, -check-rpmbuild-presence">
<property name="missing.Inno.message" value="JavaFX native packager requires external Inno Setup 5+ tools installed and included on PATH to create EXE installer. See http://www.jrsoftware.org/"/>
<property name="missing.WiX.message" value="JavaFX native packager requires external WiX 3.0+ tools installed and included on PATH to create MSI installer. See http://wix.sourceforge.net/"/>
<property name="missing.dpkg.message" value="JavaFX native packager requires Debian Packager tools to create DEB package, but dpkg could not be found."/>
<property name="missing.rpmbuild.message" value="JavaFX native packager requires RPMBuild to create RPM package, but rpmbuild could not be found."/>
<condition property="missing.Inno.WiX">
<and>
<isset property="missing.Inno"/>
<isset property="missing.WiX"/>
</and>
</condition>
<fail message="Error:${line.separator}${missing.Inno.message}${line.separator}${missing.WiX.message}" if="missing.Inno.WiX"/>
<fail message="Error:${line.separator}${missing.Inno.message}" if="missing.Inno"/>
<fail message="Error:${line.separator}${missing.WiX.message}" if="missing.WiX"/>
<fail message="Error:${line.separator}${missing.dpkg.message}" if="missing.dpkg"/>
<fail message="Error:${line.separator}${missing.rpmbuild.message}" if="missing.rpmbuild"/>
</target>
<!-- Project Run Support -->
<target name="-warn-of-preloader" depends="-check-project" if="preloader-app-no-workaround">
<fail message="Error:${line.separator}JavaFX 2 Preloader Project can not be executed directly.${line.separator}Please execute instead a JavaFX Application that uses the Preloader."/>
</target>
<target name="-mark-project-state-running">
<property name="project.state.running" value="true"/>
<echo message="project.state.running = ${project.state.running}" level="verbose"/>
</target>
<target name="-mark-project-state-debugging">
<property name="project.state.debugging" value="true"/>
<echo message="project.state.debugging = ${project.state.debugging}" level="verbose"/>
</target>
<target name="-mark-project-state-debugging-in-browser" depends="-mark-project-state-debugging">
<property name="project.state.debugging.in.browser" value="true"/>
<echo message="project.state.debugging.in.browser = ${project.state.debugging.in.browser}" level="verbose"/>
</target>
<target name="-mark-project-state-profiling">
<property name="project.state.profiling" value="true"/>
<echo message="project.state.profiling = ${project.state.profiling}" level="verbose"/>
</target>
<target name="-mark-project-needs-jnlp">
<property name="project.needs.jnlp" value="true"/>
<echo message="project.needs.jnlp = ${project.needs.jnlp}" level="verbose"/>
</target>
<!-- set property javafx.disable.concurrent.runs=true to disable runs from temporary directory -->
<target name="-check-concurrent-runs">
<condition property="disable-concurrent-runs">
<and>
<isset property="javafx.disable.concurrent.runs"/>
<equals arg1="${javafx.disable.concurrent.runs}" arg2="true" trim="true"/>
</and>
</condition>
<condition property="temp.run.jar" value="${jfx.deployment.dir}${file.separator}${jfx.deployment.jar}">
<isset property="disable-concurrent-runs"/>
</condition>
<condition property="temp.run.jnlp" value="${jfx.deployment.jnlp}">
<isset property="disable-concurrent-runs"/>
</condition>
<condition property="temp.run.html" value="${jfx.deployment.html}">
<isset property="disable-concurrent-runs"/>
</condition>
</target>
<target name="-create-temp-run-dir" depends="-check-concurrent-runs" unless="disable-concurrent-runs">
<echo message="Creating temp run dir" level="verbose"/>
<tempfile property="temp.run.dir" destDir="${basedir}${file.separator}${dist.dir}${file.separator}" prefix="run"/>
<echo message="temp.run.dir = ${temp.run.dir}" level="verbose"/>
<copy todir="${temp.run.dir}" includeemptydirs="true" overwrite="true">
<fileset dir="${basedir}${file.separator}${dist.dir}">
<exclude name="**${file.separator}bundles${file.separator}**"/>
<exclude name="**${file.separator}run*${file.separator}**"/>
</fileset>
</copy>
<property name="temp.run.jar" value="${temp.run.dir}${file.separator}${jfx.deployment.jar}"/>
<basename property="jfx.deployment.base" file="${jfx.deployment.jar}" suffix=".jar"/>
<property name="temp.run.jnlp" value="${temp.run.dir}${file.separator}${jfx.deployment.base}.jnlp"/>
<property name="temp.run.html" value="${temp.run.dir}${file.separator}${jfx.deployment.base}.html"/>
</target>
<target name="-remove-temp-run-dir" if="temp.run.dir">
<echo message="Removing temp run dir" level="verbose"/>
<delete dir="${temp.run.dir}" quiet="true" failonerror="false"/>
</target>
<target depends="init,compile,jar,-create-temp-run-dir" description="Run JavaFX project standalone." name="jfx-project-run">
<echo message="Executing ${temp.run.jar} using platform ${platform.java}"/>
<property name="run.jvmargs" value=""/>
<property name="run.jvmargs.ide" value=""/>
<java jar="${temp.run.jar}" dir="${work.dir}" fork="true" jvm="${platform.java}">
<jvmarg line="${endorsed.classpath.cmd.line.arg}"/>
<jvmarg value="-Dfile.encoding=${runtime.encoding}"/>
<redirector errorencoding="${runtime.encoding}" inputencoding="${runtime.encoding}" outputencoding="${runtime.encoding}"/>
<jvmarg line="${run.jvmargs}"/>
<jvmarg line="${run.jvmargs.ide}"/>
<classpath>
<path path="${temp.run.jar}:${javac.classpath}"/>
</classpath>
<arg line="${application.args}"/>
<syspropertyset>
<propertyref prefix="run-sys-prop."/>
<mapper from="run-sys-prop.*" to="*" type="glob"/>
</syspropertyset>
</java>
<antcall target="-remove-temp-run-dir"/>
</target>
<target depends="init,compile,jar,-create-temp-run-dir,-debug-start-debugger" description="Debug JavaFX project standalone." name="jfx-project-debug">
<echo message="Executing ${temp.run.jar} using platform ${platform.java}"/>
<property name="run.jvmargs" value=""/>
<property name="run.jvmargs.ide" value=""/>
<java jar="${temp.run.jar}" dir="${work.dir}" fork="true" jvm="${platform.java}">
<jvmarg line="${endorsed.classpath.cmd.line.arg}"/>
<jvmarg line="${debug-args-line}"/>
<jvmarg value="-Xrunjdwp:transport=${debug-transport},address=${jpda.address}"/>
<jvmarg value="-Dfile.encoding=${runtime.encoding}"/>
<redirector errorencoding="${runtime.encoding}" inputencoding="${runtime.encoding}" outputencoding="${runtime.encoding}"/>
<jvmarg line="${run.jvmargs}"/>
<jvmarg line="${run.jvmargs.ide}"/>
<classpath>
<path path="${temp.run.jar}:${javac.classpath}"/>
</classpath>
<arg line="${application.args}"/>
<syspropertyset>
<propertyref prefix="run-sys-prop."/>
<mapper from="run-sys-prop.*" to="*" type="glob"/>
</syspropertyset>
</java>
<antcall target="-remove-temp-run-dir"/>
</target>
<!-- Running/Debugging/Profiling Standalone -->
<target name="jfxsa-run" depends="-mark-project-state-running,-clean-if-config-changed,-check-jfx-runtime,-warn-of-preloader,jfx-project-run"/>
<target name="jfxsa-run-noscript" depends="-set-fallback-no-javascript, jfxsa-run"/>
<target name="jfxsa-debug" depends="-mark-project-state-debugging,-clean-if-config-changed,jar,-check-jfx-runtime,-warn-of-preloader,jfx-project-debug"/>
<target name="jfxsa-debug-noscript" depends="-set-fallback-no-javascript, jfxsa-debug"/>
<target name="jfxsa-profile" depends="-mark-project-state-profiling,-check-jfx-runtime,-warn-of-preloader,profile"/>
<target name="jfxsa-profile-noscript" depends="-set-fallback-no-javascript, jfxsa-profile"/>
<target name="-check-clean-if-config-changed" depends="-init-project">
<deploy-defines/>
<uptodate property="jfx.deployment.jar.newer.than.nbproject" targetfile="${jfx.deployment.dir}${file.separator}${jfx.deployment.jar}" >
<srcfiles dir="${basedir}${file.separator}nbproject" includes="**${file.separator}*"/>
</uptodate>
<echo message="jfx.deployment.jar.newer.than.nbproject = ${jfx.deployment.jar.newer.than.nbproject}" level="verbose"/>
<available file="${jfx.deployment.dir}${file.separator}${jfx.deployment.jar}" type="file" property="jfx.deployment.jar.exists"/>
<condition property="request.clean.due.to.config.change">
<and>
<isset property="jfx.deployment.jar.exists"/>
<not><isset property="jfx.deployment.jar.newer.than.nbproject"/></not>
</and>
</condition>
</target>
<target name="-clean-if-config-changed" depends="-check-clean-if-config-changed" if="request.clean.due.to.config.change">
<echo message="Config change detected. Invoking clean." level="verbose"/>
<antcall target="clean"/>
</target>
<!-- Shared Debugging init -->
<target name="-init-debug-args">
<property name="version-output" value="java version "${ant.java.version}"/>
<condition property="have-jdk-older-than-1.4">
<or>
<contains string="${version-output}" substring="java version "1.0"/>
<contains string="${version-output}" substring="java version "1.1"/>
<contains string="${version-output}" substring="java version "1.2"/>
<contains string="${version-output}" substring="java version "1.3"/>
</or>
</condition>
<condition else="-Xdebug" property="debug-args-line" value="-Xdebug -Xnoagent -Djava.compiler=none">
<istrue value="${have-jdk-older-than-1.4}"/>
</condition>
<condition else="dt_socket" property="debug-transport-by-os" value="dt_shmem">
<os family="windows"/>
</condition>
<condition else="${debug-transport-by-os}" property="debug-transport" value="${debug.transport}">
<isset property="debug.transport"/>
</condition>
</target>
<!-- Running/Debugging/Profiling as WebStart -->
<target name="-check-jnlp-file-fx" depends="-swing-api-check" unless="fx-in-swing-app-workaround">
<basename property="jfx.deployment.base" file="${jfx.deployment.jar}" suffix=".jar"/>
<property name="jfx.deployment.jnlp" location="${jfx.deployment.dir}${file.separator}${jfx.deployment.base}.jnlp"/>
</target>
<target name="-check-jnlp-file-swing" depends="-swing-api-check" if="fx-in-swing-app-workaround">
<basename property="jfx.deployment.base" file="${jfx.deployment.jar}" suffix=".jar"/>
<property name="jfx.deployment.jnlp" location="${jfx.deployment.dir}${file.separator}${jfx.deployment.base}_application.jnlp"/>
</target>
<target name="-check-jnlp-file" depends="-check-jnlp-file-fx,-check-jnlp-file-swing">
<condition property="jnlp-file-exists">
<available file="${jfx.deployment.jnlp}"/>
</condition>
<condition property="jnlp-file-exists+netbeans.home">
<and>
<isset property="jnlp-file-exists"/>
<isset property="netbeans.home"/>
</and>
</condition>
</target>
<target name="-resolve-jnlp-file" depends="-check-jnlp-file" unless="jnlp-file-exists">
<antcall target="jfx-deployment"/>
<antcall target="-check-jnlp-file"/>
</target>
<!-- set property javafx.enable.concurrent.external.runs=true to enable multiple runs of the same WebStart or Run-in-Browser project -->
<target name="-check-concurrent-jnlp-runs" depends="-resolve-jnlp-file">
<condition property="disable-concurrent-runs">
<not>
<and>
<isset property="javafx.enable.concurrent.external.runs"/>
<equals arg1="${javafx.enable.concurrent.external.runs}" arg2="true" trim="true"/>
</and>
</not>
</condition>
<condition property="temp.run.jnlp" value="${jfx.deployment.jnlp}">
<isset property="disable-concurrent-runs"/>
</condition>
</target>
<target name="-warn-concurrent-jnlp-runs" unless="disable-concurrent-runs">
<echo message="Note: Concurrent Run as WebStart enabled.${line.separator}Temporary directory ${temp.run.dir}${line.separator}will remain unused when WebStart execution has finished. Use project Clean to delete unused directories."/>
</target>
<target name="jfxws-run" if="jnlp-file-exists" depends="-mark-project-state-running,-clean-if-config-changed,-mark-project-needs-jnlp,-check-jdk-7u4or5-mac,jar,
-check-jfx-webstart,-resolve-jnlp-file,-check-jfx-runtime,-check-concurrent-jnlp-runs,-create-temp-run-dir,-warn-insufficient-signing"
description="Start JavaFX javaws execution">
<echo message="Executing ${temp.run.jnlp} using ${active.webstart.executable}"/>
<exec executable="${active.webstart.executable}">
<arg file="${temp.run.jnlp}"/>
</exec>
<antcall target="-warn-concurrent-jnlp-runs"/>
</target>
<target name="jfxws-debug" if="jnlp-file-exists+netbeans.home" depends="-mark-project-state-debugging,-clean-if-config-changed,-mark-project-needs-jnlp,
-check-jdk-7u4or5-mac,jar,-check-jfx-webstart,-resolve-jnlp-file,-check-jfx-runtime,-warn-insufficient-signing,
-debug-start-debugger,-debug-javaws-debuggee" description="Debug JavaFX javaws project in IDE"/>
<target name="-debug-javaws-debuggee" depends="-init-debug-args">
<echo message="Executing ${jfx.deployment.jnlp} in debug mode using ${active.webstart.executable}"/>
<exec executable="${active.webstart.executable}">
<env key="JAVAWS_VM_ARGS" value="${debug-args-line} -Xrunjdwp:transport=${debug-transport},address=${jpda.address}"/>
<arg value="-wait"/>
<arg file="${jfx.deployment.jnlp}"/>
</exec>
</target>
<target name="-profile-check-1">
<property name="run.jvmargs.ide" value=""/>
<condition property="profiler.configured">
<or>
<contains casesensitive="true" string="${run.jvmargs.ide}" substring="-agentpath:"/>
<contains casesensitive="true" string="${run.jvmargs.ide}" substring="-javaagent:"/>
</or>
</condition>
</target>
<target if="jnlp-file-exists+netbeans.home" name="-profile-check-jnlp">
<antcall target="-profile-check-1"/>
</target>
<target name="-do-jfxws-profile" depends="-mark-project-state-profiling,-mark-project-needs-jnlp,
-check-jdk-7u4or5-mac,jar,-check-jfx-webstart,-resolve-jnlp-file,-check-jfx-runtime,-warn-insufficient-signing">
<echo message="Executing ${jfx.deployment.jnlp} in profile mode using ${active.webstart.executable}"/>
<property name="run.jvmargs.ide" value=""/>
<exec executable="${active.webstart.executable}">
<env key="JAVAWS_VM_ARGS" value="${run.jvmargs.ide}"/>
<arg value="-wait"/>
<arg file="${jfx.deployment.jnlp}"/>
</exec>
</target>
<target name="jfxws-profile" if="profiler.configured"
depends="-profile-check-1"
description="Profile JavaFX javaws project in IDE">
<startprofiler/>
<antcall target="-do-jfxws-profile"/>
</target>
<target name="jfxws-run-noscript" depends="-set-fallback-no-javascript, jfxws-run"/>
<target name="jfxws-debug-noscript" depends="-set-fallback-no-javascript, jfxws-debug"/>
<target name="jfxws-profile-noscript" depends="-set-fallback-no-javascript, jfxws-profile"/>
<!-- Running/Debugging/Profiling in Browser -->
<target name="-check-selected-browser-path" depends="-check-default-run-config">
<condition property="javafx.run.inbrowser.undefined">
<or>
<and>
<isset property="javafx.run.inbrowser"/>
<equals arg1="${javafx.run.inbrowser}" arg2="undefined"/>
</and>
<and>
<isset property="javafx.run.inbrowser.path"/>
<equals arg1="${javafx.run.inbrowser.path}" arg2="undefined"/>
</and>
</or>
</condition>
<condition property="javafx.run.inbrowser.path-exists">
<and>
<isset property="javafx.run.inbrowser.path"/>
<available file="${javafx.run.inbrowser.path}"/>
</and>
</condition>
<fail message="Error:${line.separator}Browser selection not recognizable from ${config} run configuration.${line.separator}Please go to Project Properties dialog, category Run, to select a valid browser." unless="javafx.run.inbrowser.path"/>
<fail message="Error:${line.separator}No browser defined in ${config} run configuration.${line.separator}Please verify in Tools->Options dialog that NetBeans recognizes a valid browser, then go to Project Properties dialog, category Run, to select a valid browser." if="javafx.run.inbrowser.undefined"/>
<fail message="Error:${line.separator}Browser ${javafx.run.inbrowser.path} referred from ${config} run configuration can not be found.${line.separator}(This can happen, e.g, when the JavaFX Project is transferred to another system.)${line.separator}Please go to Project Properties dialog, category Run, to select a valid browser." unless="javafx.run.inbrowser.path-exists"/>
</target>
<target name="-substitute-template-processed-html-file" depends="-check-project" if="html-template-available">
<deploy-process-template/>
</target>
<target name="-check-template-processed-html-file" depends="-substitute-template-processed-html-file">
<condition property="html-file-exists">
<and>
<isset property="html-template-available"/>
<available file="${javafx.run.htmltemplate.processed}"/>
</and>
</condition>
</target>
<target name="-set-template-processed-html-file" depends="-check-template-processed-html-file" if="html-file-exists">
<property name="jfx.deployment.html" location="${javafx.run.htmltemplate.processed}"/>
</target>
<target name="-set-html-file" depends="-set-template-processed-html-file" unless="html-file-exists">
<basename property="jfx.deployment.base" file="${jfx.deployment.jar}" suffix=".jar"/>
<property name="jfx.deployment.html" location="${jfx.deployment.dir}${file.separator}${jfx.deployment.base}.html"/>
<condition property="html-file-exists">
<available file="${jfx.deployment.html}"/>
</condition>
<condition property="html-file-exists+netbeans.home">
<and>
<isset property="html-file-exists"/>
<isset property="netbeans.home"/>
</and>
</condition>
</target>
<!-- set property javafx.enable.concurrent.external.runs=true to enable multiple runs of the same WebStart or Run-in-Browser project -->
<target name="-check-concurrent-html-runs" depends="-set-html-file">
<condition property="disable-concurrent-runs">
<or>
<not>
<and>
<isset property="javafx.enable.concurrent.external.runs"/>
<equals arg1="${javafx.enable.concurrent.external.runs}" arg2="true" trim="true"/>
</and>
</not>
<and>
<isset property="html-template-available"/>
<available file="${javafx.run.htmltemplate.processed}"/>
</and>
</or>
</condition>
<condition property="temp.run.html" value="${jfx.deployment.html}">
<isset property="disable-concurrent-runs"/>
</condition>
</target>
<target name="-warn-concurrent-html-runs" unless="disable-concurrent-runs">
<echo message="Note: Concurrent Run in Browser enabled.${line.separator}Temporary directory ${temp.run.dir}${line.separator}will remain unused when execution in browser has finished. Use project Clean to delete unused directories."/>
</target>
<target name="jfxbe-run" if="html-file-exists" depends="-mark-project-state-running,-clean-if-config-changed,-mark-project-needs-jnlp,-check-jdk-7u4or5-mac,jar,
-check-selected-browser-path,-set-html-file,-check-jfx-runtime,-check-concurrent-html-runs,-create-temp-run-dir,-warn-insufficient-signing"
description="Start JavaFX execution in browser">
<echo message="Executing ${temp.run.html} using ${javafx.run.inbrowser}"/>
<echo message="(${javafx.run.inbrowser.path})"/>
<exec executable="${javafx.run.inbrowser.path}">
<arg file="${temp.run.html}"/>
</exec>
<antcall target="-warn-concurrent-html-runs"/>
</target>
<target name="jfxbe-debug" if="html-file-exists+netbeans.home" depends="-mark-project-state-debugging-in-browser,-init-debug-args,
clean,-debug-start-debugger,-mark-project-needs-jnlp,-check-jdk-7u4or5-mac,jar,
-check-selected-browser-path,-set-html-file,-check-jfx-runtime,-warn-insufficient-signing,
-debug-jfxbe-debuggee" description="Debug JavaFX project in browser">
<!-- after the session clean up the jnlp containing debug settings -->
<antcall target="clean"/>
</target>
<target name="-debug-jfxbe-debuggee" depends="-init-debug-args">
<echo message="Executing ${jfx.deployment.html} in debug mode using ${javafx.run.inbrowser}"/>
<echo message="(${javafx.run.inbrowser.path})"/>
<exec executable="${javafx.run.inbrowser.path}">
<env key="_JPI_VM_OPTIONS" value="${debug-args-line} -Xrunjdwp:transport=${debug-transport},address=${jpda.address}"/>
<arg file="${jfx.deployment.html}"/>
</exec>
</target>
<target if="html-file-exists+netbeans.home" name="-profile-check-html">
<antcall target="-profile-check-1"/>
</target>
<target name="-do-jfxbe-profile" depends="-mark-project-state-profiling,-mark-project-needs-jnlp,
-check-jdk-7u4or5-mac,jar,-check-selected-browser-path,-set-html-file,-check-jfx-runtime,-warn-insufficient-signing">
<echo message="Executing ${jfx.deployment.html} in profile mode using ${javafx.run.inbrowser}"/>
<echo message="(${javafx.run.inbrowser.path})"/>
<property name="run.jvmargs.ide" value=""/>
<exec executable="${javafx.run.inbrowser.path}">
<env key="_JPI_VM_OPTIONS" value="${run.jvmargs.ide}"/>
<arg file="${jfx.deployment.html}"/>
</exec>
</target>
<target name="jfxbe-profile" if="profiler.configured"
depends="-profile-check-html"
description="Profile JavaFX project in browser">
<startprofiler/>
<antcall target="-do-jfxbe-profile"/>
</target>
<target name="jfxbe-run-noscript" depends="-set-fallback-no-javascript, jfxbe-run"/>
<target name="jfxbe-debug-noscript" depends="-set-fallback-no-javascript, jfxbe-debug"/>
<target name="jfxbe-profile-noscript" depends="-set-fallback-no-javascript, jfxbe-profile"/>
</project>
|