summaryrefslogtreecommitdiff
path: root/xdocs/external.xml
blob: 7c7ad709aebe31adec81e572515e9fa1efad4de1 (plain)
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
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
<?xml version="1.0"?>
<!--
   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.
-->
<document>

  <properties>
    <author email="bodewig@apache.org">Stefan Bodewig</author>
    <title>External Tools and Tasks</title>
    <!-- Last link check: 2009-03-06 -->
  </properties>

  <body>

    <section name="External Tools and Tasks">

      <p>This page lists external resources for Apache Ant: <a
      href="#Tasks">Tasks</a>, <a
      href="#Compiler%20Implementations">Compiler Implementations</a>,
      <a href="#IDE%20and%20Editor%20Integration">IDE integration
      tools</a>, <a href="#Source%20Control%20ystems">Source Control
      Systems</a>, loggers, you name it. If you've written
      something that should be included, please post all relevant
      information to one of the mailing lists.  For details, see the
      <a href="faq.html#adding-external-tasks">FAQ</a>.</p>

      <p>Nothing listed here is directly supported by the Ant
      developers (therefore '<i>external</i> tools and tasks'),
      if you encounter any problems with them, please use
      the contact information.</p>

    </section>

    <section name="Tasks">
      <subsection name="AJC">

        <p><a href="http://www.eclipse.org/aspectj/">AspectJ</a> is an
          aspect-oriented extension to Java.  This task compiles a
          source tree using the AspectJ compiler -- AJC.</p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.3</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://www.eclipse.org/aspectj/">http://www.eclipse.org/aspectj/</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="http://www.eclipse.org/aspectj/">project mailing lists</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>Eclipse Public License</td>
          </tr>
        </table>
      </subsection>

      <subsection name="Anakia">

        <p>Actually, Anakia is more than just an Ant task, it is a an
        XML transformation tool based on JDOM, Velocity and Ant.</p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.2 and later</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://velocity.apache.org/anakia/devel/">http://velocity.apache.org/anakia/devel/</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="http://velocity.apache.org/contact.html">Velocity mailing lists</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>Apache License 2.0</td>
          </tr>
        </table>
      </subsection>

      <subsection name="Andariel">

        <p>Andariel is a set of tasks designed to help the generation of HTML
        (and other markup languages) pages from Ant. Includes a XPath processor,
        an image information retriever, and others.</p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.5.4 and newer</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://andariel.uworks.net/">http://andariel.uworks.net/</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td>josep DOT rio AT uworks DOT net</td>
          </tr>
          <tr>
            <th>License:</th>
            <td>Apache Software License 1.1</td>
          </tr>
        </table>
      </subsection>

      <subsection name="ant4eclipse">

        <p>ant4eclipse provides a set of Ant tasks to make several
                configurations from the Eclipse IDE available in Ant
                buildscripts. The tasks are aimed to avoid redundancy between
                Eclipse and Ant configurations in order to build small but
                powerful build systems for the continuous integration
                process</p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.6.1 and higher</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://ant4eclipse.sf.net">http://ant4eclipse.sf.net</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="http://sourceforge.net/mail/?group_id=137377">
              ant4eclipse user mailing list</a>
            </td>
          </tr>
          <tr>
            <th>License:</th>
            <td>Sun Public License</td>
          </tr>
        </table>
      </subsection>

      <subsection name="Antcount">
        <p>Antcount is a set of filters that can be used to gather statistics
           from files or resources. It is mainly used for log files analysis.
           It allows to:<ul>
             <li>count inputs (lines, strings)</li>
             <li>count occurrences of each input</li>
             <li>calculate average, max and min values of floats in input</li>
           </ul>
           Antcount also includes some useful filters to:<ul>
             <li>stop filtering: read everything but write nothing</li>
             <li>echo input to the console or to a file. This allows users to create
                 several files at once</li>
             <li>split the stream in two for parallel processing</li>
           </ul>
        </p>
        <table class="externals">
        <tr>
          <th>Compatibility:</th>
          <td>Ant 1.6.2 and higher</td>
        </tr>
        <tr>
          <th>URL:</th>
          <td><a href="http://antcount.sourceforge.net/">http://antcount.sourceforge.net/</a></td>
        </tr>
        <tr>
          <th>Contact:</th>
          <td><a href="http://antcount.sourceforge.net/contacts.html">Patrick Martin</a></td>
        </tr>
        <tr>
          <th>License:</th>
          <td>LGPL</td>
        </tr>
      </table>
    </subsection>

      <subsection name="AntDoc">

        <p>AntDoc is a tool that generates HTML documentation from Ant
        buildfiles; the generated HTML is inspired from what javadoc
        yields.  AntDocGUI offers a simple Ant target launcher named
        AntDoc GUI. Ant targets may be launched from the generated
        AntDoc HTML pages. Integration to various IDEs is in
        progress.</p>

        <p>AntDoc can be run via an Ant task, AntDoc GUI can be run
        via an Ant task, or via a JVM launch.</p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.4.1 and higher</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://antdoc.free.fr/">http://antdoc.free.fr/</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td>Edouard Mercier</td>
          </tr>
          <tr>
            <th>License:</th>
            <td>Apache Software License 1.1</td>
          </tr>
        </table>
      </subsection>

      <subsection name="AntDoclet">

        <p>AntDoclet is a tool to automatically generate documentation out of
        your Ant Tasks' source code.</p>

        <p>It is implemented as a Javadoc doclet, and generates reference
        documentation and other deliverables from the source code of your
        custom Ant Tasks/Types.</p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.6+ (not tested on earlier versions)</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://antdoclet.neuroning.com/">http://antdoclet.neuroning.com/</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="http://neuroning.com/">Fernando Dobladez</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>GPL</td>
          </tr>
        </table>
      </subsection>

      <subsection name="Anteater">

        <p>Anteater is a set of Ant tasks for the functional testing of websites
          and web services (functional testing being; hit a URL and ensure the
          response meets certain criteria). Can test HTTP params, response
          codes, XPath, regexp and Relax NG expressions. Includes HTML reporting
          (based on junitreport) and a hierarchical grouping system for quickly
          configuring large test scripts.
        </p>
        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.5 and later</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://aft.sourceforge.net/">http://aft.sourceforge.net/</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="http://lists.sourceforge.net/lists/listinfo/aft-devel">developer
                mailing list</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>Apache Software License 1.1</td>
          </tr>
        </table>
      </subsection>

      <subsection name="AntForm">

        <p>Provides a java/swing form-based input scheme for
        configuring ant properties and launching ant targets.</p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.6.2.</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://antforms.sourceforge.net/">http://antforms.sourceforge.net/</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="mailto:rene_ghosh@yahoo.com">Ren&#233; Ghosh</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>GNU General Public License</td>
          </tr>
        </table>
      </subsection>

      <subsection name="Antmerge">
        <p>Provides simple inheritance between ant files</p>
        <p>As noted on the website, this project is deprected.</p>
        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Tested with 1.5. Should work with all versions.</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://www.russet.org.uk/antmerge.html">http://www.russet.org.uk/antmerge.html</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="mailto:antmerge@russet.org.uk">Phillip Lord</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>GNU Lesser General Public License</td>
          </tr>
        </table>
      </subsection>
      

      <subsection name="Antomology">
        <p>Antomology is an analysis tool suite for Ant. It includes:<ul>
          <li><b>StatisticsListener</b> - an Ant BuildListener which can be used to gather
              statistics while an Ant build is executed. Statistics on the targets
              and tasks executed are written to the console after the build completes. </li>
        </ul></p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td> <i>unknown</i> </td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://antomology.codehaus.org">http://antomology.codehaus.org</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="http://xircles.codehaus.org/projects/antomology/lists">contact page</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>Apache License V2.0</td>
          </tr>
        </table>
      </subsection>
        
      
      <subsection name="AntPrettyBuild">
         <p>
          Ant Pretty Build is a tool to easily show and run Ant buildfiles directly from
        within a browser window. It consists of a single XSL file that will generate,
        on the fly, in the browser, from the .xml buildfile, a pretty interface showing
        project name, description, properties and targets, etc. sorted or unsorted,
          allowing to load/modify/add properties, run the whole project, or run selected
        set of targets in a specific order, with the ability to modify logger/logfile,
        mode and add more libs or command line arguments.
        </p>
         <table class="externals">
              <tr>
                   <th>Compatibility:</th>
                   <td>All Ant versions</td>
              </tr>
              <tr>
                   <th>URL:</th>
                   <td><a href="http://antprettybuild.sourceforge.net/">Ant Pretty Build Homepage</a></td>
              </tr>
              <tr>
                   <th>Contact:</th>
                   <td><a href="http://antprettybuild.sourceforge.net">Charbel BITAR</a></td>
              </tr>
              <tr>
                   <th>License:</th>
                   <td>Apache License V2.0</td>
              </tr>
         </table>
      </subsection>
      
      <subsection name="AntRunner">
        <p>AntRunner is an easy to use and free GUI application for running
        Ant build files. It's written for .NET so it should run on any Windows
        Platform.</p>
        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.6 and newer</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://visualdrugs.net/antrunner/">http://visualdrugs.net/antrunner/</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="http://visualdrugs.net/">Andre Fiedler</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>GPL</td>
          </tr>
        </table>
      </subsection>


      <subsection name="AntSpaces">
        <p>AntSpaces provides Ant integration with JavaSpaces. This
        allows you to coordinate Ant tasks via JavaSpaces, pull out
        work units from a JavaSpace for distributed Ant tasks to work
        on, and so forth.</p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.5 and later</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td>
              <a href="http://www.oopsconsultancy.com/software/antspaces/">http://www.oopsconsultancy.com/software/antspaces/</a>
            </td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td>antspaces at oopsconsultancy.com</td>
          </tr>
          <tr>
            <th>License:</th>
            <td>Apache Software License 1.1</td>
          </tr>
        </table>
      </subsection>

      <subsection name="AntTimerTask">
        <p><a href="http://www.jeckle.de/freeStuff/AntTimerTask/index.html">Timer</a>
        is task for measuring the time elapsed to complete other
        tasks</p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.6</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td>
              <a href="http://www.jeckle.de/freeStuff/AntTimerTask/index.html">http://www.jeckle.de/freeStuff/AntTimerTask/index.html</a>
            </td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="mailto:mario@jeckle.de">mario@jeckle.de</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>Lesser GNU Public License</td>
          </tr>
        </table>
      </subsection>

      <subsection name="Ant Web Start Task">

        <p>Ant Web Start Task is an Ant task allowing developers to
        package a desktop application as a WAR (Web Application
        Archive) to be distributed over the net via Java Web Start</p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.5 and above</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://ant-jnlp-war.sourceforge.net/">http://ant-jnlp-war.sourceforge.net/</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>Apache License 2.0</td>
          </tr>
        </table>
      </subsection>

      <subsection name="AntXtras">

        <p>A collection of powerful Ant extensions components
        organized into five categories: fixture-control,
        execution-rules, flow-control, feedback, and helpers.</p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.6.5</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://antxtras.sourceforge.net/">AntXtras Home</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="http://antxtras.sourceforge.net">SSMC</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>GNU Lesser General Public License (LGPL 2.1)</td>
          </tr>
        </table>
      </subsection>


      <subsection name="Build Number">
        <p> Build Number is a tool to track software artifacts such as files and automatically assign
        proper version/build numbers to them. It ensures that two different artifacts will have different
        version/build numbers, but identical artifacts/builds will be assigned the same number. It doesn't
        take version management away from you and doesn't replace your build process, but rather plugs
        into the process and introduces version/build number governance by defining who is in charge of
        which part of version number. With Build Number you are still in charge of the head of the version
        number. E.g. you may decide to have 4 numbers in your version (major, minor, interface, implementation)
        and you want to manage the two first numbers (major and minor). Build Number will take care of the
        tedium of managing the last two numbers (interface and implementation). </p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Tested with Ant 1.5.4 and 1.6.5</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://www.hammurapi.biz/hammurapi-biz/ef/xmenu/hammurapi-group/products/build-number/">http://www.hammurapi.biz/hammurapi-biz/ef/xmenu/hammurapi-group/products/build-number/</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="http://www.hammurapi.biz/hammurapi-biz/ef/xmenu/hammurapi-group/xMenu397.html">Project Contact Page</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>Commercial</td>
          </tr>
        </table>
      </subsection>

      <subsection name="Checkstyle">

        <p>Checkstyle is a development tool to help programmers write
        Java code that adheres to a coding standard. Its purpose is to
        automate the process of checking Java code, and to spare
        humans of this boring (but important) task.</p>

        <p>Checkstyle can be run via an Ant task or a command line
        utility.</p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.4.1 and later</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://checkstyle.sourceforge.net/">http://checkstyle.sourceforge.net/</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="mailto:checkstyle@puppycrawl.com">Oliver Burn</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>Starting with release 2.0 the license is the GNU
            Lesser General Public License.  Prior releases were under
            the GNU General Public License.</td>
          </tr>
        </table>
      </subsection>

      <subsection name="ChownTask">

        <p>ChownTask is an Ant task to change ownership of files on Unix.</p>
        <p>Note: <i>As the Sourceforge <a href="http://sourceforge.net/projects/chowntask/">project site</a>
        shows, the last update was on <b>Feb 16 2003</b>.</i> (jhm)</p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.3 and up</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td>
              <a href="http://sourceforge.net/projects/chowntask/">http://sourceforge.net/projects/chowntask/</a>
            </td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="mailto:chowntask-users@lists.sourceforge.net">Wilfred Springer</a>
            </td>
          </tr>
          <tr>
            <th>License:</th>
            <td>GNU General Public License</td>
          </tr>
        </table>
      </subsection>

      <subsection name="CleanImports">
        <p>Removes unneeded imports. Formats your import
        sections. Flags ambiguous imports.</p>
        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.3 and up</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://www.cleanimports.tombrus.nl">http://www.cleanimports.tombrus.nl</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="mailto:cleanimports@tombrus.nl">Tom Brus</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>Apache Software License 1.1</td>
          </tr>
        </table>
      </subsection>

      <subsection name="Clover">

        <p>Clover is an Ant-based Code Coverage tool. It can be used
        seamlessly with Ant-based projects. It provides method,
        statement, and branch coverage analysis, and has rich
        reporting in XML, HTML or via a Swing GUI.</p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.4.1 or greater</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://www.cenqua.com/clover/">http://www.cenqua.com/clover/</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="mailto:clover-support@cenqua.com">clover-support@cenqua.com</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>Commercial, free licenses available for open source
            projects.</td>
          </tr>
        </table>
      </subsection>

      <subsection name="CMSDeploy">

        <p><a href="http://cmsdeploy.sourceforge.net">CMSDeploy</a> is
        an Apache Ant Task to submit files and templates to Vignette
        CMS.</p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.5.1 and later</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://cmsdeploy.sourceforge.net">http://cmsdeploy.sourceforge.net</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="mailto:masogato@users.sourceforge.net">masogato@users.sourceforge.net</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>GNU Lesser General Public License</td>
          </tr>
        </table>
      </subsection>

      <subsection name="Cocoon Task">
        <p>This task allows the generation of static web pages and
        sites using Apache Cocoon in off-line mode.</p>
        <p>It allows the configuration information for Cocoon to be
        included within the Ant build file, and is thus
        able to take advantage of Ant properties.</p>
        <p>The task shares its code with the Cocoon Command Line, which
        means that this task will instantly take
        advantage of any new functionality added there.</p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.5.3 and above</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://cocoon.apache.org">http://cocoon.apache.org</a></td>
         </tr>
          <tr>
            <th>Documentation:</th>
            <td><a href="http://cocoon.apache.org/2.1/userdocs/offline/ant.html">http://cocoon.apache.org/2.1/userdocs/offline/ant.html</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="mailto:users.at.cocoon.apache.org">users at cocoon.apache.org</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>Apache License 2.0</td>
          </tr>
       </table>
     </subsection>

     <subsection name="Configure">

        <p>Recursive build support (call ant on every package level,
        and only build files in that package or in that package and
        everything below) with seperation of source and output.</p>

        <p>The task generates build files in any subdirectory (except
        for CVS-directories) for you. Only place one build.xml file in
        the top and call target &apos;setup&apos; or
        &apos;rescan&apos;.</p>
        
        <p>As of 2009-03-06 this site was offline due database problems. So we do not know
        if this still longer exist. But you could also try Ants own &lt;subant&gt; task.</p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.2 and 1.3</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://www.dsdelft.nl/~lemval/ant/">http://www.dsdelft.nl/~lemval/ant/</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="mailto:lemval@dsdelft.nl">M.J.P. van Leeuwen</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>License derived from Apache Software License 1.1</td>
          </tr>
        </table>
      </subsection>

      <subsection name="CVSGrab">

        <p>A little CVS client that can be useful when people are
        behind corporate firewall that blocks any cvs
        communications. It uses the ViewCVS web interface to access
        the CVS repository via standard http, and downloads all the
        files present in it.</p>

        <p>It works from the command line or as an Ant task.</p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.3 or higher</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://cvsgrab.sourceforge.net/">http://cvsgrab.sourceforge.net/</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="mailto:cvsgrab-users@lists.sourceforge.net">CVSGrab
            user mailing list</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>LGPL</td>
          </tr>
        </table>
      </subsection>

      <subsection name="Dependencies">
          <p>The dependencies task manages a set of external dependencies which
            may be downloaded from a remote repository,
             such as ibiblio.org. Uses a local cache to avoid repeated
            downloads.</p>

          <p>Note: While the HttpUnit site is still active, the referenced URL is not available.
          You could also try <a href="http://ant.apache.org/ivy/">Ivy</a>.</p>

          <table class="externals">
            <tr>
              <th>Compatibility:</th>
              <td>Tested with 1.5.1, should work with 1.4+.</td>
           </tr>
            <tr>
              <th>URL:</th>
              <td><a href="http://www.httpunit.org/doc/dependencies.html">http://www.httpunit.org/doc/dependencies.html</a></td>
            </tr>
            <tr>
              <th>Contact:</th>
              <td><a href="mailto:russgold@httpunit.org">Russell Gold</a></td>
            </tr>
            <tr>
              <th>License:</th>
              <td>MIT License</td>
            </tr>
          </table>
      </subsection>

      <subsection name="Dependency Finder">
        <p>Dependency Finder extracts dependencies and OO metrics from
        Java class files produced by most Java compilers. It can compute
        API differences between versions;  no sources needed. It includes
        Ant tasks, web, Swing, and command-line interfaces, with XSL
        stylesheets for formatting output.</p>

        <p>You can use it to extract dependencies between packages, classes,
        or even methods, or any combination thereof.  You can use Perl
        regular expressions to filter the information and pinpoint only
        what you need.  There is even a Web Application version (WAR file)
        so a whole group of developers can share a common view.</p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Tested with 1.5.3, should work with 1.4+.</td>
         </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://depfind.sourceforge.net/">http://depfind.sourceforge.net/</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="mailto:jeantessier@users.sourceforge.net">Jean Tessier</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>BSD-like License</td>
          </tr>
        </table>
      </subsection>

      <subsection name="Doxygen task">

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.5 and later</td>
          </tr>
          <tr>
            <th>URL:</th>
	    <td><a href="http://ant-doxygen.blogspot.com">http://ant-doxygen.blogspot.com</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="mailto:akkumar@users.sourceforge.net">Karthik A Kumar</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>Apache License 2.0</td>
          </tr>
        </table>
      </subsection>

      <subsection name="DTDDoc">
        <p>DTDDoc is here to help you to document your DTD's efficiently. It is a
        straightforward extension of the javadoc concept to the DTD file format.</p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.4 and later</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://dtddoc.sourceforge.net/">http://dtddoc.sourceforge.net/</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="http://sourceforge.net/mail/?group_id=53704">Project Mailing List</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>X11 (Open Source)</td>
          </tr>
        </table>
      </subsection>

      <subsection name="EnvGen">
        <p>
          <a href="http://www.basilv.com/psd/software">EnvGen</a> is an Ant task for generating 
          different versions of the same file parameterized for different environments (i.e. 
          development, test, and production). File generation is done using 
          <a href="http://freemarker.org/">FreeMarker</a>, a template engine with a full-featured 
          templating language.
        </p>
        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.6.5 or higher (not tested on earlier versions)</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://www.basilv.com/psd/software">http://www.basilv.com/software</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="http://www.basilv.com/psd/software/feedback">EnvGen Feedback Page</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>GPL</td>
          </tr>
        </table>
      </subsection>

      <subsection name="EMMA">
        <p>EMMA is an open-source toolkit for measuring and reporting
        Java code coverage. EMMA distinguishes itself from other tools
        by going after a unique feature combination: support large-scale
        enterprise software development while keeping individual developers
        work fast and iterative at the same time.</p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.4 and later</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://emma.sourceforge.net/">http://emma.sourceforge.net/</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="mailto:emma-users@lists.sourceforge.net">Mailinglist</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>Common Public License 1.0</td>
          </tr>
        </table>
      </subsection>

      <subsection name="EPP Task">
        <p>EPP Task is an easy preprocessor ant task.
        The next directives are supported: #ifdef, #ifndef, #else,
        #endif and #include.</p>
        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.4 and higher</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://sourceforge.net/projects/epptask/">
            http://sourceforge.net/projects/epptask/</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td>Dmitriy Rykov</td>
          </tr>
          <tr>
            <th>License:</th>
            <td>Apache License 2.0</td>
          </tr>
        </table>
      </subsection>

      <subsection name="FMPP">
        <p>FMPP is a general-purpose text file preprocessor tool that
        uses FreeMarker templates. It is particularly designed for
        HTML preprocessor, for the generation of complete (static)
        homepages: directory structure that contains HTML-s, image
        files, etc. But of course it can be used to generate source
        code or whatever text files. FMPP is extendable with Java
        classes to pull data from any data sources (XML file,
        database, etc.) and embed the data into the generated
        files.</p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.5.1</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://fmpp.sourceforge.net/">http://fmpp.sourceforge.net/</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>BSD License</td>
          </tr>
        </table>
      </subsection>

      <subsection name="GenJar">
        <p>Builds a JAR file based on class dependencies rather than simply the contents of a directory</p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.4 alpha (built after 2001/08/04) and later</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://genjar.sourceforge.net/">http://genjar.sourceforge.net/</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="mailto:jesse_dev@yahoo.com">Jesse Stockall</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>Apache Software License 1.1</td>
          </tr>
        </table>
      </subsection>

      <subsection name="Grand">
        <p>Grand is a set of tools to create a visual representation of Ant target
          dependencies. It works by taking an Ant build file and creating a "dot" file. It
          differs from the existing tools by relying on the Ant API rather than XML parsing to
          get the dependencies. It includes many advanced features such as filtering or
          rendering depending on the target's nature. Also features a SWT based GUI.</p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.6 and later</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://www.ggtools.net/grand/">http://www.ggtools.net/grand/</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td>Christophe Labouisse</td>
          </tr>
          <tr>
            <th>License:</th>
            <td>BSD License</td>
          </tr>
        </table>
      </subsection>

      <subsection name="Greebo">

        <p>Greebo is an Ant-task for downloading dependency files
        (currently only jars) from a network to a specified directory,
        much like Maven. It supports multiple local and remote
        repositories with either flat or maven-like structures. It can
        read the dependency list from a Maven project file, a
        maven-like dependency file, or directly from the build.xml
        file.</p>
        
        <p>Note: <i>As the Sourceforge <a href="http://sourceforge.net/projects/greebo/">project site</a>
        shows, the last update was on <b>Mar 12 2003 </b>.</i>
        You could also try <a href="http://ant.apache.org/ivy/">Ivy</a>. (jhm)</p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.5</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://greebo.sourceforge.net/">http://greebo.sourceforge.net/</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="http://sourceforge.net/mail/?group_id=73733">project mailing lists</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>Apache Software License 1.1</td>
          </tr>
        </table>
      </subsection>

      <subsection name="GroboUtils CodeCoverage">

        <p>The CodeCoverage sub-project of GroboUtils provides a 100%
        pure Java code coverage tool.  It uses pre-execution class file
        recompilation, and generates XML files containing the coverage
        statistics.  It does not require any advanced VM setup to generate
        coverage numbers.
        </p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.5.1</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://groboutils.sourceforge.net/codecoverage/">http://groboutils.sourceforge.net/codecoverage/</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="http://sourceforge.net/mail/?group_id=22594">project mailing lists</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>MIT License</td>
          </tr>
        </table>
      </subsection>

      <subsection name="Hammurapi">
        <p>Java code review tool. Performs automated code
        review. Contains 111 inspectors which check different aspects
        of code quality including coding standards, EJB, threading,
        ...</p>
        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Tested with Ant 1.5.x and 1.6.5</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://www.hammurapi.biz/hammurapi-biz/ef/xmenu/hammurapi-group/products/hammurapi/index.html">http://www.hammurapi.biz/hammurapi-biz/ef/xmenu/hammurapi-group/products/hammurapi/index.html</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="mailto:support@hammurapi.biz">Support adress</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td></td>
          </tr>
        </table>
      </subsection>

      <subsection name="HelpStudioAnt">
        <p>This task allows for HelpStudio projects to be created via Ant.</p>
        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.6.0 and later</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://helpstudioant.sourceforge.net">http://helpstudioant.sourceforge.net</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>GNU General Public License</td>
          </tr>
        </table>
      </subsection>
      
      <subsection name="IDLDepend">
        <p>idldepend is a task that (re)generates Java sources to be
        created from CORBA/IDL files.</p>

        <p>It parses the IDL file and determines the Java files that
        must be generated, taking in account the modifications that
        can happen due to command line parameters.  If any of the Java
        files are missing or older than the source IDL specification,
        it launches the specified compiler.  The compilers of Orbacus,
        Jacorb, OpenORB, Orbix2k and Sun'JDK distributions are
        supported.</p>

        <p>To speed up the process and avoid unnecesary re-parsing, it
        keeps the dependencies in intermediate files.  This task does
        not launch the javac compiler as well, that is, its output are
        Java files and not the final bytecode.</p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.4 or later</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://www.coderazzi.net/idldepend/">http://www.coderazzi.net/idldepend/</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="mailto:lu@coderazzi.net">lu@coderazzi.net</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>free source, no license restrictions</td>
          </tr>
        </table>
      </subsection>

      <subsection name="Image">
        <p>Image task generates and transforms images. It exposes the
        imaging capability available in Java2D, Java Advanced Imaging,
        ImageIO, etc., as set of nested elements.</p>

        <p>Image transformations such as &quot;resize&quot;
        (scale),&quot;overlay&quot; (one image on another),
        &quot;border&quot; (add a border), &quot;text&quot; (text on
        image), &quot;crop&quot; (a sub-image of a bigger image),
        &quot;rotate&quot;, &quot;grayscale&quot; (change a color
        image to shades of gray).<br/>
        Now it supports transparency (making images translucent), a
        bestfit option for Resize, simple support for images within
        a security-constraint, a preliminary support (if pjatools.jar
        is available) for saving files as GIF and some other fixes.</p>

        <p>IMPORTANT: You will need the PMIW (Poor Man's Imaging Wrapper) jar
        for all the operations and the pjatools jar for GIF encoding/ saving
        support.</p>
        
        <p>Note: The website encourage the use of Ants internal image tasks. While the development
        of these image tasks is stopped the development of the underlying PMIW should occur.</p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.4</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a
                href="http://www.mullassery.com/software/ANT/">http://www.mullassery.com/software/ANT/</a></td>
          </tr>
          <tr>
            <th>pmiw jar</th>
            <td><a
                href="http://www.mullassery.com/software/PMIW/">http://www.mullassery.com/software/PMIW/</a>
                (Poor Man's Imaging Wrapper)</td>
          </tr>
          <tr>
            <th>pjatools jar</th>
            <td><a
                href="http://www.eteks.com/pja/en/">http://www.eteks.com/pja/en/</a>
                (pjatools for GIF encoding support)</td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="http://www.mullassery.com">Abey Mullassery</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>Apache Software License 1.1</td>
          </tr>
        </table>
      </subsection>

      <subsection name="Importscrubber">
        <p>Removes unnecessary import statements from a Java source code file.</p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.3</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://importscrubber.sourceforge.net/">http://importscrubber.sourceforge.net/</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="mailto:tomcopeland@users.sourceforge.net">Tom Copeland</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>LGPL</td>
          </tr>
        </table>
      </subsection>

      <subsection name="ImTask">

        <p>ImTask is a task to allow one to send an Instant
        Message. Currently supports yahoo!, AIM, and Jabber</p>


        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.5 or higher</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://imtask.sourceforge.net/">http://imtask.sourceforge.net</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="mailto:djallstar@users.sourceforge.net">Jon Madison</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>GNU LGPL</td>
          </tr>
        </table>
      </subsection>

      <subsection name="Incanto">

        <p>Ant tasks to provide support for Oracle database tools
        (such as SQL*Plus, Import, Export)</p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.6</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://incanto.sourceforge.net/">http://incanto.sourceforge.net/</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="mailto:alexrk@users.sourceforge.net">Alexander Karnstedt</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>Apache License, Version 2.0</td>
          </tr>
        </table>
      </subsection>

      <subsection name="IsDirValidator">

        <p>Checks whether a given directory structure conforms to
        certain rules that are defined via nested elements of the
        task.</p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.4</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://isvalidator.sourceforge.net/en/isDirValidator.htm">http://isvalidator.sourceforge.net/en/isDirValidator.htm</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="mailto:news@inigoserrano.com">I&#xF1;igo Serrano</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>GNU General Public License</td>
          </tr>
        </table>
      </subsection>

      <subsection name="Ivy">

        <p>Ivy is a simple yet powerful dependency manager featuring
        continuous integration, dependencies of dependencies
        management, multiple repositories including ibiblio and high
        performance (use of a local cache).</p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>1.5.1 (1.6.5 or 1.7.1 recommended)</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://ant.apache.org/ivy/">http://ant.apache.org/ivy/</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td>ivy-user (at) ant (dot) apache (dot) org [User Mailinglist]</td>
          </tr>
          <tr>
            <th>License:</th>
            <td>Apache License 2.0</td>
          </tr>
        </table>
      </subsection>

      <subsection name="J2ME Ant Tasks">

        <p>There are different sets of tasks to help build <a
        href="http://java.sun.com/j2me/">Java 2 Platform, Micro
        Edition</a> (J2ME) applications.</p>

        <subsubsection name="Antenna">
          <p>Antenna provides a set of Ant tasks suitable for developing
          wireless Java applications targeted at the Mobile Information
          Device Profile (MIDP). With Antenna, you can compile,
          preverify, package, obfuscate, and run your MIDP applications
          (aka MIDlets), manipulate Java Application Descriptor (JAD)
          files, as well as convert JAR files to PRC files designed to
          run on MIDP for Palm OS. Deployment is supported via a
          deployment task and a corresponding HTTP servlet for
          Over-the-Air (OTA) provisioning. A small preprocessor allows
          to generate different variants of a MIDlet from a single
          source.</p>

          <table class="externals">
            <tr>
              <th>Compatibility:</th>
              <td>Ant 1.4.1 or later</td>
            </tr>
            <tr>
              <th>URL:</th>
              <td><a href="http://antenna.sourceforge.net/">http://antenna.sourceforge.net/</a></td>
            </tr>
            <tr>
              <th>Contact:</th>
              <td><a href="mailto:joerg@pleumann.de">J&#xF6;rg Pleumann</a></td>
            </tr>
            <tr>
              <th>License:</th>
              <td>GNU Lesser General Public License</td>
            </tr>
          </table>
        </subsubsection>

        <subsubsection name="Antic">
          <p>Antic is a freely available task for packaging J2ME
          applications. It produces both the Jar and Jad files in a
          single step. This allows *all* entries to be correclty set in
          the jad file, including the size of the jar file that is
          produced. This task has been used and tested extensively with
          Sun's Wireless Toolkit and also the Nokia SDK and
          emulators.</p>

          <table class="externals">
            <tr>
              <th>Compatibility:</th>
              <td>Ant 1.5</td>
            </tr>
            <tr>
              <th>URL:</th>
              <td><a href="http://www.smartkey.co.uk/tools/antic/antic.html">http://www.smartkey.co.uk/tools/antic/antic.html</a>
              </td>
            </tr>
            <tr>
              <th>Contact:</th>
              <td><a href="mailto:support@smartkey.co.uk">smartkey.co.uk</a></td>
            </tr>
            <tr>
              <th>License:</th>
              <td>GNU General Public License</td>
            </tr>
          </table>
        </subsubsection>

        <subsubsection name="Dave's J2ME Tasks">
          <p>This set supports CLDC and the K Virtual Machine (KVM):</p>
          <p>Note: As the website shows the 'most recent news' is from 18 Apr 2001</p>

          <table class="externals">
            <tr>
              <th>Compatibility:</th>
              <td>Ant 1.3</td>
            </tr>
            <tr>
              <th>URL:</th>
              <td><a href="http://www.dribin.org/dave/j2me_ant/">http://www.dribin.org/dave/j2me_ant/</a></td>
            </tr>
            <tr>
              <th>Contact:</th>
              <td><a href="mailto:drib@enteract.com">Dave Dribin</a></td>
            </tr>
            <tr>
              <th>License:</th>
              <td>Apache Software License 1.1</td>
            </tr>
          </table>
        </subsubsection>

        <subsubsection name="J2ME Polish">
          <p>J2ME Polish is an Ant-based tool for the creation of
          MIDP applications. It covers the whole circle of preprocessing, compiling,
          obfuscation, preverifying, packaging and JAD-creation. J2ME Polish is
          ideal for creating device optimized applications with its powerful
          preprocessing capabilities and the integrated device database.
          With J2ME Polish no hardcoded values are needed and the portability of an
          application is not sacrificed, even though highly optimized applications are
          created from a single source.
          <br/>
          It contains a logging framework and an optional MIDP-compatible GUI
          which can be designed using the web-standard CSS. With the J2ME Polish GUI
          you can even use MIDP/2.0 features on MIDP/1.0 phones.
          </p>

          <table class="externals">
            <tr>
              <th>Compatibility:</th>
              <td>Ant 1.4.1 or later</td>
            </tr>
            <tr>
              <th>URL:</th>
              <td><a
              href="http://www.j2mepolish.org/">http://www.j2mepolish.org/</a></td>
            </tr>
            <tr>
              <th>Contact:</th>
              <td><a href="mailto:j2mepolish@enough.de">Enough Software</a></td>
            </tr>
            <tr>
              <th>License:</th>
              <td>GNU General Public License; commercial licenses available</td>
             </tr>
           </table>
        </subsubsection>

        <subsubsection name="Stampysoft's J2ME Tasks">
          <p>And this set works with the J2ME Wireless Toolkit and MIDP
          for PalmOS.</p>
          <p>Note: as the website shows, the 'current release' is from 11/5/2001</p>

          <table class="externals">
            <tr>
              <th>Compatibility:</th>
              <td>Ant 1.3</td>
            </tr>
            <tr>
              <th>URL:</th>
              <td><a href="http://www.jeckels.com/ant/">http://www.jeckels.com/ant/</a></td>
            </tr>
            <tr>
              <th>Contact:</th>
              <td><a href="mailto:josh@jeckels.com">Josh Eckels</a></td>
            </tr>
            <tr>
              <th>License:</th>
              <td>MIT License</td>
            </tr>
          </table>
        </subsubsection>
      </subsection>

      <subsection name="Jacson">

        <p>Jacson is a configurable and plugable tool (much like Ant
        itself) to create filters for text (line based) files without
        programming.</p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Jacson has been used and tested with 1.5.1, should
            work with 1.4+</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://jacson.sourceforge.net/">http://jacson.sourceforge.net/</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="mailto:jacson-user@lists.sourceforge.de">jacson-user@lists.sourceforge.de</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>GNU Library or Lesser General Public License</td>
          </tr>
        </table>
      </subsection>

      <subsection name="Jalopy">

        <p>An Ant Plug-in for the Java Source Code Formatter
        Jalopy.</p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.4 (or higher)</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://jalopy.sourceforge.net/">http://jalopy.sourceforge.net/</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="http://jalopy.sf.net/contact.html">http://jalopy.sf.net/contact.html</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>Starting with release 1.0 Beta 6 the license is the
            BSD License.  Prior releases were under the GNU General
            Public License.</td>
          </tr>
        </table>
      </subsection>

      <subsection name="JarBundler">

        <p>JarBundler is a task that generates Mac OS X native Java
        Application Bundles.  It is fully configurable and can be used
        to generate Mac OS X application bundles from any supported
        Java platform, making it ideal for targeting multiple
        platforms with one build.</p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.4 and later</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://www.loomcom.com/jarbundler/">http://www.loomcom.com/jarbundler/</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="mailto:sethm@loomcom.com">Seth Morabito</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>GNU General Public License</td>
          </tr>
        </table>
      </subsection>

      <subsection name="JarPatch">

        <p>JarPatch is a task that generates a zip file resulting of
        the diff between the content of 2 jar files.</p>

        <p>The resulting diff file can be use as a patch for a
        previous installation (just ensure that the generated
        patch.zip file is located on the CLASSPATH before the patched
        oldJar jar file).</p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.5 and later</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a
                href="http://norb.dnsalias.org/ant/">http://norb.dnsalias.org/ant/</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="mailto:norbert.barbosa@gmail.com">Norbert Barbosa</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>LGPL License</td>
          </tr>
        </table>
      </subsection>

      <subsection name="Java+ Precompile Task">

        <p>Java+ is an open source Java preprocessor that adds these
        features to any Java compiler:</p>

        <ul>
          <li>Multi-line strings with executable inclusions like Perl
          and Ruby. It eliminates the need for JSP or ASP and their
          need for Java compilers on deployment servers (a security
          concern) while adding no overhead in either space or
          time. </li>

          <li>Optionally supports localization by segregating Java+
          strings into ResourceBundle files with invarient keys based
          on the hash code of the strings's value. This is handled
          automatically and transparently; no intervention is
          required.</li>

          <li>Fast. Negligible impact on build times. By default,
          skips inputs whose outputs are up to date to avoid
          triggering recompilations.</li>

          <li>Pure Java code, portable to any platform, with
          graphical, shell and ant interfaces.</li>

          <li>Simple, general, recursive, digraph-driven string
          syntax. Digraph characters are user-selectable.</li>
        </ul>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.5.1</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://virtualschool.edu/java+/">http://virtualschool.edu/java+/</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="mailto:bcox@virtualschool.edu">Brad Cox</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>BSD-like License</td>
          </tr>
        </table>
      </subsection>

      <subsection name="Java2Html">

        <p>There are two different tools both named Java2HTML that
        process Java source code and generate syntax highlighted
        documentation from it.  Both include Ant tasks to run
        them.</p>

        <p>Java2Html library for converting java source files
        or snipplets to syntax highlighted html, rtf, tex and
        others.</p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.5 and later</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://www.java2html.de/">http://www.java2html.de/</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="mailto:java2html@jave.de">java2html@jave.de</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>GNU General Public License</td>
          </tr>
        </table>

        <p>Java2HTML is a simple-to-use tool which converts a bunch of
        Java Source Code into a colourized and browsable HTML
        representation.</p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>1.5.1 onwards</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://www.java2html.com/java2html_ant_task.html">http://www.java2html.com/java2html_ant_task.html</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="mailto:support@java2html.com">support@java2html.com</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>FreeWare</td>
          </tr>
        </table>

      </subsection>

      <subsection name="Javamake">

        <p>A task to compile Java sources and manage class file
        dependencies. Functionality is equivalent to that of standard
        Javac and Depend tasks combined, with improved dependency
        checking.</p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.4.1</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://www.experimentalstuff.com/Technologies/JavaMake/index.html">http://www.experimentalstuff.com/Technologies/JavaMake/index.html</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="mailto:Mikhail.Dmitriev@eng.sun.com">Mikhail Dmitriev</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>BSD-like License</td>
          </tr>
        </table>
      </subsection>

      <subsection name="javarec">

        <p>Ant tasks that generate record classes for VisualAge for
        Java from Cobol copy books.</p>
        <p>Note: the website shows that the latest version 1.1 is from December 2, 2001</p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.4</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://glezen.org/javarec/">http://glezen.org/javarec/</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="mailto:pglezen@us.ibm.com">Paul Glezen</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>Apache Software License 1.1</td>
          </tr>
        </table>
      </subsection>

      <subsection name="JCSC">

        <p>JCSC is a Java Coding Standard Checker which also features
        the generation of some code metrics. It is a command line tool
        with an Ant task to scan whole package trees. The result can
        viewed in an JavaDoc style web page.</p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant &gt;= 1.5</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://jcsc.sourceforge.net/">http://jcsc.sourceforge.net/</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="mailto:rjocham72@netscape.net">Ralph Jocham</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>GNU General Public License</td>
          </tr>
        </table>
      </subsection>

      <subsection name="JDeb">

        <p>JDeb provides an Ant task and a Maven plugin to create
          Debian packages from Java builds in a truly cross platform
          manner. Build your Debian packages on any platform that has
          Java support. Windows, Linux - it does not require
          additional native tools installed.</p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.7 (not tested on earlier versions)</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://vafer.org/projects/jdeb/">http://vafer.org/projects/jdeb/</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="mailto:tcurdt@apache.org">Torsten Curdt</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>Apache License 2.0</td>
          </tr>
        </table>
      </subsection>

      <subsection name="Jdiff">

        <p>A task that generates an HTML report of all the packages, classes,
        constructors, methods, and fields which have been removed, added or
        changed in any way, including their documentation, when two APIs are
        compared. </p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.6</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td>
            <a href="http://javadiff.sourceforge.net/" >
            http://javadiff.sourceforge.net/</a></td>
          </tr>
          <tr>
            <th>Task Documentation:</th>
            <td>
            <a
            href="http://cvs.sourceforge.net/viewcvs.py/*checkout*/javadiff/jdiff/jdiff.html?rev=HEAD&amp;content-type=text/html#JDiffAntTask"
            >
            (in CVS)</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>LGPL</td>
          </tr>
        </table>
      </subsection>

      <subsection name="JFlex">

        <p>JFlex is a lexical analyzer generator (also known as
        scanner generator) for Java, written in Java.</p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.5</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://jflex.de/">http://jflex.de/</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="http://www.jflex.de/mailing.html">jflex-users mailing list</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>GNU General Public License (GPL)</td>
          </tr>
        </table>
      </subsection>

      <subsection name="JindentTask">

        <p>JindentTask is a very straightforward wrapping of the
        Jindent tool, a vendor code beautifier. It enables to use
        Jindent natively from Ant.</p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.4.1 and higher</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://the.edouard.mercier.free.fr/Jindent_content.php">http://the.edouard.mercier.free.fr/Jindent_content.php</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td>Edouard Mercier</td>
          </tr>
        </table>
      </subsection>

      <subsection name="Jing Task">

        <p> Validates XML files against the RELAX NG alternative to XML Schema.
        The Jing task for Ant allows you to efficiently validate
        multiple files against multiple RELAX NG patterns and integrate
        RELAX NG validation with other XML processing.</p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.4 and later</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://www.thaiopensource.com/relaxng/jing-ant.html">
            http://www.thaiopensource.com/relaxng/jing-ant.html</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>BSD-like</td>
          </tr>
        </table>
      </subsection>

      <subsection name="jMetra">

        <p>jMetra is a tool for collecting code metrics across a
        project lifecycle and compiling the results into
        JavaDoc-styled documentation to analyze project metrics over
        time.  jMetra is best utilized by integrating it with your
        project's scheduled build process.</p>

        <p>It works from the command line or using several provided
        Ant tasks.</p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.4 and higher</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td>
              <a href="http://www.jmetra.com/">http://www.jmetra.com/</a
                >
            </td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td>
              <a href="mailto:tnewton@hypercisioninc.com">R Todd Newton
              </a>
            </td>
          </tr>
          <tr>
            <th>License:</th>
            <td>Commercial, free licenses for open source projects and
            evaluations.</td>
          </tr>
        </table>
      </subsection>

      <subsection name="JMX4Ant">

        <p>JMX4Ant provides tasks for integration with JMX (Java Management
        Extensions). It provides tasks for getting and setting attributes
        of MBeans, invoking their methods and much more.</p>
        <p>Note: <i>As the Sourceforge <a href="http://sourceforge.net/projects/jmx4ant">project site</a>
        shows, the last update was on <b>May 28 2003</b>.</i> (jhm)</p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.4 and higher</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td>
              <a href="http://jmx4ant.sourceforge.net/">http://jmx4ant.sourceforge.net/</a>
            </td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td>
              <a href="mailto:bdueck@yahoo.com">Brian Dueck</a>
            </td>
          </tr>
          <tr>
            <th>License:</th>
            <td>Apache Software License 1.1</td>
          </tr>
        </table>
      </subsection>

      <subsection name="JNI">

        <p>

          JNI is a free toolkit that makes easy work of
          integrating Java and C through the Java Native
          Interface (JNI). It includes a code generator that
          generates both Java "proxy" classes to access C
          "peer" classes, and C "proxy" classes to access
          Java "peer" classes or interfaces. It also
          includes a core library with a simplified JVM
          interface as well as "helper" classes to ease
          working with the JNI data types. The code
          generation is driven by an XML project file that
          can be created with the assistance of the GUI
          Project Manager. The code generation can be
          invoked either from Ant or from the
          GUI. Includes a comprehensive printable PDF User
          Guide and plenty of examples.</p>

        <p>Note: <i>As the Sourceforge <a href="http://sourceforge.net/projects/jnipp">project site</a>
        shows, the last update was on <b>Jan 29 2002</b>.</i> (jhm)</p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.4</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://jnipp.sf.net/">http://jnipp.sf.net/</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="mailto:ptrewhella@users.sf.net">Phillip E. Trewhella</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>GNU LGPL</td>
          </tr>
        </table>
      </subsection>

      <subsection name="JPP">
        <p>
          <a href="http://www.javapreprocessor.com">JPP</a> is a preprocessor for Ant supporting
          many different file types that allows you to include / exclude contents based on 
          build-time parameters.  It is completely invisible to other tools and takes the hassle 
          out of maintaining customised code or content.  It is free, is provided as an Ant task, 
          and very simple to use.
        </p>
        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.6.5</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://www.javapreprocessor.com">http://www.javapreprocessor.com</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="mailto://info@javapreprocessor.com">info@javapreprocessor.com</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>Freeware</td>
          </tr>
        </table>
      </subsection>

      <subsection name="JReleaseInfo">
        <p>Sometimes you are interested at runtime to have information
        from build time. This may be the build date, a build number or
        the version.  The JReleaseInfo Ant Task generates a java
        source file with getter methods for any desired and provided
        properties.  Furthermore, it can automatically generate a
        viewer (which can e.g.  be used as main-class in a library jar
        file) that shows the included release information.</p>

        <p>Note: <i>As the Sourceforge <a href="http://sourceforge.net/projects/jreleaseinfo">project site</a>
        shows, the last update was on <b>Aug 07 2005</b>.</i> (jhm)</p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.6 and later</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://jreleaseinfo.sourceforge.net/">HomePage on SourceForge</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a
                href="http://sourceforge.net/projects/jreleaseinfo/">Forums/Tracker on SourceForge</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>Apache License 2.0</td>
          </tr>
        </table>
      </subsection>

      <subsection name="JRun Ant Tasks">

        <p>JRun 4 SP1 ships with lib/jrun-ant-tasks.jar, which defines
        three Ant tasks: jrun, jrunapp, and jrunjmx.  Documentation
        for the tasks can be found in JRun under
        docs/ant/jrun.html.</p>

        <p>Note that the service pack must be installed on top of an
        existing JRun 4 installation.</p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.4 or higher</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://www.adobe.com/products/jrun/">http://www.adobe.com/products/jrun/</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>Commercial</td>
          </tr>
        </table>
      </subsection>

      <subsection name="JsDoc Toolkit Ant Task">

        <p>JsDoc Toolkit is an application, written in JavaScript, for
          automatically generating template-formatted, multi-page HTML
          (or XML, JSON, or any other text-based) documentation from
          commented JavaScript source code.</p>

        <p>This project is a simple wrapper around the JsDoc Toolkit
          documentation program. It gives the user all the command
          line options, with the flexibility of using in within an Ant
          build file.</p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.7.0 or higher</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://code.google.com/p/jsdoc-toolkit-ant-task/">http://code.google.com/p/jsdoc-toolkit-ant-task/</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="mailto:ironsidevsquincy@googlemail.com">Darren Hurley</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>Apache License 2.0</td>
          </tr>
        </table>
      </subsection>

      <subsection name="JSMin Ant Task">

        <p>The JSMin Ant task can be used for the automated minification of javascript files
          in your build and deploy processes.</p>
        <p>JSMin is a filter which removes comments and unnecessary whitespace from javascript
          files. It typically reduces filesize by half, resulting in faster downloads.</p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.6.5 or higher</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://code.google.com/p/jsmin-ant-task/">http://code.google.com/p/jsmin-ant-task/</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="mailto:matt_at_matthaynes_dot_net">M. Haynes</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>Apache License 2.0</td>
          </tr>
        </table>
      </subsection>

      <subsection name="JudoScript Ant Task">

        <p>The &lt;judoscript&gt; task is an easy way to embed JudoScript
           code in the Ant build script. The tag format is quite simple. You can
           either embed code directly, or can specify an external JudoScript program
           file as the <code>src</code> attribute value. Parameters can be specified
           as the <code>params</code> attribute; this is applicable to both embedded
           code and external files.
        </p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.5 or higher</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a
              href="http://www.judoscript.org/books/judoscript-0.9/chapters/ant.html">http://www.judoscript.org/books/judoscript-0.9/chapters/ant.html</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="mailto:judoscript@hotmail.com">James Jianbo Huang</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>Lesser GNU Public License</td>
          </tr>
        </table>
      </subsection>

      <subsection name="Just4log Ant Task">

        <p>Just4log is a ant task to optimize JVM bytecode with regards
        for Logs ( be it, Log4j, Apache Commons or JDK 1.4 )
        It depends on apache BCEL for Bytecode engineering.</p>

        <p>Note: <i>As the Sourceforge <a href="http://sourceforge.net/projects/just4log">project site</a>
        shows, the last update was on <b>Oct 19 2003</b>.</i> (jhm)</p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.5.2 or higher</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://just4log.sourceforge.net">http://just4log.sourceforge.net</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="mailto:lbruand@wanadoo.fr">Lucas Bruand</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>Apache License 1.1.</td>
          </tr>
        </table>
      </subsection>

      <subsection name="Kanaputs">

        <p>Kanaputs is a parser for java based scripting. It is an
        interpreter for Java. With Kanaputs you can use Java as an
        interpreted language: no more compilation, each instruction is
        executed when you write it.  It is a small programmation
        language to make script files above Java.</p>

        <p>Kanaputs Ant Task provides a way to add any kind of
        programmatic features in your Ant script. The code you insert
        stays OS independent (because Kanaputs uses Java) and is
        completely integrated with Ant as you can give Ant properties
        to the Kanaputs code and get back the results in other
        properties.</p>

        <p>Moreover, as you can invoke any kind of Java code with
        Kanaputs, you can popup windows from your Ant file to ask the
        user to do a choice.</p>
        
        <p>Note: the <a href="https://kanaputs.dev.java.net/servlets/ProjectNewsList">website</a>
        shows that the latest version 1.4 is from Nov 26, 2004. The mailing archive from
        the last few months contains only spam...</p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.2 and above</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td>
              <a href="https://kanaputs.dev.java.net/">https://kanaputs.dev.java.net//</a> <br/>
              <a href="https://kanaputs.dev.java.net/ant.pdf">https://kanaputs.dev.java.net/ant.pdf</a>
            </td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td>
              <a href="mailto:kfra@dev.java.net">kfra@dev.java.net</a>
            </td>
          </tr>
          <tr>
            <th>License:</th>
            <td>Freeware</td>
          </tr>
        </table>
      </subsection>

      <subsection name="LaTeX Task">

        <p>Simple Task to use (PDF)LaTeX, BibTeX, Makeindex and GlossTeX to
        create your documentation.</p>
        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.6.2 and above</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td>
              <a href="http://www.dokutransdata.de/">http://www.dokutransdata.de/</a><br/>
              <a href="http://www.dokutransdata.de/ant_latex/">http://www.dokutransdata.de/ant_latex/</a>
            </td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td>
              <a href="mailto:jaloma@dokutransdata.de">jaloma@dokutransdata.de</a>
            </td>
          </tr>
          <tr>
            <th>License:</th>
            <td>Freeware</td>
          </tr>
        </table>
      </subsection>

     <subsection name="Macker">

        <p>A build-time architectural testing tool, designed
        to maintain clean layering / tiering / modularity.
        Macker works against compiled class files, checking
        dependencies between classes against a set of
        pattern-based access rules you specify for your
        project in an XML rules file.  Macker doesn't presume
        anything about your architecture -- you write the
        rules, and Macker keeps you honest about them.</p>

        <p>Note: <i>As the Sourceforge <a href="http://sourceforge.net/projects/macker">project site</a>
        shows, the last update was on <b>Nov 02 2003</b>.</i> (jhm)</p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.5 and higher (1.4 untested but may work)</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://innig.net/macker/">http://innig.net/macker/</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="http://innig.net/macker/contact.html">Paul Cantrell</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>GNU GPL 2.0</td>
          </tr>
        </table>
      </subsection>
      
     <subsection name="MakeRunScript">

        <p>MakeRunScript creates a run script for your application.  Even if you are developing on windows,
        you can make a run script for *nix and vice versa.  If you've used the built-in java task before, you
        already know how to use 90% of MakeRunScript.</p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.7 and higher</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://sourceforge.net/projects/makerunscript/">http://sourceforge.net/projects/makerunscript/</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="http://sourceforge.net/forum/?group_id=210204">MakeRunScript forums</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>Apache 2.0</td>
          </tr>
        </table>
      </subsection>      

      <subsection name="mtxslt">

        <p>The mtxslt (Multi-XSLT) extends the standard Ant "xslt/style" task
        to make it easy to use multiple XSLT engines during the same build.
        This is useful for regression testing of XSLT scripts against several
        engines.</p>

        <p>Note: <i>As the Sourceforge <a href="http://sourceforge.net/projects/mtxslt/">project site</a>
        shows, the last update was on <b>Oct 16 2002</b>.</i> (jhm)</p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.5</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://mtxslt.sourceforge.net/">http://mtxslt.sourceforge.net/</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="mailto:abcoates@theOffice.net">Anthony B. Coates</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>Apache Software License 1.1</td>
          </tr>
        </table>
      </subsection>

      <subsection name="nsd2LaTeX Task">

        <p>Simple Task to use nsd2ltx to build your Nassi-Shneiderman diagrams.</p>
        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.6.2 and above</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td>
              <a href="http://www.dokutransdata.de/">http://www.dokutransdata.de/</a><br/>
              <a href="http://www.dokutransdata.de/ant_nsd2ltx/">http://www.dokutransdata.de/ant_nsd2ltx/</a>
            </td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td>
              <a href="mailto:jaloma@dokutransdata.de">jaloma@dokutransdata.de</a>
            </td>
          </tr>
          <tr>
            <th>License:</th>
            <td>Freeware</td>
          </tr>
        </table>
      </subsection>

      <subsection name="Nurflugel AntScript Visualizer">

        <p>The Nurflugel AntScript Visualizer takes your build file,
        finds any imported build files, and shows all relationships
        between targets, taskdefs, macrodefs, Ant and Antcalls; output
        options include PDF, SVG, and PNG.  Many options including
        grouping by build file, inclusion/exclusion of targets,
        taskdefs, imports, etc.  Installation is via Java WebStart, so
        you'll always have the freshest version available.</p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.1 and later</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://www.nurflugel.com/webstart/AntScriptVisualizer/">http://www.nurflugel.com/webstart/AntScriptVisualizer/</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td>dbullard &lt;at&gt; nurflugel &lt;dot&gt; com (email
            will receive a challenge to weed out spam)</td>
          </tr>
          <tr>
            <th>License:</th>
            <td>GNU General Public License</td>
          </tr>
        </table>
      </subsection>

      <subsection name="Orangevolt Ant Tasks">

        <p>Orangevolt ANT Tasks is a collection of Tasks for Apache
        Ant.</p>

        <p>The Orangevolt Ant Tasks collections provides a bunch of
        Appplication Deployment related Tasks from windows specific
        tasks (registry access, executable generation), *nix specific
        tasks (kde/gnome shortcut generation) to many useful utility
        tasks like jnlp generation.</p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.5 or above</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://sourceforge.net/projects/ovanttasks">http://sourceforge.net/projects/ovanttasks</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="mailto:info@roxes.com">info@roxes.com</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>GNU General Public License (GPL)</td>
          </tr>
        </table>
      </subsection>

      <subsection name="pack">

        <p>pack is a task to build the smallest possible JAR to link
        and run one or more classes.</p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.5</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://sadun-util.sourceforge.net/pack.html">http://sadun-util.sourceforge.net/pack.html</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="mailto:cristiano@xtractor.com">Cristiano Sadun</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>GNU Lesser General Public License</td>
          </tr>
        </table>
      </subsection>

      <subsection name="PCT">
        <p>PCT is a task to compile Progress code, and in a more general
        way, to deal with Progress procedures and databases.</p>
        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.5</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://pct.sourceforge.net">http://pct.sourceforge.net</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="mailto:justus_phenix@users.sourceforge.net">Gilles QUERRET</a></td>
          </tr>
          <tr>
            <th>Licence:</th>
            <td>Apache License 2.0</td>
          </tr>
        </table>
      </subsection>

      <subsection name="PesterCat Ant Toolkit">
         <p>PesterCat is a web testing tool that was designed to
           perform functional testing for web applications. The PesterCat
           Ant Toolkit contains tasks to playback test scripts and create
           HTML reports.
         </p>
         <table class="externals">
           <tr>
             <th>Compatibility:</th>
             <td>Ant 1.6 and later</td>
           </tr>
           <tr>
             <th>URL:</th>
             <td><a href="http://www.pestercat.com/">http://www.pestercat.com/</a></td>
           </tr>
           <tr>
             <th>License:</th>
             <td>Commercial</td>
           </tr>
         </table>
       </subsection>

      <subsection name="PMD">

        <p>PMD checks Java source code for unused variables,
        unnecessary object creation, etc</p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.4 and higher</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://pmd.sf.net/">http://pmd.sf.net/</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="mailto:tcopeland@apache.org">Tom Copeland</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>BSD style license</td>
          </tr>
        </table>
      </subsection>

      <subsection name="PRes">
        <p>PRes is short for Property Resources and will generate a Java source
           file from name=value pair .property files which can be compiled like any
           other class.</p>
        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.5 and later (may work with earlier)</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://mseries.sourceforge.net">http://mseries.sourceforge.net</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="http://web.ukonline.co.uk/mseries/contact.html">MSeries</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>LGPL</td>
          </tr>
        </table>
      </subsection>

      <subsection name="ProGuard">
        <p><a href="http://proguard.sourceforge.net/">ProGuard</a> is
        a free Java class file shrinker and obfuscator.  It can detect
        and remove unused classes, fields, methods, and attributes. It
        can then rename the remaining classes, fields, and methods
        using short meaningless names.</p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Tested with 1.5. Should work with all versions.</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td>
              <a href="http://proguard.sourceforge.net/">http://proguard.sourceforge.net/</a>
            </td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td>
              <a href="http://proguard.sourceforge.net/feedback.html">Feedback Page</a>
            </td>
          </tr>
          <tr>
            <th>License:</th>
            <td>GNU General Public License</td>
          </tr>
        </table>
      </subsection>

      <subsection name="properties2java">

        <p>Properties2Java is an Ant task for automatic conversion of
        java ".properties" files to ".java" files extending the
        java.util.ListResourceBundle.</p>
        
        <p>Note: <i>As the Sourceforge <a href="http://sourceforge.net/projects/properties2java">project site</a>
        shows, the last update was on <b>Jun 04 2005</b>.</i> (jhm)</p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.6 or above</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://properties2java.jayefem.de/">http://properties2java.jayefem.de/</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="mailto:properties2java@jayefem.de">Jan-Friedrich Mutter</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>Apache License 2.0</td>
          </tr>
        </table>
      </subsection>

      <subsection name="Purge">

        <p>Purge deletes all but the most recent few files from a fileset.
        For example: if you have generated files (logs, .ear, .war, .jar
        etc) accumulating in a directory, the purge task will allow you
        to delete the older files, keeping just the most recent ones.</p>
        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.4 or above</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://www.dallaway.com/ant/">http://www.dallaway.com/ant/</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="mailto:purge@dallaway.com">Richard Dallaway</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>LGPL</td>
          </tr>
        </table>
      </subsection>

      <subsection name="RefactorIT">

        <p>RefactorIT includes an Ant task for metrics and audits.
        RefactorIT is a Java refactoring, audit and metrics tool.
        It plugs into major Java IDEs, also runs stand-alone with
        a GUI and a command line interface.</p>
        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.5 and later</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://www.refactorit.com/">http://www.refactorit.com/</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="mailto:support@refactorit.com">support@refactorit.com</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>Commercial. (Free for accredited open source products, see
            <a href="http://www.refactorit.com/osc">http://www.refactorit.com/osc</a>.)</td>
          </tr>
        </table>
      </subsection>

      <subsection name="Reflectant Task">

        <p>This is a task for reflection invocation from within ant build file.</p>
        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.5 or above</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://sourceforge.net/projects/reflectant/">http://sourceforge.net/projects/reflectant/</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="mailto:sv_ant@mail.bg">sv_ant@mail.bg</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>Apache License 2.0</td>
          </tr>
        </table>
      </subsection>

      <subsection name="rundoc">
        <p>A task designed to help with the single-sourcing of program
        documentation. Rundoc replaces special commands
        (in the format <i>@@rundoc:command param1 param2...@@</i>) embedded
        within text files with their output in a
        specified format. Currently, only Docbook format is supported.</p>

        <p>Rundoc was written to keep sample code output in program
        documentation synchronized with the actual output
        of the current code, by running the referenced code when the
        documentation is built.</p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Tested with 1.6  Should work with all versions.</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://www.martiansoftware.com/lab/index.html#rundoc">http://www.martiansoftware.com/lab/index.html#rundoc</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="http://www.martiansoftware.com/contact.html">Marty Lamb</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>Revised BSD</td>
          </tr>
        </table>
      </subsection>

      <subsection name="SerialVer">

        <p>SerialVer adds the Java serialver functionality to Apache
        Ant.  This project adds Tasks and FilterReaders to get, to
        insert and to modify the serialVersionUID in the source code
        of a serializable class.</p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.5.1 and later</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://serialver.sourceforge.net/">http://serialver.sourceforge.net/</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="https://lists.sourceforge.net/lists/listinfo/serialver-development">developer mailing list</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>Apache Software License 1.1</td>
          </tr>
        </table>
      </subsection>

      <subsection name="Simian">

        <p>Simian (Similarity Analyser) identifies duplication in Java,
        C#, C, CPP, COBOL, JSP, HTML source code and even plain text files.</p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.5.1 and later</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://www.redhillconsulting.com.au/products/simian/">
            http://www.redhillconsulting.com.au/products/simian/</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="mailto:simian-user-subscribe@redhillconsulting.com.au">
            simian-user-subscribe@redhillconsulting.com.au (User Mailinglist)
            </a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>Commercial, Free Licenses available for Non-Commercial Projects</td>
          </tr>
        </table>
      </subsection>

      <subsection name="SmartAnalyzer">

        <p>Powerful analysis of dependencies between Java classes.
        Only affected classes will be recompiled and it can be used
        with any bytecode compiler.</p>

        <p>Note: <i>As the Sourceforge <a href="http://sourceforge.net/projects/smartanalyzer">project site</a>
        shows, the last update was on <b>Feb 21 2003</b>.</i> (jhm)</p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Apache Ant version 1.5.1</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://smartanalyzer.sourceforge.net/">http://smartanalyzer.sourceforge.net/</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="http://sourceforge.net/projects/smartanalyzer">support at sourceforge project page</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>GNU General Public Licence (GPL)</td>
          </tr>
        </table>
      </subsection>

      <subsection name="snip">
        <p>A task designed to help with the single-sourcing of program documentation.
        Snip extracts snippets of text from files, placing them into properties in the Ant project.
        These properties can then be used by any other Ant task, and are particularly useful when
        referenced by &lt;filter&gt;s within the &lt;copy&gt; task.</p>

        <p>Snip was originally written to keep snippets of sample code in API documentation synchronized
        with the actual sample classes.</p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Tested with 1.5.1.  Should work with all versions.</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://www.martiansoftware.com/lab/index.html#snip">http://www.martiansoftware.com/lab/index.html#snip</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="http://www.martiansoftware.com/contact.html">Marty Lamb</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>Revised BSD</td>
          </tr>
        </table>
      </subsection>

      <subsection name="spell">
        <p>Website is gone and nothing found.</p>
      </subsection>
      
      <subsection name="SQL Compiler (SQLC)">
        <p>SQL Compiler (SQLC) compiles database metadata and SQL statements into data access and data transfer classes.</p>
        <p>Note: It seems that the product is renamed to <a href="http://www.hammurapi.biz/hammurapi-biz/ef/xmenu/hammurapi-group/products/sqlc/index.html">jIncarnate</a>.</p>
        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Tested with Ant 1.5.4 and 1.6.5</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://www.hammurapi.biz/products/sqlc">http://www.hammurapi.biz/products/sqlc</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="http://www.hammurapi.biz/hammurapi-biz/ef/xmenu/contact.html">Project Contact Page</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>LGPL</td>
          </tr>
        </table>
      </subsection>

      <subsection name="SQLUnit">
         <p>SQLUnit is a regression and unit testing harness for testing
         database stored procedures. The test suite is written as an XML file.
         The SQLUnit harness itself is written in Java and uses the JUnit unit
         testing framework to convert the XML test specifications to JDBC calls
         and compare the results generated from the calls with the specified
         results. It also provides the &lt;sqlunit&gt; task to run the tests
         from a build script.</p>
         <table class="externals">
           <tr>
             <th>Compatibility:</th>
             <td>Tested with Ant 1.6</td>
           </tr>
           <tr>
             <th>URL:</th>
             <td><a href="http://sqlunit.sourceforge.net">http://sqlunit.sourceforge.net</a></td>
           </tr>
           <tr>
             <th>Contact:</th>
             <td><a href="http://sourceforge.net/forum/?group_id=77832">Project forums</a></td>
           </tr>
           <tr>
             <th>License:</th>
             <td>GNU General Public License (GPL)</td>
           </tr>
         </table>
       </subsection>

      <subsection name="Styler">

        <p>The styler task makes useful combinations of XSLT transformations
        easy to specify in an Ant build file. Like the built-in Ant task
        style, styler can apply a single transformation to a set of XML files.
        But it can also:</p>
        <ul>
          <li>handle multiple transformations, in parallel or pipelined.</li>
          <li>enable transformations that split or merge files</li>
          <li>process non-XML files, especially HTML (based on JTidy)</li>
          <li>apply non-XSLT transformation, especially "regular
          fragmentations"</li>
          <li>use any custom XMLReader or XMLFilter class to handle new file
          formats and transformation techniques.</li>
        </ul>
        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.4</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://www.langdale.com.au/styler/">http://www.langdale.com.au/styler/</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="mailto:adv@langdale.com.au">Arnold deVos</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>LGPL</td>
          </tr>
        </table>
      </subsection>

      <subsection name="Syntax">

        <p>Transforms source files into HTML documents with syntax
        highlighting. It can handle a variety of source files
        including Java, HTML, C/C++, SQL, and Java properties.  Colors
        for elements are specified using cascading style sheets.  The
        output can be templated for easy integration with a site's
        look and feel.</p>
        
        <p>A very short look into the <a href="http://www.gjt.org/servlets/JCVSlet/list/gjt/com/Ostermiller/Syntax">scm</a>
        shows that the last modifications where in 2003.</p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.5</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://ostermiller.org/syntax/ant.html">http://ostermiller.org/syntax/ant.html</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="http://ostermiller.org/contact.pl?regarding=Syntax+Highlighting">Stephen Ostermiller</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>GNU General Public License (GPL)</td>
          </tr>
        </table>
      </subsection>

      <subsection name="TestSetGenerator">

        <p>The TestSetGenerator is an ant task for generating property files with
        testsets based on the results of SQL queries and validation plug-ins. Very
        usefull when building unit tests that make use of changing datasets. This
        task is an extension of the Ant SQL task. Hsqldb is used for both the
        examples and the unittests.</p>

        <p>Note: <i>As the Sourceforge <a href="http://sourceforge.net/projects/anttestsetgen">project site</a>
        shows, the last update was on <b>Jan 04 2004</b>.</i> (jhm)</p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>ANT 1.4 (or later)</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://anttestsetgen.sourceforge.net/">http://anttestsetgen.sourceforge.net/</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="mailto:m.c.jansen@planet.nl">m.c.jansen@planet.nl</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>GPL</td>
          </tr>
        </table>
      </subsection>

      <subsection name="TiniAnt">

        <p>TiniAnt is an Ant task to support building applications for
        the <a href="http://www.ibutton.com/TINI/">TINI</a>.</p>

        <p>Note: <i>As the Sourceforge <a href="http://sourceforge.net/projects/tiniant/">project site</a>
        shows, the last update was on <b>Mar 05 2002</b>.</i> (jhm)</p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.2 to 1.4.1</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://tiniant.sourceforge.net/">http://tiniant.sourceforge.net/</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="mailto:kelly@ad1440.net">Sean Kelly</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>BSD-like license</td>
          </tr>
        </table>
      </subsection>

      <subsection name="Transformica">
        <p>Transformica is a versatile and extensible code generator.
           Supports multiple source models including database metadata, Java source files, grammar
           files and custom models.
        </p>
        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Tested with Ant 1.5.x and 1.6.5</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://www.hammurapi.biz/hammurapi-biz/ef/xmenu/hammurapi-group/products/transformica/">http://www.hammurapi.biz/hammurapi-biz/ef/xmenu/hammurapi-group/products/transformica/</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="mailto:support@hammurapi.biz">email support</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td></td>
          </tr>
        </table>
      </subsection>

      <subsection name="Version_Tool">
        <p>A versioning tool for Ant.</p>
        <p>Note: <i>As the Sourceforge <a href="http://sourceforge.net/projects/antversiontool">project site</a>
        shows, the last update was on <b>Feb 19 2004</b>.</i> (jhm)</p>
        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.5.1</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://ant.ryangrier.com/">http://ant.ryangrier.com/</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="mailto:version_tool@ryangrier.com">version_tool@ryangrier.com</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>BSD license</td>
          </tr>
        </table>
      </subsection>

      <subsection name="VPP">

        <p>VPP provides general file preprocessing support based on
        the Velocity Template Engine.  The core functionality is
        provided as a filter for use with tasks that supports filter
        chains.  Also included are replacement tasks for &lt;copy&gt; and
        &lt;javac&gt; that integrate support for preprocessing.</p>

        <p>Note: <i>As the Sourceforge <a href="http://sourceforge.net/projects/vpp/">project site</a>
        shows, the last update was on <b>May 06 2004</b>.</i> (jhm)</p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>1.5.1 and above</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://vpp.sourceforge.net/">http://vpp.sourceforge.net/</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="mailto:vpp-user@lists.sourceforge.net">vpp-user@lists.sourceforge.net</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>BSD license</td>
          </tr>
        </table>
      </subsection>

      <subsection name="WOProject">

        <p>WOProject provides a set of tools to work with
        <a href="http://webobjects.com/">WebObjects 5.1</a>
        independent from platform and IDE. It significantly
        improves developer productivity
        and makes complex project structures more flexible compared to
        traditional Makefile-based approach.
        </p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.4</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://objectstyle.org/woproject/">http://objectstyle.org/woproject/</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="mailto:andrus@objectstyle.org">Andrus Adamchik</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>Apache license</td>
          </tr>
        </table>
      </subsection>

      <subsection name="WSDLValidate">
        <p>WSDLValidate is, as it sounds, a tool to validate WSDL files.<ul>
          <li><a href="http://wiki.eclipse.org/index.php/WSDL_Validator">Overview</a></li>
          <li><a href="http://wiki.eclipse.org/Using_the_WSDL_Validator_Outside_of_Eclipse">Using the WSDL Validator Outside of Eclipse</a></li>
        </ul></p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.5 or later</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://www.eclipse.org/webtools/">http://www.eclipse.org/webtools/</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="http://www.eclipse.org/webtools/">Project newsgroup and mailing list</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td><a href="http://www-124.ibm.com/developerworks/oss/CPLv1.0.htm">Common Public
            License (CPL)</a></td>
          </tr>
        </table>
      </subsection>

      <subsection name="Xcluder">
        <p>xcluder is an XML Inclusions (XInclude) task for Apache Ant.
        Offers the choice of using Xerces or Elliotte Rusty Harold's XOM API.
        </p>
        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.4 or later. XInclude compliance depends on the
            underlying Xerces or XOM used. Xerces 2.5.0 and above works fine,
            but please note that 2.6.1 and 2.6.2 processed the
            http://www.w3.org/2003/XInclude, now obsolete by
            http://www.w3.org/2001/XInclude used by the latest
            Candidate Recommendation (13 April 2004).
            </td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://sourceforge.net/projects/xcluder">http://sourceforge.net/projects/xcluder</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="mailto:mbatsis@users.sf.net">mbatsis@users.sf.net</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>GNU General Public License (GPL), GNU Library or Lesser
            General Public License (LGPL)
            </td>
          </tr>
        </table>
      </subsection>

      <subsection name="XDoclet">

        <p>XDoclet is an extended Javadoc Doclet engine for use in Ant.
           It lets you create custom Javadoc @tags and based on those tags
           generates source code or other files (such as xml-ish deployment
           descriptors). Templates and matching tasks are provided to generate
           EJB and web application deployment descriptors.
           </p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.4</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://sourceforge.net/projects/xdoclet/">http://sourceforge.net/projects/xdoclet/</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>BSD license</td>
          </tr>
        </table>
      </subsection>

      <subsection name="XInclude">
        <p><a href="http://www.jeckle.de/freeStuff/xia/index.html">XInclude</a> is
          a W3C standardized vocabulary for including arbitrary text or XML
          documents in other XML documents. This task performes the inclusion
          using an existing XInclude implementation</p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.5.2</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td>
              <a href="http://www.jeckle.de/freeStuff/xia/index.html">http://www.jeckle.de/freeStuff/xia/index.html</a>
            </td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="mailto:mario@jeckle.de">mario@jeckle.de</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>Lesser GNU Public License</td>
          </tr>
        </table>
      </subsection>

      <subsection name="XML Directory Listing Ant Task">

        <p>The XML Directory Listing task can recurse through a directory structure and produce an 
        XML representation. The resulting file can then be transformed further with Ant. </p>
        <p>The XML output is configurable through various options. The SAX parsing is fast and has a 
        low memory footprint.</p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.6.5 or higher</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://code.google.com/p/xml-dir-listing/">http://code.google.com/p/xml-dir-listing/</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="mailto:matt_at_matthaynes_dot_net">M. Haynes</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>Apache License 2.0</td>
          </tr>
        </table>      
	  </subsection>

      <subsection name="XMLReleaseNotes (XRN)">

        <p>This framework is a release notes framework that enables to
        generate textual release notes from an XML file. This is an
        open framework that enables to integrate the information
        coming from VSC and bug tracking solutions, for instance.</p>

        <p>Note: <i>As the Sourceforge <a href="http://sourceforge.net/projects/xmlreleasenotes">project site</a>
        shows, the last update was on <b>Sep 04 2005</b>.</i> (jhm)</p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.5 and later</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://xmlreleasenotes.free.fr/">http://xmlreleasenotes.free.fr/</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td>Edouard Mercier</td>
          </tr>
          <tr>
            <th>License:</th>
            <td>Apache Software License 1.1</td>
          </tr>
        </table>
      </subsection>

      <subsection name="XmlTask">

        <p>XmlTask provides a simple means to modify XML documents
        without having to learn XSLT. A simple path reference to an
        XML node specifies the node you want to change, and how you
        want to allow XML insertion and removal, or attribute
        changes. The emphasis is on providing the simplest means to
        perform common XML replacements</p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.4 and later</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://www.oopsconsultancy.com/software/xmltask/">http://www.oopsconsultancy.com/software/xmltask/</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="mailto:xmltask-users@lists.sourceforge.net">xmltask-users at lists.sourceforge.net</a> </td>
          </tr>
          <tr>
            <th>License:</th>
            <td>Apache Software License 1.1</td>
          </tr>
        </table>
      </subsection>

      <subsection name="yGuard">

        <p>yGuard is a free Java(TM) Bytecode Obfuscator Task that
        needs no external script or project files. It can completely
        be configured and run through the Ant build script. The task
        supports multiple Jar files at once and makes use of
        patternsets and regular expressions to specify elements, which
        should be left unobfuscated.  Additionally it can be used to
        produce patches for obfuscated applications that have already
        been deployed.</p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.5 and later</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://www.yworks.com/en/products_yguard_about.htm">http://www.yworks.com/en/products_yguard_about.htm</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="mailto:yguard@yworks.com">yGuard@yWorks.com</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>Library: LGPL, Task: Commercial</td>
          </tr>
        </table>
      </subsection>

      <subsection name="Zelix KlassMaster">

        <p>The task ZKMTask allows the Zelix KlassMaster Java obfuscator to be integrated into an Ant build.</p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.4.1 and later</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://www.zelix.com/klassmaster/docs/buildToolApi.html">http://www.zelix.com/klassmaster/docs/buildToolApi.html</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>Commercial</td>
          </tr>
        </table>
      </subsection>

    </section>



    <section name="Build Listeners">

      <subsection name="AntUtility">

        <p>
          Wondering why your Ant build is slow? Is your continuous integration server taking too 
          long to produce your project builds? This project may help. This project includes a small 
          number of classes for use with Ant that can help you to analyze your build in a 
          non-intrusive manner.
        </p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.6</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="https://antutility.dev.java.net/">https://antutility.dev.java.net/</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="mailto:dgreen@dev.java.net">David Green</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td><a href="http://www.apache.org/licenses/LICENSE-2.0">Apache
            License 2.0</a></td>
          </tr>
        </table>
      </subsection>
    </section>



    <section name="Compiler Implementations">

      <subsection name="Generics (JSR14) Early-Access Compiler Adapter">

        <p>This is an Ant compiler-adapter that allows you to use the
        normal <code>&lt;javac&gt;</code> task plus Sun's early-access
        compiler to compile Generics-enabled Java code.  (This is only
        necessary until JDK1.5 is released.)</p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.5 and later</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://www.madbean.com/blog/3/">http://www.madbean.com/blog/3/</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td>Matt Quail &lt;spud[at]madbean[dot]com&gt;</td>
          </tr>
          <tr>
            <th>License:</th>
            <td>Public Domain</td>
          </tr>
        </table>
      </subsection>

      <subsection name="miniRMI &lt;code&gt;&amp;lt;rmic&amp;gt;&lt;/code&gt; implementation">

        <p>miniRMI is a freeware opensource library that serves as a
        lightweight replacement for the original java.rmi packages and
        is suitable especially for applets. Ant 1.4+
        <code>&lt;rmic&gt;</code> adapter included.</p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.4 and later</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://dione.zcu.cz/~toman40/miniRMI/">http://dione.zcu.cz/~toman40/miniRMI/</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="mailto:Petr.Toman@pinknet.cz">Petr Toman</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>Gnu Lesser Public License</td>
          </tr>
        </table>

      </subsection>
    </section>

    <section name="IDE and Editor Integration">

      <subsection name="AntFarm">

        <p>A plugin that integrates Ant into the jEdit editor.</p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>bundles Ant 1.5</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://plugins.jedit.org/plugins/?AntFarm">http://plugins.jedit.org/plugins/?AntFarm</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="mailto:jedit-devel@lists.sourceforge.net">jEdit developers mailinglist</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>GNU General Public License</td>
          </tr>
        </table>
      </subsection>

      <subsection name="AntRunner">

        <p>An OpenTool that integrates Ant into the JBuilder IDE
        (version 5 and later).</p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.2 and later</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://antrunner.sourceforge.net/">http://antrunner.sourceforge.net/</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="mailto:dirk.schnelle@web.de">Dirk Schnelle</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>GNU General Public License</td>
          </tr>
        </table>
      </subsection>

      <subsection name="CAPlex">
        <p>CA Plex is an architected RAD tool that combines the techniques of
        model-driven development, code generation and patterns to create
        business applications for multiple platforms, including Java, .NET and
        IBM System i. In its 6.0 release, CA Plex includes integrated support
        for building generated Java code with Ant.</p>
        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.6.5</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://wiki.plexinfo.net/index.php?title=Customizing_Plex_6.0_ANT_builds">http://wiki.plexinfo.net/index.php?title=Customizing_Plex_6.0_ANT_builds</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="http://www.ca.com/us/products/product.aspx?ID=258">http://www.ca.com/us/products/product.aspx?ID=258</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>Commercial</td>
          </tr>
        </table>
      </subsection>

      <subsection name="Eclipse">

        <p>Eclipse is a universal tool platform with Ant integration.</p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>
              Ant 1.3 and higher <br/>
              Bundles Ant 1.6.2 as of Eclipse 3.0.1 (tested with Ant 1.5.4 - 1.6.2) <br/>
              Eclipse 3.2 bundles Ant 1.6.5 <br/>
              Eclipse 3.3 bundles Ant 1.7.0 
            </td>
          </tr>
          <tr>
            <th>URL:</th>
            <td>
              <a href="http://www.eclipse.org/">http://www.eclipse.org/</a>
              or
              <a href="http://dev.eclipse.org/viewcvs/index.cgi/~checkout~/platform-ant-home/index.html">
                http://dev.eclipse.org/viewcvs/index.cgi/~checkout~/platform-ant-home/index.html
              </a>
            </td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="news://news.eclipse.org/eclipse.platform">news://news.eclipse.org/eclipse.platform</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>Common Public License Version 1.0</td>
          </tr>
        </table>
      </subsection>

      <subsection name="Gel">

        <p>Java IDE with support for Ant.  Gel is a native Microsoft Windows software.</p>
        <p>Note: The website recommends using another IDE because GEL is not longer maintained.</p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.4 and above</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://www.gexperts.com/products/gel/gel.asp">http://www.gexperts.com/products/gel/gel.asp</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="http://groups.yahoo.com/group/gelide/">Project Mailing List</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>Freeware</td>
          </tr>
        </table>
      </subsection>


      <subsection name="IntelliJ IDEA">
      <p>Java IDE with refactoring support and Ant integration.
      The IDE has special editing and navigation support for Ant.
      </p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>bundles Ant 1.6.5</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://www.intellij.com/idea/">http://www.intellij.com/idea/</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="mailto:support@intellij.com">support@intellij.com</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>Commercial; Academic and OpenSource licenses available.</td>
          </tr>
        </table>
      </subsection>

      <subsection name="JBuilder">

        <p>Embarcadero JBuilder comes (as Eclipse based product) with built-in Ant support.</p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Bundles Ant 1.6</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://www.codegear.com/en/products/jbuilder">http://www.codegear.com/en/products/jbuilder</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="http://support.codegear.com/en">http://support.codegear.com/en</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>Commercial; Turbo JBuilder 2007 is free.</td>
          </tr>
        </table>
      </subsection>

      <subsection name="JDEE">

        <p>The Java Development Environment for Emacs (JDEE) supports
        Apache Ant as one of three built-in ways to build your
        applications.</p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.2 and later</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://jdee.sourceforge.net/">http://jdee.sourceforge.net/</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="http://jdee.sourceforge.net/developerscorner.html#MailingLists">JDEE Mailing list.</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>GNU General Public License</td>
          </tr>
        </table>
      </subsection>

      <subsection name="NetBeans">

        <p>NetBeans IDE includes integrated Ant support.
        This IDE uses Ant as its primary means of building applications,
        with custom tasks and an Ant-aware editor.</p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>bundles 1.8.0 starting with NetBeans 6.9</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://www.netbeans.org/">http://www.netbeans.org/</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="mailto:nbdev@netbeans.org">nbdev@netbeans.org</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>Common Development and Distribution License / GNU General Public License</td>
          </tr>
        </table>
      </subsection>

      <subsection name="Optistic IDX Java IDE">
        <p>Java IDE with deep Ant integration. IDX is a native Microsoft Windows program.</p>
        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>bundles Ant 1.6</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td>
              <a href="http://www.optistic.com/idx">http://optistic.com/idx</a>
            </td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td>
              <a href="mailto:support@optistic.com">support@optistic.com</a>
            </td>
          </tr>
          <tr>
            <th>License:</th>
            <td>Commercial; Academic and OpenSource licenses available.</td>
          </tr>
        </table>
      </subsection>

      <subsection name="Oracle JDeveloper 10i">

        <p>Java IDE with support for Ant.</p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.5.1</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://www.oracle.com/technology/products/jdev/index.html">http://www.oracle.com/technology/products/jdev/index.html</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="http://forums.oracle.com/forums/forum.jspa?forumID=83">JDeveloper Forum</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>Commercial</td>
          </tr>
        </table>
      </subsection>

      <subsection name="Virtual Ant">
        <p>
          Instead of manually creating build scripts in XML, Virtual Ant provides a fully virtual file system
          where you can run your tasks in real time and see the results. Everything that you do is recorded and
          turned into an Ant build script.
        </p>
        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>
              Ant 1.6.5 onwards
            </td>
          </tr>
          <tr>
            <th>URL:</th>
            <td>
              <a href="http://www.placidsystems.com/virtualant/">http://www.placidsystems.com/virtualant/</a>
            </td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td>
              <a href="mailto:support@placidsystems.com">support@placidsystems.com</a>
            </td>
          </tr>
          <tr>
            <th>License:</th>
            <td>Commercial; OpenSource licenses available too.</td>
          </tr>
        </table>
      </subsection>

      <subsection name="WebSphere Studio Application Developer">

        <p>WSAD features Ant integrate by virtue of being built on the Eclipse tools platform.</p>

        <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>bundles Ant 1.4.1</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td>
            <a href="http://www.ibm.com/developerworks/websphere/">http://www.ibm.com/developerworks/websphere/</a>
            </td>
          </tr>
          <tr>
            <th>Article:</th>
            <td>Using Ant with WebSphere Studio Application Developer<ul>
              <li><a href="http://www-128.ibm.com/developerworks/websphere/library/techarticles/0203_searle/searle1.html">Part 1</a></li>
              <li><a href="http://www-128.ibm.com/developerworks/websphere/library/techarticles/0203_searle/searle2.html">Part 2</a></li>
              <li><a href="http://www-128.ibm.com/developerworks/websphere/library/techarticles/0203_searle/searle3.html">Part 3</a></li>
            </ul></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>Commercial</td>
          </tr>
        </table>
      </subsection>

    </section>



    <section name="Source Control Systems">
      <p>There are several integration with SCM systems. Some are
      <a href="manual/tasksoverview.html#scm">built in</a>. But some are available as
      external libraries. Here a list of task libraries we are aware of:</p>

      <subsection name="ANT4HG">

         <p>These are tasks that allow users to access Mercurial
         functionality from within Ant build scripts.</p>

         <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.7 and later</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://ant4hg.free.fr">http://ant4hg.free.fr</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="mailto:ant4hg@free.fr">ant4hg@free.fr</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>GNU Lesser General Public License</td>
          </tr>
        </table>
      </subsection>

      <subsection name="clearAntLib">

         <p>This library is a collection of "value-add" Ant tasks for integrating 
         IBM Rational ClearCase with Apache Ant. The integration makes full use 
         of the power and capabilities of Ant, with support for nested elements 
         (such as filesets) and also supports conditions. There are a number of 
         tasks for creating XML reports on both ClearCase baselines and labels as 
         well as a task for "staging" ClearCase objects.</p>

         <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.6.1 and later</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://clearantlib.sourceforge.net/">
            http://clearantlib.sourceforge.net/</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="http://sourceforge.net/forum/?group_id=123764">Forum</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>Apache License 2.0</td>
          </tr>
        </table>
      </subsection>

      <subsection name="Surround SCM">

         <p>These are tasks that allow users to access Surround SCM
         functionality from within Ant build scripts.</p>

         <table class="externals">
          <tr>
            <th>Compatibility:</th>
            <td>Ant 1.5 and later</td>
          </tr>
          <tr>
            <th>URL:</th>
            <td><a href="http://www.seapine.com/scmresources.php#integration">
            Surround SCM Resource Center</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="mailto:support@seapine.com">Seapine Support</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td>GNU Lesser General Public License</td>
          </tr>
        </table>
      </subsection>

      <subsection name="SvnAnt">

         <p>SvnAnt is an ant task that provides an interface to Subversion revision control system
         that is a compelling replacement for CVS in the open source community.</p>

         <table class="externals">
          <tr>
            <th>URL:</th>
            <td><a href="http://subclipse.tigris.org/svnant.html">
             Subclipse .: :. SvnAnt .: :. SvnClientAdapter</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="http://subclipse.tigris.org/servlets/ProjectProcess?pageID=t65B1R">subclipse: Issues and Help</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td><a href="http://www.eclipse.org/legal/epl-v10.html">Eclipse Public License (EPL) 1.0</a></td>
          </tr>
        </table>
      </subsection>

     <subsection name="Svn4Ant">

         <p>JWare/AntXtras Svn4Ant (Svn4Ant) is a complete set of native Ant tasks for managing Subversion working copies, 
         exported directories, and repositories from a build, test, or deployment environment. 
         Immodestly, Svn4Ant’s goal is to be the best provider of Subversion Ant components.</p>

         <table class="externals">
          <tr>
            <th>URL:</th>
            <td><a href="http://jwaresoftware.org/wiki/svn4ant/home">
             Svn4Ant</a></td>
          </tr>
          <tr>
            <th>Contact:</th>
            <td><a href="http://jwaresoftware.org/wiki/general/support">Support - JWare Free Software</a></td>
          </tr>
          <tr>
            <th>License:</th>
            <td><a href="http://jwaresoftware.org/wiki-include/svn4ant/latest/LICENSE.txt">LGPL 2.1</a></td>
          </tr>
        </table>
      </subsection>

    </section>

  </body>
</document>