Skip to main content
summaryrefslogtreecommitdiffstats
blob: 5aac62968858c2a4be2c0fe41b6f64405fa158b7 (plain) (blame)
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
<?xml version="1.0" encoding="UTF-8"?>
<!-- The structure of the news items are
    
    <news>
    <item title="" date="YYYY-MM-DDThh:mm:ss">
    News content
    </item>*
    </news>
    
    Add your item to the top of the list.  Do not delete or move any items.  We generate permalinks by inverse file position.
    Please post in UTC.  The correct current time can be found at: http://www.time.gov/timezone.cgi?UTC/s/0/java
    All links must be absolute!  If you do not specify a link, a link to your entry on the Web Tools News page will be
    generated for you.

    For announcements about releases, the release page is used because the download site will change after archival.
-->
<news>
	<item date="2019-09-19T14:14:59" title="WTP 3.15 Released!"
		link="http://eclipse.org/webtools/releases/3.15">
		The Eclipse Web Tools Platform 3.15 has been released!
		<a href="https://wiki.eclipse.org/WTP_FAQ#How_do_I_install_WTP.3F">Installation</a>
		and updates can be performed using the
		Eclipse IDE 2019-09
		<a href="http://download.eclipse.org/releases/2019-09/">Update Site</a>
		or through the
		<a href="https://marketplace.eclipse.org/user/nitind/listings">Eclipse Marketplace</a>
		.
		Release 3.15 is included in the 2019-09
		<a
			href="https://www.eclipse.org/downloads/packages/release/2019-09/r/eclipse-ide-enterprise-java-developers">
			Eclipse IDE for Enterprise Java Developers
		</a>
		, with selected portions also included in several
		<a href="http://www.eclipse.org/downloads/compare.php">other packages</a>
		. Adopters can download
		<a href="http://download.eclipse.org/webtools/downloads/">the R3.15 build</a>
		directly and combine it with the necessary dependencies.</item>
	<item date="2019-06-19T15:14:59" title="WTP 3.14 Released!"
		link="http://eclipse.org/webtools/releases/3.14">
		The Eclipse Web Tools Platform 3.14 has been released!
		<a href="https://wiki.eclipse.org/WTP_FAQ#How_do_I_install_WTP.3F">Installation</a>
		and updates can be performed using the
		Eclipse IDE 2019-06
		<a href="http://download.eclipse.org/releases/2019-06/">Update Site</a>
		or through the
		<a href="https://marketplace.eclipse.org/user/nitind/listings">Eclipse Marketplace</a>
		.
		Release 3.14 is included in the 2019-06
		<a
			href="https://www.eclipse.org/downloads/packages/release/2019-06/r/eclipse-ide-enterprise-java-developers">
			Eclipse IDE for Enterprise Java Developers
		</a>
		, with selected portions also included in several
		<a href="http://www.eclipse.org/downloads/compare.php">other packages</a>
		. Adopters can download
		<a href="http://download.eclipse.org/webtools/downloads/">the R3.15 update site itself</a>
		directly and combine it with the necessary dependencies.</item>
	<item date="2019-03-20T23:35:00" title="WTP 3.13 Released!"
		link="http://eclipse.org/webtools/releases/3.13">
		The Eclipse Web Tools Platform 3.13 has been released!
		<a href="https://wiki.eclipse.org/WTP_FAQ#How_do_I_install_WTP.3F">Installation</a>
		and updates can be performed using the
		Eclipse IDE 2019-03
		<a href="http://download.eclipse.org/releases/2019-03/">Update Site</a>
		or through the
		<a href="https://marketplace.eclipse.org/user/nitind/listings">Eclipse Marketplace</a>
		.
		Release 3.13 is included in the 2019-03
		<a
			href="https://www.eclipse.org/downloads/packages/release/2019-03/r/eclipse-ide-enterprise-java-developers">
			Eclipse IDE for Enterprise Java Developers
		</a> and <a
			href="https://www.eclipse.org/downloads/packages/release/2019-03/r/eclipse-ide-javascript-and-web-developers">Eclipse IDE for JavaScript and Web Developers</a>
		, with selected portions also included in 8
		<a href="http://www.eclipse.org/downloads/compare.php">other packages</a>
		. Adopters can download
		<a href="http://download.eclipse.org/webtools/downloads/">the R3.13 update site itself</a>
		directly and combine it with the necessary dependencies.</item>
  <item
          date="2018-12-20T21:01:00"
          title="WTP 3.12 Released!"
          link="http://eclipse.org/webtools/releases/3.12">
      The Eclipse Web Tools Platform 3.12 has been released!  <a href="https://wiki.eclipse.org/WTP_FAQ#How_do_I_install_WTP.3F">Installation</a> and update can be performed using the
      <a href="http://download.eclipse.org/releases/2018-12/">SimRel 2018-12 Update Site</a> or through the <a href="https://marketplace.eclipse.org/user/nitind/listings">Eclipse Marketplace</a>.
      Release 3.12 is included in the 2018-12
          <a
              href="https://www.eclipse.org/downloads/packages/release/2018-12/r/eclipse-ide-enterprise-java-developers"
          >Eclipse IDE for Enterprise Java Developers</a> and <a href="https://www.eclipse.org/downloads/packages/release/2018-12/r/eclipse-ide-javascript-and-web-developers">Eclipse IDE for JavaScript and Web Developers</a>, with selected portions also included in <a href="http://www.eclipse.org/downloads/compare.php">other packages</a>.  Adopters can download <a href="http://download.eclipse.org/webtools/downloads/">the R3.12 built update site itself</a> directly.</item>
  <item
          date="2018-09-20T21:01:00"
          title="WTP 3.11 Released!"
          link="http://eclipse.org/webtools/releases/3.11">
      The Eclipse Web Tools Platform 3.11 has been released!  <a href="https://wiki.eclipse.org/WTP_FAQ#How_do_I_install_WTP.3F">Installation</a> and update can be performed using the
      <a href="http://download.eclipse.org/releases/2018-09/">SimRel 2018-09 Update Site</a> or through the <a href="https://marketplace.eclipse.org/user/nitind/listings">Eclipse Marketplace</a>.
      Release 3.11 is included in the 2018-09
          <a
              href="https://www.eclipse.org/downloads/packages/release/2018-09/r/eclipse-ide-java-ee-developers"
          >Eclipse IDE for Java EE Developers</a> and <a href="https://www.eclipse.org/downloads/packages/release/2018-09/r/eclipse-ide-javascript-and-web-developers">Eclipse IDE for JavaScript and Web Developers</a>, with selected portions also included in <a href="http://www.eclipse.org/downloads/compare.php">other packages</a>.  Adopters can download <a href="http://download.eclipse.org/webtools/downloads/">the R3.11 build itself</a> directly.</item>
  <item
          date="2018-06-27T10:00:00"
          title="WTP 3.10 Released!"
          link="http://eclipse.org/webtools/releases/3.10">
      Web Tools Platform 3.10 has been released!  <a href="https://wiki.eclipse.org/WTP_FAQ#How_do_I_install_WTP.3F">Installation</a> and update can be performed using the
      <a href="http://download.eclipse.org/releases/photon/">Photon Update Site</a> or through the <a href="https://marketplace.eclipse.org/user/nitind/listings">Eclipse Marketplace</a>.
      Release 3.10 is included in the Photon
          <a
              href="https://www.eclipse.org/downloads/packages/eclipse-ide-java-ee-developers/photonr"
          >Eclipse IDE for Java EE Developers</a> and <a href="https://www.eclipse.org/downloads/packages/eclipse-ide-javascript-and-web-developers/photonr">Eclipse IDE for JavaScript and Web Developers</a>, with selected portions also included in <a href="http://www.eclipse.org/downloads/compare.php">other packages</a>.  Adopters can download <a href="http://download.eclipse.org/webtools/downloads/">the R3.10 build itself</a> directly.</item>
  <item
          date="2018-04-15T10:00:00"
          title="WTP 3.9.5 Released!"
          link="http://eclipse.org/webtools/releases/3.9.5">
      Web Tools Platform 3.9.5 has been released!  <a href="https://wiki.eclipse.org/WTP_FAQ#How_do_I_install_WTP.3F">Installation</a> and update can be performed using the 
      <a href="http://download.eclipse.org/releases/oxygen/">Oxygen Update Site</a> or through the <a href="https://marketplace.eclipse.org/user/nitind/listings">Eclipse Marketplace</a>.
      Release 3.9.5 <a href="https://www.eclipse.org/webtools/releases/3.9.5/">fixes</a> issues that occur in prior releases or have been reported since 3.9's release. WTP 3.9.5 is NOT included in Oxygen.3a
          <a
              href="https://www.eclipse.org/downloads/packages/eclipse-ide-java-ee-developers/oxygen3a"
          >Eclipse IDE for Java EE Developers</a>, with selected portions also included in <a href="http://www.eclipse.org/downloads/compare.php">other packages</a>.  Adopters can download <a href="http://download.eclipse.org/webtools/downloads/">the R3.9.5 build itself</a> directly.</item>
  <item
          date="2018-04-11T10:00:00"
          title="WTP 3.9.4 Released!"
          link="http://eclipse.org/webtools/releases/3.9.4">
      Web Tools Platform 3.9.4 has been released!  <a href="https://wiki.eclipse.org/WTP_FAQ#How_do_I_install_WTP.3F">Installation</a> and update can be performed using the 
      <a href="http://download.eclipse.org/releases/oxygen/">Oxygen Update Site</a> or through the <a href="https://marketplace.eclipse.org/user/nitind/listings">Eclipse Marketplace</a>.
      Release 3.9.4 <a href="https://www.eclipse.org/webtools/releases/3.9.4/">fixes</a> issues that occur in prior releases or have been reported since 3.9's release. WTP 3.9.4 is included in Oxygen.3a
          <a
              href="https://www.eclipse.org/downloads/packages/eclipse-ide-java-ee-developers/oxygen3a"
          >Eclipse IDE for Java EE Developers</a>, with selected portions also included in <a href="http://www.eclipse.org/downloads/compare.php">other packages</a>.  Adopters can download <a href="http://download.eclipse.org/webtools/downloads/">the R3.9.4 build itself</a> directly.</item>

  <item
          date="2018-03-22T23:27:00"
          title="WTP 3.9.3 Released!"
          link="http://eclipse.org/webtools/releases/3.9.3">
      Web Tools Platform 3.9.3 has been released!  <a href="https://wiki.eclipse.org/WTP_FAQ#How_do_I_install_WTP.3F">Installation</a> and update can be performed using the 
      <a href="http://download.eclipse.org/releases/oxygen/">Oxygen Update Site</a> or through the <a href="https://marketplace.eclipse.org/user/nitind/listings">Eclipse Marketplace</a>.
      Release 3.9.3 <a href="https://www.eclipse.org/webtools/releases/3.9.3/">fixes</a> issues that occur in prior releases or have been reported since 3.9's release. WTP 3.9.3 is featured in the Oxygen.3
          <a
              href="https://www.eclipse.org/downloads/packages/eclipse-ide-java-ee-developers/oxygen3"
          >Eclipse IDE for Java EE Developers</a>, with selected portions also included in <a href="http://www.eclipse.org/downloads/compare.php">other packages</a>.  Adopters can download <a href="http://download.eclipse.org/webtools/downloads/">the R3.9.3 build itself</a> directly.
       WTP 3.9.4 is planned for mid-April, as part of Oxygen.3a and its support for this week's GA release of Java 10.</item>
  <item
          date="2018-03-22T23:27:00"
          title="WTP 3.9.3 Released!"
          link="http://eclipse.org/webtools/releases/3.9.3">
      Web Tools Platform 3.9.3 has been released!  <a href="https://wiki.eclipse.org/WTP_FAQ#How_do_I_install_WTP.3F">Installation</a> and update can be performed using the 
      <a href="http://download.eclipse.org/releases/oxygen/">Oxygen Update Site</a> or through the <a href="https://marketplace.eclipse.org/user/nitind/listings">Eclipse Marketplace</a>.
      Release 3.9.3 <a href="https://www.eclipse.org/webtools/releases/3.9.3/">fixes</a> issues that occur in prior releases or have been reported since 3.9's release. WTP 3.9.3 is featured in the Oxygen.3
          <a
              href="https://www.eclipse.org/downloads/packages/eclipse-ide-java-ee-developers/oxygen3"
          >Eclipse IDE for Java EE Developers</a>, with selected portions also included in <a href="http://www.eclipse.org/downloads/compare.php">other packages</a>.  Adopters can download <a href="http://download.eclipse.org/webtools/downloads/">the R3.9.3 build itself</a> directly.
       WTP 3.9.4 is planned for mid-April, as part of Oxygen.3a and its support for this week's GA release of Java 10.</item>
  <item
          date="2017-12-20T20:01:00"
          title="WTP 3.9.2 Released!"
          link="http://eclipse.org/webtools/releases/3.9.2">
      Web Tools Platform 3.9.2 has been released!  <a href="https://wiki.eclipse.org/WTP_FAQ#How_do_I_install_WTP.3F">Installation</a> and update can be performed using the 
      <a href="http://download.eclipse.org/releases/oxygen/">Oxygen Update Site</a> or through the <a href="https://marketplace.eclipse.org/user/nitind/listings">Eclipse Marketplace</a>.
      Release 3.9.2 <a href="https://www.eclipse.org/webtools/releases/3.9.2/">fixes</a> issues that occur in prior releases or have been reported since 3.9's release. WTP 3.9.2 is featured in the Oxygen.2
          <a
              href="https://www.eclipse.org/downloads/packages/eclipse-ide-java-ee-developers/oxygen2"
          >Eclipse IDE for Java EE Developers</a>, with selected portions also included in <a href="http://www.eclipse.org/downloads/compare.php">other packages</a>.  Adopters can download <a href="http://download.eclipse.org/webtools/downloads/">the build itself</a> directly.
       WTP 3.9.3 is planned for late March, as part of Oxygen.3.</item>
  <item
          date="2017-09-27T10:01:00"
          title="WTP 3.9.1 Released!"
          link="http://eclipse.org/webtools/releases/3.9.1">
      The Web Tools Platform's 3.9.1 Release is now available!  <a href="https://wiki.eclipse.org/WTP_FAQ#How_do_I_install_WTP.3F">Installation</a> and update can be performed using the Oxygen Update Site at
      <a href="http://download.eclipse.org/releases/oxygen/">http://download.eclipse.org/releases/oxygen/</a>.  Release 3.9.1 <a href="https://www.eclipse.org/webtools/releases/3.9.1/">fixes</a> issues that occur in prior releases or have been reported since 3.9's release.
      WTP 3.9.1 is featured in the Oxygen.1
          <a
              href="https://www.eclipse.org/downloads/packages/eclipse-ide-java-ee-developers/oxygen1a"
          >Eclipse IDE for Java EE Developers</a>, with selected portions also included in <a href="http://www.eclipse.org/downloads/compare.php">other packages</a>.  Adopters can download <a href="http://download.eclipse.org/webtools/downloads/">the build itself</a> directly.
      </item>
<item
        date="2017-06-28T19:00:00"
        title="WTP 3.9 Released!"
        link="http://eclipse.org/webtools/releases/3.9.0">
    The Web Tools Platform's 3.9 Release is now available!  <a href="https://wiki.eclipse.org/WTP_FAQ#How_do_I_install_WTP.3F">Installation</a> and update can be performed using the Oxygen Update Site at
    <a href="http://download.eclipse.org/releases/oxygen/">http://download.eclipse.org/releases/oxygen/</a>, or the <a href="#permalink175">Eclipse Marketplace</a>.  Release 3.9.0 <a href="https://www.eclipse.org/webtools/releases/3.9.0/">fixes</a> issues that occur in prior releases or have been reported since 3.8.2's release.
    WTP 3.9 is featured in the Oxygen
        <a
            href="http://www.eclipse.org/downloads/packages/eclipse-ide-java-ee-developers/oxygenr"
        >Eclipse IDE for Java EE Developers</a> and <a href="https://www.eclipse.org/downloads/packages/eclipse-ide-javascript-and-web-developers/oxygenr">Eclipse IDE for JavaScript and Web Developers</a>, with selected features also included in <a href="http://www.eclipse.org/downloads/compare.php">other packages</a>.  Adopters can download <a href="http://download.eclipse.org/webtools/downloads/">the build itself</a> directly.
</item>
<item
        date="2017-03-28T15:01:00"
        title="WTP 3.8.2 Released!"
        link="http://eclipse.org/webtools/releases/3.8.2">
    The Web Tools Platform's 3.8.2 Release is now available!  <a href="https://wiki.eclipse.org/WTP_FAQ#How_do_I_install_WTP.3F">Installation</a> and update can be performed using the Neon Update Site at
    <a href="http://download.eclipse.org/releases/neon/">http://download.eclipse.org/releases/neon/</a>, or the <a href="#permalink175">Eclipse Marketplace</a>.  Release 3.8.2 <a href="https://www.eclipse.org/webtools/releases/3.8.2/">fixes</a> issues that occur in prior releases or have been reported since 3.8.1's release.
    WTP 3.8.2 is featured in the Neon.3
        <a
            href="https://www.eclipse.org/downloads/packages/eclipse-ide-java-ee-developers/neon3"
        >Eclipse IDE for Java EE Developers</a>, with selected features also included in <a href="http://www.eclipse.org/downloads/compare.php">other packages</a>.  Adopters can download <a href="http://download.eclipse.org/webtools/downloads/">the build itself</a> directly.
</item>
<item
        date="2016-09-29T16:00:00"
        title="The Web Tools Platform project is officially in the Eclipse Marketplace"
        link="https://marketplace.eclipse.org/content/eclipse-java-ee-developer-tools-0">
 The Web Tools Platform can now be installed using the
 <a href="http://marketplace.eclipse.org/">Eclipse Marketplace</a>
 . Selections are offered for the full
 <a
				href="https://marketplace.eclipse.org/content/eclipse-java-ee-developer-tools-0">Java EE</a>
			tools, just the tools for 
			<a
				href="https://marketplace.eclipse.org/content/eclipse-web-developer-tools-0">Open Web Standards</a>, and for those seeking XML
			<a
				href="https://marketplace.eclipse.org/content/eclipse-xml-editors-and-tools-0">Editors and tools</a>
			.<br/><br/>
			Although installation has been tested on Juno and newer, at the time of this writing, Neon.1 remains the supported version, and anyone still on an older release is encouraged to upgrade to it and the latest supported Java Runtime.
</item>
<item
        date="2016-09-28T10:01:00"
        title="WTP 3.8.1 Released!"
        link="http://eclipse.org/webtools/releases/3.8.1">
    The Web Tools Platform's 3.8.1 Release is now available!  <a href="https://wiki.eclipse.org/WTP_FAQ#How_do_I_install_WTP.3F">Installation</a> and update can be performed using the Neon Update Site at
    <a href="http://download.eclipse.org/releases/neon/">http://download.eclipse.org/releases/neon/</a>.  Release 3.8.1 <a href="https://www.eclipse.org/webtools/releases/3.8.1/">fixes</a> issues that occur in prior releases or have been reported since 3.8's release.
    WTP 3.8.1 is featured in the Neon.1
        <a
            href="https://www.eclipse.org/downloads/packages/eclipse-ide-java-ee-developers/neon1"
        >Eclipse IDE for Java EE Developers</a>, with selected portions also included in <a href="http://www.eclipse.org/downloads/compare.php">other packages</a>.  Adopters can download <a href="http://download.eclipse.org/webtools/downloads/">the build itself</a> directly.
    </item>
<item
        date="2016-06-22T15:14:30"
        title="WTP 3.8 Released!"
        link="http://eclipse.org/webtools/releases/3.8.0/">
        The Eclipse Web Tools Platform 3.8 (Neon) has been released!  Featured in the
        <a
            href="http://eclipse.org/downloads/packages/eclipse-ide-java-ee-developers/neonr"
        >Eclipse IDE for Java EE Developers</a>,
        you'll also find parts of WTP in many of the
        <a href="http://www.eclipse.org/downloads/packages/release/Neon/R">Neon packages</a>. Of course you can still download the raw
        <a href="http://download.eclipse.org/webtools/downloads/drops/R3.8.0/R-3.8.0-20160608130753/">WTP 3.8 build</a> manually--don't forget the dependencies if you do.
        Anyone with a working Eclipse 4.6, or Neon package, can
        <a
            href="https://wiki.eclipse.org/WTP_FAQ#How_do_I_install_WTP.3F"
        >install WTP</a>
        by working with the
        <a href="http://download.eclipse.org/releases/neon/">Neon</a> and corresponding <a href="http://download.eclipse.org/webtools/repository/neon/">WTP</a> Update
            Sites.
    </item>
<item
        date="2016-02-26T10:00:00"
        title="WTP 3.7.2 Released!">
    The Web Tools Platform's 3.7.2 Release is now available!  <a href="https://wiki.eclipse.org/WTP_FAQ#How_do_I_install_WTP.3F">Installation</a> and update can be performed using the Mars Update Site at
    <a href="http://download.eclipse.org/releases/mars/">http://download.eclipse.org/releases/mars/</a>.  Release 3.7.2 fixes issues that occur in prior releases or have been reported since 3.7's release.
    WTP 3.7.2 is featured in the Mars.2
        <a
            href="https://www.eclipse.org/downloads/packages/eclipse-ide-java-ee-developers/mars2"
        >Eclipse IDE for Java EE Developers</a>, with selected portions also included in <a href="http://www.eclipse.org/downloads/compare.php">other packages</a>.  Adopters can download <a href="http://download.eclipse.org/webtools/downloads/">the build itself</a> directly.
    </item>
<item
        date="2015-10-02T10:00:00"
        title="WTP 3.7.1 Released!">
    The Web Tools Platform's 3.7.1 Release is now available!  <a href="https://wiki.eclipse.org/WTP_FAQ#How_do_I_install_WTP.3F">Installation</a> and update can be performed using the Mars Update Site at
    <a href="http://download.eclipse.org/releases/mars/">http://download.eclipse.org/releases/mars/</a>.  Release 3.7.1 fixes issues that occur in prior releases or have been reported since 3.7's release.
    WTP 3.7.1 is featured in the Mars.1
        <a
            href="https://www.eclipse.org/downloads/packages/eclipse-ide-java-ee-developers/mars1"
        >Eclipse IDE for Java EE Developers</a>, with selected portions also included in <a href="http://www.eclipse.org/downloads/compare.php">other packages</a>.  Adopters can download <a href="http://download.eclipse.org/webtools/downloads/">the build itself</a> directly.
    </item>
<item
        date="2015-06-24T15:14:00"
        title="WTP 3.7 Released!"
        link="http://eclipse.org/webtools/releases/3.7.0/">
        The Eclipse Web Tools Platform 3.7 (Mars) has been released!  Featured in the
        <a
            href="http://eclipse.org/downloads/packages/eclipse-ide-java-ee-developers/marsr"
        >Eclipse IDE for Java EE Developers</a>,
        you'll also find parts of WTP in many of the
        <a href="http://www.eclipse.org/mars/">Mars packages</a>. Of course you can still download the raw
        <a href="http://download.eclipse.org/webtools/downloads/drops/R3.7.0/R-3.7.0-20150609111814/">WTP 3.7 build</a> manually--don't forget the dependencies if you do.
        Anyone with a working Eclipse 4.5, or Mars package, can
        <a
            href="https://wiki.eclipse.org/WTP_FAQ#How_do_I_install_WTP.3F"
        >install WTP</a>
        by working with the
        <a href="http://download.eclipse.org/releases/mars/">Mars</a> and corresponding <a href="http://download.eclipse.org/webtools/repository/mars/">WTP</a> Update
            Sites.
    </item>
<item
        date="2015-02-27T15:05:02"
        title="WTP 3.6.3 Released!">
    The Web Tools Platform's 3.6.3 Release is now available!  <a href="https://wiki.eclipse.org/WTP_FAQ#How_do_I_install_WTP.3F">Installation</a> and update can be performed using the Luna Update Site at
    <a href="http://download.eclipse.org/releases/luna/">http://download.eclipse.org/releases/luna/</a>.  Releases 3.6.3, 3.6.2 and 3.6.1 fix issues that occur in prior releases or have been reported since 3.6's release.
    WTP 3.6.3 is featured in the Luna SR2
        <a
            href="https://www.eclipse.org/downloads/packages/eclipse-ide-java-ee-developers/lunasr2"
        >Eclipse IDE for Java EE Developers</a>, with selected portions also included in <a href="http://www.eclipse.org/downloads/compare.php">other packages</a>.  Adopters can download <a href="http://download.eclipse.org/webtools/downloads/">the build itself</a> directly.
    </item>
<item
        date="2014-11-03T10:50:02"
        title="WTP 3.6.2 Released!">
    The Web Tools Platform's 3.6.2 Release is now available!  <a href="https://wiki.eclipse.org/WTP_FAQ#How_do_I_install_WTP.3F">Installation</a> and update can be performed using the WTP Update Site at
    <a href="http://download.eclipse.org/webtools/repository/luna/">http://download.eclipse.org/webtools/repository/luna/</a>.  Releases 3.6.2 and 3.6.1 fix issues that occur in prior releases or have been reported since 3.6's release.
    WTP 3.6.2 can be obtained by using the Luna SR1
        <a
            href="https://www.eclipse.org/downloads/packages/eclipse-ide-java-ee-developers/lunasr1"
        >Eclipse IDE for Java EE Developers</a>, selecting "Help" -> "Check for Updates" will update with latest fixes. Adopters can also download <a href="http://download.eclipse.org/webtools/downloads/drops/R3.6.2/R-3.6.2-20141030155022/">the build itself</a> directly.
    </item>
<item
        date="2014-06-25T14:27:00"
        title="WTP 3.6 Released!"
        link="http://eclipse.org/webtools/releases/3.6.0/">
        The Eclipse Web Tools Platform's 3.6 (Luna) release is now available!  It is featured in the
        <a
            href="http://eclipse.org/downloads/packages/eclipse-ide-java-ee-developers/lunar"
        >Eclipse IDE for Java EE Developers</a>.  For a full listing of what's new in
        this release, check out the
        <a href="http://www.eclipse.org/webtools/releases/3.6.0/NewAndNoteworthy/index.php">New and Noteworthy</a>.
        You'll also find parts of WTP in many of the
        <a href="http://www.eclipse.org/luna/">Luna packages</a>, and you can still download
        <a href="http://download.eclipse.org/webtools/downloads/drops/R3.6.0/R-3.6.0-20140602160322/">Luna WTP build
            </a> manually (don't forget the dependencies if you do)
        or 
        <a
            href="http://help.eclipse.org/luna/topic/org.eclipse.platform.doc.user/tasks/tasks-124.htm"
        >install just the features you want </a>
        by working with the
        <a href="http://download.eclipse.org/releases/luna/">Luna Update
            Site</a>.
    </item>
	<item
        date="2014-02-28T15:05:02"
        title="WTP 3.5.2 Released!"
        link="http://eclipse.org/webtools/releases/3.5.2/">
    The Web Tools Platform's 3.5.2 Release is now available!  <a href="https://wiki.eclipse.org/WTP_FAQ#How_do_I_install_WTP.3F">Installation</a> and update can be performed using the Kepler Update Site at
    <a href="http://download.eclipse.org/releases/kepler/">http://download.eclipse.org/releases/kepler/</a>.  Releases 3.5.2 and 3.5.1 fix issues that occur in prior releases or have been reported since 3.5's release.
    WTP 3.5.2 is featured in the Kepler SR2
        <a
            href="http://www.eclipse.org/downloads/packages/node/1081"
        >Eclipse IDE for Java EE Developers</a>, with selected portions also included in <a href="http://www.eclipse.org/downloads/compare.php">other packages</a>.  Adopters can download <a href="http://download.eclipse.org/webtools/downloads/">the build itself</a> directly.
    </item>
    <item
        date="2013-09-27T15:25:02"
        title="WTP 3.5.1 Released!"
        link="http://eclipse.org/webtools/releases/3.5.1/">
    The Web Tools Platform's 3.5.1 Release is now available!  <a href="https://wiki.eclipse.org/WTP_FAQ#How_do_I_install_WTP.3F">Installation</a> and update can be performed using the Kepler Update Site at
    <a href="http://download.eclipse.org/releases/kepler/">http://download.eclipse.org/releases/kepler/</a>.  Release 3.5.1 fixes issues that occur in 3.5 or have been reported since its release.
    WTP 3.5.1 is featured in the Kepler SR1
        <a
            href="http://www.eclipse.org/downloads/packages/node/1081"
        >Eclipse IDE for Java EE Developers</a>, with selected portions also included in <a href="http://www.eclipse.org/downloads/compare.php">other packages</a>.  Adopters can download <a href="http://download.eclipse.org/webtools/downloads/">the build itself</a> directly.
    </item>
    <item
        date="2013-06-26T14:27:00"
        title="WTP 3.5 Released!"
        link="http://eclipse.org/webtools/releases/3.5.0/">
        The Eclipse Web Tools Platform's 3.5 release is now available!  It is featured in the
        <a
            href="http://eclipse.org/downloads/packages/eclipse-ide-java-ee-developers/keplerr"
        >Eclipse IDE for Java EE Developers</a>.  For a full listing of what's new in
        this release, check out the
        <a href="http://www.eclipse.org/webtools/releases/3.5.0/NewAndNoteworthy/index.php">New and Noteworthy</a>.
        You'll also find parts of WTP in many of the
        <a href="http://www.eclipse.org/kepler/">Kepler packages</a>, and you can still download
        <a href="http://download.eclipse.org/webtools/downloads/">WTP builds
            </a> manually (don't forget the dependencies if you do)
        or 
        <a
            href="http://help.eclipse.org/kepler/topic/org.eclipse.platform.doc.user/tasks/tasks-124.htm"
        >install just the features you want </a>
        by working with the
        <a href="http://download.eclipse.org/releases/kepler/">Kepler Update
            Site</a>.
    </item>
    <item
        date="2013-03-01T15:18:01"
        title="WTP 3.4.2 Released!"
        link="http://eclipse.org/webtools/releases/3.4.2/">
    The Web Tools Platform's 3.4.2 Release is now available!  Installation and update can be performed using the Juno repository at
    <a href="http://download.eclipse.org/releases/juno/">http://download.eclipse.org/releases/juno/</a>.  Release 3.4.2 fixes issues that occur in 3.4 and 3.4.1 or have been reported since their release, and coincides with many performance fixes made in the Eclipse Platform.
    WTP 3.4.2 is featured in Juno SR2's 
        <a
            href="http://eclipse.org/downloads/packages/eclipse-ide-java-ee-developers/junosr2"
        >Eclipse IDE for Java EE Developers</a>, with selected portions also included in <a href="http://www.eclipse.org/downloads/compare.php">other packages</a>.  Adopters can download <a href="http://download.eclipse.org/webtools/downloads/">the build itself</a> and release update site directly.  The next scheduled release will be for WTP 3.5, as part of this June's Kepler releases.
    </item>
    <item
        date="2012-09-28T15:04:01"
        title="WTP 3.4.1 Released!"
        link="http://eclipse.org/webtools/releases/3.4.1/">
    The Web Tools Platform's 3.4.1 Release is now available!  Installation and update can be performed using the Juno repository at
    <a href="http://download.eclipse.org/releases/juno/">http://download.eclipse.org/releases/juno/</a>.  Release 3.4.1 fixes issues that occur in 3.4 or have been reported since its release.
    WTP 3.4.1 is featured in the Juno SR1
        <a
            href="http://eclipse.org/downloads/packages/eclipse-ide-java-ee-developers/junosr1"
        >Eclipse IDE for Java EE Developers</a>, with selected portions also available in <a href="http://www.eclipse.org/downloads/compare.php">other packages</a>.  Adopters can download <a href="http://download.eclipse.org/webtools/downloads/">the build itself</a> directly.
    </item>
    <item
        date="2012-06-27T14:27:00"
        title="WTP 3.4 Released!"
        link="http://eclipse.org/webtools/releases/3.4.0/">
        The Eclipse Web Tools Platform's 3.4 release is now available!  It is featured in the
        <a
            href="http://eclipse.org/downloads/packages/eclipse-ide-java-ee-developers/junor"
        >Eclipse IDE for Java EE Developers</a>.  For a full listing of what's new in
        this release, check out the
        <a href="http://www.eclipse.org/webtools/releases/3.4.0/NewAndNoteworthy/index.php">New and Noteworthy</a>.
        You'll also find parts of WTP in many of the
        <a href="http://www.eclipse.org/juno/">Juno packages</a>, and you can still download
        <a href="http://download.eclipse.org/webtools/downloads/">WTP builds
            </a> manually
        or 
        <a
            href="http://help.eclipse.org/juno/topic/org.eclipse.platform.doc.user/tasks/tasks-124.htm"
        >install just the features you want </a>
        by working with the
        <a href="http://download.eclipse.org/releases/juno/">Juno Update
            Site</a>.
    </item>
    <item
        date="2012-05-08T19:27:00"
        title="WTP 3.4 M7 Declared!"
        link="http://download.eclipse.org/webtools/downloads/">
        The seventh milestone of WTP 3.4, our Juno release, is now available.
        <a href="http://download.eclipse.org/webtools/downloads/">Download</a>
        it now! Updated <a href="http://www.eclipse.org/downloads/index-developer.php">Juno Development packages</a> will be available soon.
    </item>
    <item
        date="2012-03-20T17:30:00"
        title="WTP 3.4 M6 Declared!"
        link="http://download.eclipse.org/webtools/downloads/">
        The sixth milestone of WTP 3.4, our Juno release, is now available. Check out what's
        <a href="http://www.eclipse.org/webtools/development/news/3.4M6/">New and Noteworthy</a>
        and
        <a href="http://download.eclipse.org/webtools/downloads/">download</a>
        it now! 
    </item>
    <item
        date="2012-02-24T15:04:01"
        title="WTP 3.3.2 Released!"
        link="http://eclipse.org/webtools/releases/3.3.2/">
    The Eclipse Web Tools Platform 3.3.2 is now released!  Installation and update can be performed using the Indigo repository at
    <a href="http://download.eclipse.org/releases/indigo/">http://download.eclipse.org/releases/indigo/</a>.  
    WTP 3.3.2 is part of <a href="http://download.eclipse.org/">Indigo SR2</a>.
        <a
            href="http://eclipse.org/downloads/packages/eclipse-ide-java-ee-developers/indigosr2"
        >Eclipse IDE for Java EE Developers</a> and <a
            href="http://eclipse.org/downloads/packages/eclipse-ide-javascript-web-developers/indigosr2"
        >Eclipse IDE for JavaScript Web Developers</a>, with selected portions also available in <a href="http://www.eclipse.org/downloads/compare.php">other packages</a>.  
    </item>
    <item
        date="2012-02-03T16:00:00"
        title="WTP 3.4 M5 Declared!"
        link="http://download.eclipse.org/webtools/downloads/">
        The fifth milestone of WTP 3.4, our Juno release, is now available. Check out what's
        <a href="http://www.eclipse.org/webtools/development/news/3.4M5/">New and Noteworthy</a>
        and
        <a href="http://download.eclipse.org/webtools/downloads/">download</a>
        it now!  
        Updated <a href="http://www.eclipse.org/downloads/index-developer.php">Juno Development packages</a> are also available, so get on it! 
    </item>
    <item
        date="2011-12-16T16:00:00"
        title="WTP 3.4 M4 Declared!"
        link="http://download.eclipse.org/webtools/downloads/">
        The fourth milestone of WTP 3.4, our Juno release, is now available for 
        <a href="http://download.eclipse.org/webtools/downloads/">download</a>.
        Updated <a href="http://www.eclipse.org/downloads/index-developer.php">Juno Development packages</a> are also available. 
    </item>
    <item
        date="2011-11-11T16:00:00"
        title="WTP 3.4 M3 Declared!"
        link="http://download.eclipse.org/webtools/downloads/">
        The third milestone of WTP 3.4, our Juno release, is now available. Check out what's
        <a href="http://www.eclipse.org/webtools/development/news/3.4M3/">New and Noteworthy</a>
        and
        <a href="http://download.eclipse.org/webtools/downloads/">download</a>
        it now!  
        Updated <a href="http://www.eclipse.org/downloads/index-developer.php">Juno Development packages</a> are also available. 
    </item>
    <item
        date="2011-09-30T16:00:00"
        title="WTP 3.4 M2 Declared!"
        link="http://download.eclipse.org/webtools/downloads/">
        The second milestone of WTP 3.4, our Juno release, is now available for 
        <a href="http://download.eclipse.org/webtools/downloads/">download</a>.
        Updated <a href="http://www.eclipse.org/downloads/index-developer.php">Juno Development packages</a> are also available.
    </item>
    <item
        date="2011-09-23T15:04:01"
        title="WTP 3.3.1 Released!"
        link="http://eclipse.org/webtools/releases/3.3.1/">
    It's here, the Web Tools Platform's 3.3.1 Release is now available!  Installation and update can be performed using the Indigo repository at
    <a href="http://download.eclipse.org/releases/indigo/">http://download.eclipse.org/releases/indigo/</a>.  Release 3.3.1 fixes close to one hundred issues that
    weren't correctable in time for 3.3.0, and also incorporates adopter-requested fixes made for our upcoming <a href="https://bugs.eclipse.org/bugs/report.cgi?x_axis_field=bug_severity&amp;y_axis_field=product&amp;z_axis_field=&amp;query_format=report-table&amp;classification=WebTools&amp;target_milestone=3.2.5&amp;bug_status=RESOLVED&amp;bug_status=VERIFIED&amp;bug_status=CLOSED&amp;resolution=FIXED&amp;format=table&amp;action=wrap">3.2.5</a> Release.
    WTP 3.3.1 is featured in the Indigo SR1
        <a
            href="http://eclipse.org/downloads/packages/eclipse-ide-java-ee-developers/indigosr1"
        >Eclipse IDE for Java EE Developers</a> and <a
            href="http://eclipse.org/downloads/packages/eclipse-ide-javascript-web-developers/indigosr1"
        >Eclipse IDE for JavaScript Web Developers</a>, with selected portions also available in <a href="http://www.eclipse.org/downloads/compare.php">other packages</a>.  
    </item>
    <item
        date="2011-08-19T16:00:00"
        title="WTP 3.4 M1 Declared!"
        link="http://download.eclipse.org/webtools/downloads/">
        The first milestone of WTP 3.4, our Juno release, is now available for 
        <a href="http://download.eclipse.org/webtools/downloads/">download</a>.
    </item>
    <item
        date="2011-06-22T14:01:00"
        title="WTP 3.3 Released!"
        link="http://eclipse.org/webtools/releases/3.3.0/">
        The Eclipse Web Tools Platform's 3.3 release is now available!  It is featured in the
        <a
            href="http://eclipse.org/downloads/packages/eclipse-ide-java-ee-developers/indigor"
        >Eclipse IDE for Java EE Developers</a> and <a
            href="http://eclipse.org/downloads/packages/eclipse-ide-javascript-web-developers/indigor"
        >Eclipse IDE for JavaScript Web Developers</a>.  For a full listing of what's new in
        this release, check out the
        <a href="http://www.eclipse.org/webtools/releases/3.3.0/NewAndNoteworthy/index.php">New and Noteworthy</a>.
        You'll also find parts of WTP in most of the
        <a href="http://www.eclipse.org/indigo/">Indigo packages</a>, and you can still download
        <a href="http://download.eclipse.org/webtools/downloads/">WTP builds
            </a> manually
        or 
        <a
            href="http://help.eclipse.org/indigo/topic/org.eclipse.platform.doc.user/tasks/tasks-124.htm"
        >install just the features you want </a>
        by working with the
        <a href="http://download.eclipse.org/releases/indigo/">Indigo update
            site</a>.
    </item>
    <item
        date="2011-05-20T15:04:01"
        title="WTP 3.2.4 Released!"
        link="http://eclipse.org/webtools/releases/3.2.4/">
    It's here, the Web Tools Platform's 3.2.4 release is now available!  Installation and update requires using both the common Helios repository at
    <a href="http://download.eclipse.org/releases/helios/">http://download.eclipse.org/releases/helios/</a>
    and WTP's own Helios-specific repository at <a href="http://download.eclipse.org/webtools/repository/helios">http://download.eclipse.org/webtools/repository/helios</a>.
    </item>
    <item
        date="2011-03-16T18:18:00"
        title="WTP 3.3 M6 Declared!"
        link="http://download.eclipse.org/webtools/downloads/">
        Just in time for this year's EclipseCon, the sixth development milestone for WTP 3.3 has been declared.  Check out what's
        <a href="http://www.eclipse.org/webtools/development/news/3.3M6/">New and Noteworthy</a>
        and
        <a href="http://download.eclipse.org/webtools/downloads/">download</a>
        it now!  <a href="http://www.eclipse.org/downloads/index-developer.php">Indigo development packages</a> are again available, so get on it! 
    </item>
    <item
        date="2011-02-25T18:46:00"
        title="WTP 3.2.3 Released!"
        link="http://eclipse.org/webtools/releases/3.2.3/">
	It's here, the Web Tools Platform's 3.2.3 release is finally available!  Most existing installs will be able to update to this level with the <b>Check for Updates</b> function from the
	<b>Help</b>
	menu, or installed directly from the common repository at
	<a href="http://download.eclipse.org/releases/helios/">http://download.eclipse.org/releases/helios/.</a><br/>
	Remember, for convenience, there are also all-in-one packages available from
	<a href="http://www.eclipse.org/downloads/">http://www.eclipse.org/downloads/</a>, including 
    the Eclipse IDE for Java EE Developers and Eclipse IDE for JavaScript Web Developers.<br/>
	Many thanks to all the WTP committers who continue to improve the quality and function in WTP and the greater community at large.
    </item>
    <item
        date="2011-02-05T20:00:00"
        title="WTP 3.3 M5 Declared!"
        link="http://download.eclipse.org/webtools/downloads/">
        The fifth development milestone for WTP 3.3 has been declared.  Check out what's
        <a href="http://www.eclipse.org/webtools/development/news/3.3M5/">New and Noteworthy</a>
        and
        <a href="http://download.eclipse.org/webtools/downloads/">download</a>
        it now!  It's also an excellent time to test the <a href="http://www.eclipse.org/downloads/index-developer.php">Indigo development packages</a> and see how this year's Simultaneous Release is progressing. 
    </item>
    <item
        date="2010-12-17T13:00:00"
        title="WTP 3.3 M4 Declared!"
        link="http://download.eclipse.org/webtools/downloads/">
        The fourth development milestone for WTP 3.3 has been declared.  Check out what's
        <a href="http://www.eclipse.org/webtools/development/news/3.3M4/">New and Noteworthy</a>
        and
        <a href="http://download.eclipse.org/webtools/downloads/">download</a>
        it now!  The adventurous can also give the <a href="http://www.eclipse.org/downloads/index-developer.php">Indigo M4 packages</a> a spin, many of which feature the corresponding WTP milestone. 
    </item>
    <item
        date="2010-11-17T05:01:00"
        title="WTP 3.3 M3 Declared!"
        link="http://download.eclipse.org/webtools/downloads/">
        The third development milestone for WTP 3.3 has been declared.  Check out what's
        <a href="http://www.eclipse.org/webtools/development/news/3.3M3/">New and Noteworthy</a>
        and
        <a href="http://download.eclipse.org/webtools/downloads/">download</a>
        it now!  The adventurous can also give the <a href="http://www.eclipse.org/downloads/index-developer.php">Indigo M3 packages</a> a spin, many of which feature WTP's M3. 
    </item>
    <item
        date="2010-09-25T01:22:00"
        title="WTP 3.3 M2 Declared!"
        link="http://download.eclipse.org/webtools/downloads/">
        The second development milestone for WTP 3.3 has been declared.  Check out what's
        <a href="http://www.eclipse.org/webtools/development/news/3.3M2/">New and Noteworthy</a>
        and
        <a href="http://download.eclipse.org/webtools/downloads/">download</a>
        it now!
    </item>
    <item
        date="2010-09-24T16:03:00"
        title="WTP 3.2.2 Released!"
        link="http://eclipse.org/webtools/releases/3.2.2/">
        The Web Tools Platform's 3.2.2 release is now available! 3.2.2 addresses a number of bugs in the original <a href="http://eclipse.org/webtools/releases/3.2.0/index.php">3.2.0</a> and  <a href="http://eclipse.org/webtools/releases/3.2.1/index.php">3.2.1</a> releases.  You can
		<a href="http://download.eclipse.org/webtools/downloads/">download</a> WTP 3.2.2 manually
		or 
		<a
			href="http://help.eclipse.org/helios/topic/org.eclipse.platform.doc.user/tasks/tasks-124.htm"
		>install just the features you want </a>
		by working with the
		<a href="http://download.eclipse.org/releases/helios/">Helios update
			site</a>.  The next scheduled maintenance release, 3.2.3, will be part of Helios SR2. 
    </item>
    <item
        date="2010-07-31T12:00:00"
        title="WTP 3.2.1 Released!"
        link="http://eclipse.org/webtools/releases/3.2.1/">
        The Web Tools Platform's 3.2.1 release is now available! It addresses a number of bugs in the original <a href="http://eclipse.org/webtools/releases/3.2.0/index.php">3.2.0</a> release requested by adopters and the community at large.  You can
		<a href="http://download.eclipse.org/webtools/downloads/">download</a> WTP 3.2.1 manually
		or 
		<a
			href="http://help.eclipse.org/helios/topic/org.eclipse.platform.doc.user/tasks/tasks-124.htm"
		>install just the features you want </a>
		by working with <b>both</b> the
		<a href="http://download.eclipse.org/webtools/repository/helios/">WTP</a> and
		<a href="http://download.eclipse.org/releases/helios/">Helios update
			sites</a>.  The next scheduled maintenance release, 3.2.2, will be part of Helios SR1. 
    </item>
    <item
        date="2010-06-23T14:01:00"
        title="WTP 3.2 Released!"
        link="http://eclipse.org/webtools/releases/3.2.0/">
        The Web Tools Platform's 3.2 release is now available!. WTP 3.2 adds support for creating, running, and
		debugging applications using Java EE 6, including Servlet 3.0, JPA 2.0, JSF
		2.0, EJB 3.1, and JAX-RS 1.1 technologies, plus deployment to updated
		server
		runtimes, and support for XPath 2.0. Content assist in the editors has been
		streamlined and performance improved in numerous areas.  The JavaScript
		Development Tools (JSDT) has gained a debugging framework, allowing it
		to
		launch and debug JavaScript using Rhino, and improved its readiness for
		toolkit-specific plug-ins.  It is featured in the new
		<a
			href="http://eclipse.org/downloads/packages/eclipse-ide-javascript-web-developers/heliosr"
		>Eclipse IDE for JavaScript Web Developers</a>, joining the
		<a
			href="http://eclipse.org/downloads/packages/eclipse-ide-java-ee-developers/heliosr"
		>Eclipse IDE for Java EE Developers</a>
		among the selection of
		<a href="http://www.eclipse.org/helios/">Helios packages</a>.  For a full listing of what's new in
		this release, check out the
		<a href="http://www.eclipse.org/webtools/releases/3.2.0/NewAndNoteworthy/index.php">New and Noteworthy</a>.
		You'll find parts of WTP in most of the
		<a href="http://www.eclipse.org/helios/">Helios packages</a>, but you can still
		<a href="http://download.eclipse.org/webtools/downloads/">download WTP
			manually</a>
		or 
		<a
			href="http://help.eclipse.org/helios/topic/org.eclipse.platform.doc.user/tasks/tasks-124.htm"
		>install just the features you want </a>
		by working with the
		<a href="http://download.eclipse.org/releases/helios/">Helios update
			site</a>.
    </item>
    <item
        date="2010-05-14T00:52:00"
        title="WTP 3.2 RC1 Declared!"
        link="http://download.eclipse.org/webtools/downloads/">
        3.2 RC1 has been declared!
        <a href="http://download.eclipse.org/webtools/downloads/">download</a>
        it now!
    </item>
    <item
        date="2010-04-30T17:54:00"
        title="WTP 3.2 M7 Declared!"
        link="http://www.eclipse.org/webtools/development/news/3.2M7/">
        3.2M7 has been declared!  Check out what's
        <a href="http://www.eclipse.org/webtools/development/news/3.2M7/">New and Noteworthy</a>
        and
        <a href="http://download.eclipse.org/webtools/downloads/">download</a>
        it now, or try it out in a <a href="http://eclipse.org/downloads/packages/release/helios/m7">Helios</a> milestone today!
    </item>
    <item
        date="2010-03-15T17:53:00"
        title="WTP 3.2 M6 Declared!"
        link="http://www.eclipse.org/webtools/development/news/3.2M6/">
        3.2M6 has been declared!  Check out what's
        <a href="http://www.eclipse.org/webtools/development/news/3.2M6/">New and Noteworthy</a>
        and
        <a href="http://download.eclipse.org/webtools/downloads/">download</a>
        it now, or try it out in a <a href="http://eclipse.org/downloads/packages/release/helios/m6">Helios</a> milestone today!
    </item>
    <item
        date="2010-02-26T16:59:59"
        title="WTP 3.1.2 Released!"
        link="http://www.eclipse.org/webtools/releases/3.1.2/">
			<a href="http://www.eclipse.org/webtools/releases/3.1.2/">WTP 3.1.2</a> has been released!
		<br/>
		<br/>
			<a href="http://www.eclipse.org/webtools/releases/3.1.2/">Eclipse Web Tools Platform version 3.1.2</a>
			has been released.
			Version 3.1.2 is a scheduled maintenance release to fix notable defects
				present in the original 3.1.0 release and the previous maintenance release, 3.1.1, as well as to improve its stability and
				performance. This second and final maintenance release includes nearly a hundred fixes. 
				<a href="http://download.eclipse.org/webtools/downloads/">Download</a>
        		it now or get it as part of <a href="http://www.eclipse.org/galileo/">Eclipse Galileo SR2</a>.
		<br/>
		<br/>
		See our complete <a href="http://www.eclipse.org/webtools/releases/3.1.0/newandnoteworthy/">New and Noteworthy</a> for full details.
    </item>
    <item
        date="2010-01-29T16:59:59"
        title="WTP 3.2 M5 Declared!"
        link="http://www.eclipse.org/webtools/development/news/3.2M5/">
        It's too early to tell if we'll have six more weeks of Winter to accompany our next milestone, but this milestone has definitely come to an end.  3.2M5 has been declared!  Check out what's
        <a href="http://www.eclipse.org/webtools/development/news/3.2M5/">New and Noteworthy</a>
        and
        <a href="http://download.eclipse.org/webtools/downloads/">download</a>
        it now, or try it out in a <a href="http://eclipse.org/downloads/packages/release/helios/m5">Helios</a> milestone soon!
    </item>
    <item
        date="2009-12-18T18:50:30"
        title="WTP 3.2 M4 Declared!"
        link="http://www.eclipse.org/webtools/development/news/3.2M4/">
        Just in time for a number of holidays, the fourth development milestone for WTP 3.2 has been declared.  Check out what's
        <a href="http://www.eclipse.org/webtools/development/news/3.2M4/">New and Noteworthy</a>
        and
        <a href="http://download.eclipse.org/webtools/downloads/">download</a>
        it now, or try it out in a <a href="http://eclipse.org/downloads/packages/release/helios/m4">Helios</a> milestone today!
    </item>
    <item
        date="2009-10-06T16:34:30"
        title="WTP 3.2 M3 Declared!"
        link="http://www.eclipse.org/webtools/development/news/3.2M3/">
        The third development milestone for WTP 3.2 has been declared.  Check out what's
        <a href="http://www.eclipse.org/webtools/development/news/3.2M3/">New and Noteworthy</a>
        and
        <a href="http://download.eclipse.org/webtools/downloads/">download</a>
        it now!
    </item>
    <item
        date="2009-09-25T09:01:30"
        title="WTP 3.2 M2 Declared!"
        link="http://www.eclipse.org/webtools/development/news/3.2M2/">
        The second development milestone for WTP 3.2, now to be part of Helios, has been declared.  Check out what's
        <a href="http://www.eclipse.org/webtools/development/news/3.2M2/">New and Noteworthy</a>
        and
        <a href="http://download.eclipse.org/webtools/downloads/">download</a>
        it now!
    </item>
	<item
		date="2009-09-25T09:01:00"
		title="WTP 3.1.1 Released!"
		link="http://www.eclipse.org/webtools/releases/3.1.1/">
		<p>
			<a href="http://www.eclipse.org/webtools/releases/3.1.1/">WTP 3.1.1</a> has been released!
		</p>
		<p>
			<a href="http://www.eclipse.org/webtools/releases/3.1.1/">Eclipse Web Tools Platform version 3.1.1</a>
			has been released.
			Version 3.1.1 is a scheduled maintenance release to fix notable defects
				present in the original 3.1.0 release, as well as to improve its stability and
				performance. Nearly a hundred fixes have been added since the 3.1
				release. <a href="http://download.eclipse.org/webtools/downloads/">Download</a>
        		it now or get it as part of <a href="http://www.eclipse.org/galileo/">Eclipse Galileo SR1</a>.
        		The next scheduled maintenance release will be available in late February, 2010.</p>
	
			<p>See our complete <a href="http://www.eclipse.org/webtools/releases/3.1.0/newandnoteworthy/">New and Noteworthy</a> for full details.
		</p>
    </item>
    <item
        date="2009-08-31T09:00:00"
        title="Web Services Tools honored with an Infoworld BOSSIE Award"
        link="http://www.infoworld.com/d/open-source/best-open-source-developer-tools-726&amp;current=4&amp;last=12#slideshowTop">
        Infoworld has honored WTP's Web Services Tools by counting it among its "Best of Open Source developer tools" list.  For more details, the complete list, and more, visit <a href="http://www.infoworld.com/d/open-source/best-open-source-developer-tools-726&amp;current=4&amp;last=12#slideshowTop">Infoworld</a>.
    </item>
    <item
        date="2009-08-14T08:44:30"
        title="WTP 3.2 M1 Declared!"
        link="http://www.eclipse.org/webtools/development/news/3.1M7/">
        The first development milestone for WTP 3.2 (scheduled for Helios) has been declared.  Check out what's
        <a href="http://www.eclipse.org/webtools/development/news/3.2M1/">New and Noteworthy</a>
        and
        <a href="http://download.eclipse.org/webtools/downloads/">download</a>
        it now!
    </item>
	<item
		date="2009-06-24T13:01:00"
		title="WTP 3.1 Released!"
		link="http://www.eclipse.org/webtools/releases/3.1.0/">
		<p>
			<a href="http://www.eclipse.org/webtools/releases/3.1.0/">WTP 3.1</a> has been released!
		</p>
		<p>Like clockwork, 
			<a href="http://www.eclipse.org/webtools/releases/3.1.0/">Eclipse Web Tools Platform version 3.1</a>
			has been released along with <a href="http://www.eclipse.org/galileo/">Eclipse Galileo</a>.
			The past year has seen over 800 bugs fixed, collectively providing
			improvements to, and polishing of, end-user function, as well as
			offering new APIs and increased flexibility for our many adopters.
			In addition to the numerous changes invisible to the eye, here are some
			notable changes to explore in WTP 3.1:</p>
	
			<ul>
			<li>Better support for workspace projects you've already created through
			the new standard <b>Configure</b> context menu, with more to come in the
			future.</li>
			<li>Updated perspectives that take advantage of additional Eclipse
			projects included in our featured Galileo package, <i>the Eclipse IDE for
			Java EE Developers</i>, as well as new features in WTP itself.</li>
			</ul>
	
			<p>See our complete <a href="http://www.eclipse.org/webtools/releases/3.1.0/newandnoteworthy/">New and Noteworthy</a> for full details.
	
			You can see WTP 3.1 in action at a local 
			<a href="https://wiki.eclipse.org/Eclipse_DemoCamps_Galileo_2009">Galileo DemoCamp</a>,
			and get your own copy at <a href="http://download.eclipse.org/webtools/downloads/">WTP's download page</a>,
			or included in selected <a href="http://www.eclipse.org/galileo/">Galileo</a> packages.
			</p>
    </item>
    <item
        date="2009-05-29T16:58:00"
        title="WTP 3.0.5 Released!"
        link="http://www.eclipse.org/webtools/releases/3.0.5/">
        <p>
            <a href="http://www.eclipse.org/webtools/releases/3.0.5/">WTP 3.0.5</a>
            has been released
        </p>
        <p>Version 3.0.5 of the Web Tools Platform has been released.  Release 3.0.5 is the final scheduled maintenance release for WTP 3.0, improving on its stability and performance.  More than 100 fixes have been added since the 3.0.4 release, and it can now be updated to from <a href="http://www.eclipse.org/ganymede/">Ganymede SR2</a>.  Stay tuned for our 3.1 release as part of Galileo, both expected later this month.</p>
    </item>
    <item
        date="2009-05-08T20:45:00"
        title="WTP 3.1 M7 Declared!"
        link="http://www.eclipse.org/webtools/development/news/3.1M7/">
        The seventh development milestone for WTP 3.1 has been declared.  Check out what's
        <a href="http://www.eclipse.org/webtools/development/news/3.1M7/">New and Noteworthy</a>
        and
        <a href="http://download.eclipse.org/webtools/downloads/">download</a>
        it now!
    </item>
    <item
        date="2009-04-06T10:30:00"
        title="Amazon Extends WTP for the Cloud"
        link="http://aws.amazon.com/eclipse/">
        Amazon announced their <a href="http://aws.amazon.com/">Amazon Web Services</a> <a href="http://aws.amazon.com/eclipse/">Toolkit for Eclipse</a>, which extends WTP to run Web applications on the Amazon Cloud. The AWS Toolkit for Eclipse is a plug-in for the Eclipse WebTools platforms that makes it easier for developers to develop, deploy, and debug Java applications using Amazon Web Services. With the AWS Toolkit for Eclipse, developers are able to get started faster and be more productive when building AWS applications.
    </item>
    <item
        date="2009-04-01T14:00:00"
        title="Eclipse WebTools Education Releases Developing Web Applications with Standards Courseware"
        link="http://www.eclipse.org/org/press-release/20090401_WTPeducation.php">
        The WTP project is excited to release the first of the open courseware that will be a part of the WTP Education curriculum: WTP-101 Developing Web Applications with Standards. This open courseware covers developing Web Applications with Standards using W3C standard technologies, such as HTML, CSS, XML, XSD and XSL.
        The goal of WTP Education is to enable and educate WTP end-users by providing them quality resources for self-learning and to increase WTP awareness and usage by obtaining, creating and coordinating materials for tutorials, articles, webinars and other digital mediums. WTP Education offers courses designed to teach anything from XML, HTML and standards based Web development, to advanced topics such as Java Server Faces and Java Persistence.
        In the spirit of open source, you can contribute to WTP Education in many ways. Please provide your feedback, comments and corrections using Bugzilla and select Education as the component. Your contributions are important to us. For more information visit the WTP Education page.
    </item>
    <item
        date="2009-03-18T20:44:00"
        title="WTP 3.1 M6 Declared!"
        link="http://www.eclipse.org/webtools/development/news/3.1M6/">
        Just in time for this year's <a href="http://www.eclipsecon.org/2009/">EclipseCon</a>, the sixth development milestone for WTP 3.1 has been declared.  Check out what's
        <a href="http://www.eclipse.org/webtools/development/news/3.1M6/">New and Noteworthy</a>
        and
        <a href="http://download.eclipse.org/webtools/downloads/">download</a>
        it now!
    </item>
    <item
        date="2009-02-25T16:57:00"
        title="WTP 3.0.4 Released!"
        link="http://www.eclipse.org/webtools/releases/3.0.4/">
        <p>
            <a href="http://www.eclipse.org/webtools/releases/3.0.4/">WTP 3.0.4</a>
            has been released.
        </p>
        <p>Version 3.0.4 of the Web Tools Platform has been released.  Release 3.0.4 is a scheduled maintenance release to fix serious defects present in the prior 3.0 releases, as well as to improve on their stability and performance.  More than 120 fixes have been added since the 3.0.3 release, while riders on the Ganymede release train can look forward to more than <a href="https://bugs.eclipse.org/bugs/report.cgi?x_axis_field=resolution&amp;y_axis_field=product&amp;query_format=report-table&amp;classification=WebTools&amp;target_milestone=2.0.3&amp;target_milestone=2.0.3+RC1&amp;target_milestone=2.0.3+RC2&amp;target_milestone=2.0.3+RC3&amp;target_milestone=2.0.3+RC4&amp;target_milestone=3.0.3&amp;target_milestone=3.0.3&amp;target_milestone=3.0.3+RC1&amp;target_milestone=3.0.3+RC2&amp;target_milestone=3.0.3+RC3&amp;target_milestone=3.0.3+RC4&amp;target_milestone=2.0.4&amp;target_milestone=2.0.4+RC1&amp;target_milestone=2.0.4+RC2&amp;target_milestone=2.0.4+RC3&amp;target_milestone=2.0.4+RC4&amp;target_milestone=3.0.4&amp;target_milestone=3.0.4&amp;target_milestone=3.0.4+RC1&amp;target_milestone=3.0.4+RC2&amp;target_milestone=3.0.4+RC3&amp;target_milestone=3.0.4+RC4&amp;bug_status=RESOLVED&amp;bug_status=VERIFIED&amp;bug_status=CLOSED&amp;resolution=FIXED&amp;chfieldfrom=2008-09-15&amp;chfieldto=2009-03-15&amp;chfield=resolution&amp;chfieldvalue=FIXED&amp;format=table&amp;action=wrap">300</a> fixes since SR1.</p>
    </item>
    <item
        date="2009-02-08T02:31:00"
        title="WTP 3.1 M5 Declared!"
        link="http://www.eclipse.org/webtools/development/news/3.1M5/">
        The fifth development milestone for WTP 3.1 has been declared.  Check out what's
        <a href="http://www.eclipse.org/webtools/development/news/3.1M5/">New and Noteworthy</a>
        and
        <a href="http://download.eclipse.org/webtools/downloads/">download</a>
        it now!
    </item>
    <item
        date="2008-12-29T19:25:00"
        title="WTP 3.1 M4 Declared!"
        link="http://www.eclipse.org/webtools/development/news/3.1M4/">
        The fourth development milestone for WTP 3.1 has been declared.  Check out what's
        <a href="http://www.eclipse.org/webtools/development/news/3.1M4/">New and Noteworthy</a>
        and
        <a href="http://download.eclipse.org/webtools/downloads/">download</a>
        it now!
    </item>
    <item
        date="2008-11-14T15:27:00"
        title="WTP 3.0.3 Released!"
        link="http://www.eclipse.org/webtools/releases/3.0.3/">
        <p>
            <a href="http://www.eclipse.org/webtools/releases/3.0.3/">WTP 3.0.3</a>
            has been released.
        </p>
        <p>WTP 3.0.3 is now available.  Release 3.0.3 is a scheduled maintenance release to fix serious defects present in the prior 3.0 releases, as well as to improve on their stability and performance.  Roughly 170 fixes have been added since the 3.0.2 release.  The next scheduled maintenance release, 3.0.4, will be available in February as part of Ganymede SR2.</p>
    </item>
    <item
        date="2008-11-13T15:27:00"
        title="WTP 3.1 M3 Declared!"
        link="http://www.eclipse.org/webtools/development/news/3.1M3/">
        The third development milestone for WTP 3.1 has been declared.  Check out what's
        <a href="http://www.eclipse.org/webtools/development/news/3.1M3/">New and Noteworthy</a>
        and
        <a href="http://download.eclipse.org/webtools/downloads/">download</a>
        it now!
    </item>
    <item
        date="2008-09-29T04:01:43"
        title="WTP 3.1 M2 Declared!"
        link="http://www.eclipse.org/webtools/development/news/3.1M2/">
        The second development milestone for WTP 3.1 has been declared.  Check out what's
        <a href="http://www.eclipse.org/webtools/development/news/3.1M2/">New and Noteworthy</a>
        and
        <a href="http://download.eclipse.org/webtools/downloads/">download</a>
        it now!
    </item>
    <item
        date="2008-09-25T04:59:57"
        title="WTP 3.0.2 release is available!"
        link="http://www.eclipse.org/webtools/releases/3.0.2/">
        <p>
            <a href="http://www.eclipse.org/webtools/releases/3.0.2/">WTP 3.0.2</a>
            has been released.
        </p>
        <p>WTP 3.0.2 is now available.  Release 3.0.2 is a scheduled maintenance release to fix serious defects present in the 3.0.0 and 3.0.1 releases, as well as to improve its stability and performance.  Roughly 100 fixes have been added since the 3.0.1 release, which contained nearly 300 fixes of its own.  <a href="http://www.eclipse.org/webtools/releases/3.0.2/">Download</a> it now, or install it as part of <a href="http://www.eclipse.org/ganymede/">Ganymede Service Release 1</a>.  The next scheduled maintenance release, 3.0.3, will be available mid-November.</p>
    </item>
    <item
        date="2008-08-22T23:59:58"
        title="WTP 3.1 M1 Declared!"
        link="http://www.eclipse.org/webtools/development/news/3.1M1/">
        The first development milestone for WTP 3.1 has been declared.  Check out what's
        <a href="http://www.eclipse.org/webtools/development/news/3.1M1/">New and Noteworthy</a>
        and
        <a href="http://download.eclipse.org/webtools/downloads/">download</a>
        it now!
    </item>
    <item
        date="2008-08-22T23:59:57"
        title="WTP 3.0.1 release is available!"
        link="http://www.eclipse.org/webtools/releases/3.0.1/">
        <p>
            <a href="http://www.eclipse.org/webtools/releases/3.0.1/">WTP 3.0.1</a>
            has been released.
        </p>
        <p>WTP 3.0.1 is now available.  Release 3.0.1 is a scheduled maintenance release to fix serious defects present in the 3.0.0 release, as well as to improve its stability and performance.  Nearly <a href="https://bugs.eclipse.org/bugs/report.cgi?x_axis_field=resolution&amp;y_axis_field=product&amp;query_format=report-table&amp;classification=WebTools&amp;target_milestone=2.0.1&amp;target_milestone=3.0.1&amp;target_milestone=3.0.1+RC1&amp;target_milestone=3.0.1+RC2&amp;bug_status=RESOLVED&amp;bug_status=VERIFIED&amp;bug_status=CLOSED&amp;resolution=FIXED&amp;emailtype1=substring&amp;email1=&amp;emailtype2=substring&amp;email2=&amp;bugidtype=include&amp;bug_id=&amp;votes=&amp;chfieldfrom=&amp;chfieldto=Now&amp;chfieldvalue=&amp;format=table&amp;action=wrap&amp;field0-0-0=target_milestone&amp;type0-0-0=equals&amp;value0-0-0=2.0.1&amp;field0-0-1=target_milestone&amp;type0-0-1=equals&amp;value0-0-1=3.0.1&amp;field0-0-2=target_milestone&amp;type0-0-2=equals&amp;value0-0-2=3.0.1+RC2">300</a> fixes have been made since the 3.0.0 release.  The next scheduled maintenance release, 3.0.2, will be part of the Ganymede Simultaneous Release on September 25.</p>
    </item>
    <item
        date="2008-08-21T12:00:00"
        title="XSL Tools has been released!"
        link="http://www.eclipse.org/webtools/releases/XSL/0.5/index.php">
        <p>
            <a href="http://www.eclipse.org/webtools/releases/XSL/0.5/index.php">WTP XSL Tools 0.5</a>
            has been released.
        </p>
        <p>This is a great checkpoint for this hatchling XSL component. While it is still incubating, it is quite mature and ready for production use!</p>
        <p>The plan moving forward is to include XSL tools in WTP proper for the Galileo Release (June, 2009), so help them out by downloading a copy now and give it a try!</p>
        <p>Much thanks to this dedicated team for finally bringing XSL Tools to WTP.</p>
        <!-- The release page is used because the download site will change after archival. -->
    </item>
    <item
        date="2008-07-18T12:00:00"
        title="WTP 2.0.3 release is available!"
        link="http://www.eclipse.org/webtools/releases/2.0.3/">
        <p>
            <a href="http://www.eclipse.org/webtools/releases/2.0.3/">WTP 2.0.3</a>
            has been released. It is a maintenance release of the Europa version of WTP. This is a relatively minor maintenance, fixing only 8 bugs, but they were 8 especially bad bugs! See the
            <a href="http://www.eclipse.org/webtools/releases/2.0.3/">release page</a>
            for details.
        </p>
        <p>If you already have a previous version of WTP 2.0.x installed, you can go to the menus Help, Update Manager, Find and Install, and select "Search for updates of currently installed features".</p>
        <!-- The release page is used because the download site will change after archival. -->
    </item>
    <item
        date="2008-06-25T12:00:00"
        title="We've done it again! WTP 3.0 is available!"
        link="http://www.eclipse.org/webtools/releases/3.0.0/">
        <p>
            <a href="http://www.eclipse.org/webtools/releases/3.0.0/">WTP 3.0.0</a>
            has been released as part of the Eclipse Ganymede Release. There has been many bug fixes, incremental improvements for end-uesrs functions and new APIs and packages for adopters, but the following are some of the larger, more noticeable contributions made to WTP 3.0:
        </p>
        <ul>
            <li>
                A new JavaScript IDE, called JSDT, provides the same level of support for JavaScript as the JDT provides for Java. Some of the new features include code completion, quick fix, formatting and validation. All the functions are, naturally, aware of libraries you specify for your
                project.
            </li>
            <li>
                Improved support for enterprise projects -- especially noteworthy are UI support for Java EE 5: new wizards for Servlet Filters, Application Lifecycle Listeners, Session Beans, Message-Driven Beans; meta-data descriptor trees in the Project Explorer; and Bundled Libraries support for
                EAR projects.
            </li>
            <li>
                Dali Java Persistence Tools has an expanded UI including a new Persistence.xml editor, new Entity and XML Mapping File wizards and JPA specific contributions to the Project Explorer. Dali has also improved configuration and validation with support for mapping with annotations, XML,
                or with a combination of annotations and XML.
            </li>
            <li>The JSF Tools Project has added features to improve web application development productivity. The release provides visual editing support for Apache MyFaces Trinidad components and enables support for future JSF 2.0 (JSR-314) enhancements such as Facelets.</li>
        </ul>
        <!-- The release page is used because the download site will change after archival. -->
    </item>
    <item
        date="2008-02-29T03:30:00"
        title="WTP 2.0.2 available!"
        link="http://www.eclipse.org/webtools/releases/2.0.2/">
        <a href="http://www.eclipse.org/webtools/releases/2.0.2/">WTP 2.0.2</a>
        has been released as part of the Europa Winter Maintenance packages. This release addresses serious defects present in release 2.0 as well as improves upon its stability and performance. Individual zip downloads and all-in-one bundles for frequently used configurations are also available.
        <!-- The release page is used because the download site will change after archival. -->
    </item>
    <item
        date="2008-02-18T23:44:01"
        title="WTP 3.0 M5 Declared!"
        link="http://www.eclipse.org/webtools/development/news/3.0M5/main.php">
        WTP 3.0 milestone M5 has been declared. Check out what's
        <a href="http://www.eclipse.org/webtools/development/news/3.0M5/main.php">New and Noteworthy</a>
        and
        <a href="http://download.eclipse.org/webtools/downloads/drops/R3.0/S-3.0M5-20080218021547/">download</a>
        it now! Please note that the list of pre-reqs has changed slightly, and that they should always be installed first.
    </item>
    <item
        date="2008-01-21T16:20:00"
        title="First milestone of XSL Component Declared!"
        link="http://www.eclipse.org/webtools/incubator/downloads/">
        <p>We are proud to announce the first milestone of the XSL Incubating Component from WTP.</p>
        <p>
            This feature adds XSL Launch Configurations, XSL Editing and Debugging, and XPath Navigator/Tester to the capabilities of WTP (or, WST). While there's room (and plans!) for improvement, we think everyone who uses XSL will find it useful already in this first milestone ... and certainly
            worth you trying it out, opening bugs and enhancement requests and getting involved with the effort!
        </p>
        <p>This is the first milestone of the WTP Incubating Project, which began last Fall. It well demonstrates what a few dedicated volunteers can accomplish at Eclipse, namely Doug Satchwell, David Carver, and Jesper M&#248;ller. Great job guys!</p>
        <p>
            Get started from the
            <a href="http://www.eclipse.org/webtools/incubator/downloads/">WTP Incubator download site</a>
        </p>
    </item>
    <item
        date="2008-01-07T18:17:01"
        title="WTP 3.0 M4 Declared!"
        link="http://www.eclipse.org/webtools/development/news/3.0M4/main.php">
        WTP 3.0 milestone M4 has been declared. Check out what's
        <a href="http://www.eclipse.org/webtools/development/news/3.0M4/">New and Noteworthy</a>
        and
        <a href="http://download.eclipse.org/webtools/downloads/drops/R3.0/S-3.0M4-20080105091323/">download</a>
        it now!
    </item>
    <item
        date="2007-11-15T17:28:01"
        title="WTP 3.0 M3 Declared!"
        link="http://www.eclipse.org/webtools/development/news/3.0M3/">
        WTP 3.0 milestone M3 has been declared. Check out what's
        <a href="http://www.eclipse.org/webtools/development/news/3.0M3/">New and Noteworthy</a>
        and
        <a href="http://download.eclipse.org/webtools/downloads/drops/R3.0/S-3.0M3-20071114232332/">download</a>
        it now!
    </item>
    <item
        date="2007-11-14T7:57:00"
        title="WTP at Eclipse DemoCamps"
        link="https://wiki.eclipse.org/Eclipse_DemoCamp">
        Eclipse DemoCamps are great events to showcase and discuss some of the cool and interesting technology being built by the Eclipse community. They're also opportunities to meet other Eclipse enthusiasts and committers in cities around the world. WTP projects and products based on WTP will be
        presented in
        <a href="https://wiki.eclipse.org/Austin_DemoCamp">Austin</a>
        ,
        <a href="https://wiki.eclipse.org/Istanbul_DemoCamp">Istanbul</a>
        ,
        <a href="https://wiki.eclipse.org/New_York_City_DemoCamp">New York</a>
        , and
        <a href="https://wiki.eclipse.org/RTP_DemoCamp">RTP</a>
        , with familiar faces from WTP also planning to attend in
        <a href="https://wiki.eclipse.org/Toronto_DemoCamp">Toronto</a>
        . Join us, won't you?
    </item>
    <item
        date="2007-10-03T16:08:32"
        title="WTP 3.0 M2 Declared!"
        link="http://www.eclipse.org/webtools/development/news/3.0M2/">
        WTP 3.0 milestone M2 has been declared. Check out what's
        <a href="http://www.eclipse.org/webtools/development/news/3.0M2/">New and Noteworthy</a>
        and download it
        <a href="http://download.eclipse.org/webtools/downloads/drops/R3.0/S-3.0M2-20071003160832/">now</a>
        ! Thanks go out to all the project teams for their continued work and to our many and varied users. Users of the Web Services Explorer in particular should update from M1 to this milestone as it is once again available.
    </item>
    <item
        date="2007-09-28T19:20:00"
        title="WTP 2.0.1 available!"
        link="http://eclipse.org/webtools/releases/2.0.1/">
        <a href="http://eclipse.org/webtools/releases/2.0.1/">WTP 2.0.1</a>
        has been released as part of the Europa Fall Maintenance packages. This release addresses serious defects present in release 2.0 as well as improves upon its stability and performance. Individual zip downloads and all-in-one bundles for frequently used configurations are also available.
        <!-- The release page is used because the download site will change after archival. -->
    </item>
    <item
        date="2007-08-31T15:16:00"
        title="WTP 1.5.5 Available!"
        link="http://www.eclipse.org/webtools/releases/1.5.5/">
        WTP 1.5.5 has been released to fix a number of bugs in the 1.5 releases. Those with 1.5.4 or below already installed need only use Update Manager to "find updates for currently installed features".
        <br />
        <!--
            All-in-one zip files, SDKs, and minimal runtimes are also
            available from the download site. -->
    </item>
    <item
        date="2007-08-24T14:00:00"
        title="WTP 3.0 M1 Declared!"
        link="http://www.eclipse.org/webtools/development/news/3.0M1/">
        WTP 3.0 milestone M1 has been declared. Check out what's
        <a href="http://www.eclipse.org/webtools/development/news/3.0M1/">New and Noteworthy</a>
        and download it
        <a href="http://download.eclipse.org/webtools/downloads/drops/R3.0/S-3.0M1-200708232314/">now</a>
        ! Thanks go out to all the component teams for their continued hard work, a good number of first-time contributors, and to our many and varied users. Users of the Web Services Explorer should be aware that it is not available in this milestone due to changes in the Eclipse Platform. It is
        expected to return in M2.
    </item>
    <item
        date="2007-08-06T12:00:00"
        title="STAR Workbench adopts Eclipse Web Standard Tools">
        <p>
            Standards for Technology in Automotive Retail (STAR) will unveil the
            <a href="http://www.starstandard.org/index.php?n=STAR.STARWorkbench">STAR Workbench</a>
            at its October General Session meeting. The STAR Workbench will help XML Data Architects, Business Analysts, and Users improve their schema and instances of Business Object Documents.
        </p>
        <p>The workbench is built on the Eclipse Platform, the Eclipse Web Standard Tools 2.0 plugins (WST) and other open source components.</p>
        <p>
            See their
            <a href="http://www.starstandard.org/index.php?n=STAR.STARWorkbenchRelease">Press Release</a>
            for more information.
        </p>
    </item>
    <item
        date="2007-07-26T18:00:00"
        title="New News Feed for Eclipse Web Tools Platform">
        The news feed (RSS) for the Web Tools Platform (WTP) project is now
        <br />
        <a href="http://www.eclipse.org/webtools/news/">http://www.eclipse.org/webtools/news/</a>
        <br />
        <br />
        The new feed supports rich content, such as images and links, as well as permalinks back to the news archive. The old feed at http://www.eclipse.org/webtools/wtpnews.rss will be decommissioned.
    </item>
    <item
        date="2007-06-29T13:00:00"
        title="Eclipse Web Tools Platform 2.0 Released!">
        <p>
            <a href="http://www.eclipse.org/webtools/releases/2.0/index.php">Eclipse Web Tools Platform 2.0</a>
            is available for immediate
            <a href="http://download.eclipse.org/webtools/downloads/drops/R2.0/R-2.0-200706260303/">download</a>
            and can also be installed as part of
            <a href="http://www.eclipse.org/europa/">Europa</a>
            . This major update delivers its key goals of improved quality, adopter readiness, harmony with other Eclipse projects, and many new features for end users.
        </p>
        <p>Eclipse developers will be particularly pleased with the debut of major features and/or specification updates to EJB3 JPA, JSP 2.0, JSF 1.2, Axis2 Web Services, Tomcat support, and source editing. This release also introduces Java EE 5 project support.</p>
    </item>
    <item
        date="2007-06-21T23:15:00"
        title="WTP 2.0 RC4 Declared!">
        <a href="http://www.eclipse.org/webtools/development/news/2.0RC4/main.php">WTP 2.0 RC4</a>
        was officially released on 2007-06-21
        <!--
            and is available for <a href="http://archive.eclipse.org/webtools/downloads/drops/R2.0/S-2.0RC4-200706212235/">download</a> now.
        -->
    </item>
    <item
        date="2007-06-14T15:55:00"
        title="WTP 2.0 RC3 Declared!">
        <a href="http://www.eclipse.org/webtools/development/news/2.0RC3/main.php">WTP 2.0 RC3</a>
        was officially released on 2007-06-14
        <!--
            and is available for <a href="http://archive.eclipse.org/webtools/downloads/drops/R2.0/S-2.0RC3-200706140654/">download</a> now.
        -->
    </item>
    <item
        date="2007-06-05T21:16:00"
        title="WTP 2.0 RC2 Declared!"
        link="http://www.eclipse.org/webtools/development/news/2.0RC2/main.php">
        <a href="http://www.eclipse.org/webtools/development/news/2.0RC2/main.php">WTP 2.0 RC2</a>
        was officially released on 2007-06-05
        <!--
            and is available for <a href="http://archive.eclipse.org/webtools/downloads/drops/R2.0/S-2.0RC2-200706050057/">download</a> now.
            The update site bits will follow with the Europa RC2 release tommorrow.
        -->
    </item>
    <item
        date="2007-06-01T19:00:00"
        title="WTP Book Released!"
        link="http://www.eclipsewtp.org">
        <p>
            <a href="http://www.eclipsewtp.org">
                <img
                    src="http://www.eclipse.org/webtools/community/images/eclipsewebtoolsplatformcover.jpg"
                    align="left"
                    border="0" />
                Eclipse Web Tools Platform: Developing Java Web Applications
            </a>
            by
            <a href="http://www.eclipse.org/webtools/people/person.php?name=dai">Naci Dai</a>
            ,
            <a href="http://www.eclipse.org/webtools/people/person.php?name=mandel">Lawrence Mandel</a>
            and
            <a href="http://www.eclipse.org/webtools/people/person.php?name=ryman">Arthur Ryman</a>
            has been released.
        </p>
        <p>
            This book presents an in-depth description of all the tools that make up WTP and an introduction to how they can be extended. It also covers Web application architecture and shows you how to set up a development project. It will appeal to Eclipse users, Enterprise Java developers, and
            companies and developers who reuse Eclipse in their products. Discussion includes many tools that are new to the Eclipse community and provide functionality that has not been present in Eclipse itself. This book will show Eclipse users and developers how to use and extend the new tools
            and incorporate them into their own products.
        </p>
        <p>
            Find out more at the book web site
            <a href="http://www.eclipsewtp.org">http://www.eclipsewtp.org</a>
            .
        </p>
    </item>
    <item
        date="2007-05-25T09:00:00"
        title="WTP 2.0 RC1 Declared!"
        link="http://www.eclipse.org/webtools/development/news/2.0RC1/main.php">
        <a href="http://www.eclipse.org/webtools/development/news/2.0RC1/main.php">WTP 2.0 RC1</a>
        was officially released on 2007-05-25
        <!--
            and is available for <a href="http://archive.eclipse.org/webtools/downloads/drops/R2.0/S-2.0RC1-200705250432/">download</a> now.
            The Europa update site will be ready shortly. Thanks everyone.
        -->
    </item>
    <item
        date="2007-05-18T10:00:00"
        title="WTP 2.0 RC0 Declared!"
        link="http://www.eclipse.org/webtools/development/news/2.0RC0/main.php">
        The WTP 2.0 RC0 Milestone has been declared. Check out what's
        <a href="http://www.eclipse.org/webtools/development/news/2.0RC0/main.php">New and Noteworthy</a>
        <!--
            and download it <a href="http://archive.eclipse.org/webtools/downloads/drops/R2.0/S-2.0RC0-200705171455/">now</a>! 
        -->
        Thanks go out to all the teams and to our users for their continued hard work.
    </item>
    <item
        date="2007-05-03T21:00:00"
        title="WTP 1.5.4 Declared!"
        link="http://archive.eclipse.org/webtools/downloads/drops/R1.5/R-1.5.4-200705021353/">
        WTP 1.5.4 has been released to fix a number of bugs in the 1.5 releases. Those with 1.5.3 or below already installed need only use Update Manager to "find updates for currently installed features".
        <br />
        All-in-one zip files, SDKs, and minimal runtimes are also available from the download site.
    </item>
    <item
        date="2007-05-03T21:00:00"
        title="WTP at JavaOne 2007"
        link="http://www28.cplan.com/cc158/session_details.jsp?isid=285782&amp;ilocation_id=158-1&amp;ilanguage=english">
        Session TS-9782 will present the lastest Java EE and Web tooling from two WTP subprojects, the ATF and JSF projects. The session is titled "Ajax and JavaServer Faces Technology Tooling in Eclipse" and will be delivered by Cameron Bateman (Oracle) and Phillipe Ombredanne (nexB and
        EasyEclipse). This is a must-see session for open source fans, with an emphasis on demonstration.
    </item>
    <item
        date="2007-05-03T21:00:00"
        title="Don't miss these cool WTP webinars on Eclipse live"
        link="https://admin.adobe.acrobat.com/_a300965365/p75296135/">
        Catch the replay of today's webinar by Kathy Chan (IBM) and Andrew Mak (IBM) to get a good Introduction to Web Services Tools in WTP. This webinar will introduce you to the web services tools that are available in Eclipse's Web Tools Platform. These tools will help you develop and test your
        own web services, or you can discover and play with web services that are published on the Internet and build your applications to interact with these services. Concepts such as SOAP, WSDL, UDDI and various interoperability and development standards will be touched on. The webinar will
        include highlights on Axis2 web service tools which are new to WTP 2.0.
    </item>
    <item
        date="2007-04-06T13:30:00"
        title="WTP 2.0 M6 Declared!"
        link="http://www.eclipse.org/webtools/development/news/2.0M6/">
        WTP 2.0 milestone M6 has been declared. Check out what's
        <a href="http://www.eclipse.org/webtools/development/news/2.0M6/">New and Noteworthy</a>
        <!--
            and download it <a href="http://download.eclipse.org/webtools/downloads/drops/R2.0/S-2.0M6-200704060120/">now</a>!  
        -->
        Thanks go out to all the teams and to our users for their continued hard work.
    </item>
    <item
        date="2007-02-23T19:14:00"
        title="WTP 2.0 M5 Declared!"
        link="http://www.eclipse.org/webtools/development/news/2.0M5/">
        WTP 2.0 milestone M5 has been declared. Check out what's
        <a href="http://www.eclipse.org/webtools/development/news/2.0M5/">New and Noteworthy</a>
        <!-- 
            and download it <a href="http://download.eclipse.org/webtools/downloads/drops/R2.0/S-2.0M5-200702230758/">now</a>!  
        -->
        Thanks go out to all the teams for their hard work testing and fixing bugs.
    </item>
    <item
        date="2007-02-16T19:00:00"
        title="WTP 1.5.3 Released!"
        link="http://archive.eclipse.org/webtools/downloads/drops/R1.5/R-1.5.3-200702082048/">
        WTP 1.5.3 has been released to fix
        <a href="http://www.eclipse.org/webtools/releases/1.5.3/release-notes.html">serious bugs</a>
        that were found too late to fix in the
        <a href="http://www.eclipse.org/webtools/releases/1.5/">previous release</a>
        . Those with a previous 1.5 releases already installed need only use Update Manager to "find updates for currently installed features". New users of Eclipse 3.2 can also obtain it by choosing to "Search for new features to install" within the Update Manager and selecting the Callisto
        Discovery Site. Manual downloads are also available from the
        <a
            href="http://download.eclipse.org/webtools/downloads/"
            target="_top">
            download site
        </a>
        as well as from
        <a
            href="http://www.eclipse.org/callisto/downloads.php"
            target="_top">
            member companies
        </a>
        .
    </item>
    <item
        date="2007-01-09T19:00:00"
        title="Reminder: EclipseCon short talks and demo proposals due January 31st"
        link="http://www.eclipsecon.org">
        Short talks and demos are a great way to get the word out about what you're doing, and preparation is easy.
    </item>
    <item
        date="2006-12-20T19:00:00"
        title="The Development Power of Open Source AJAX Tooling Article Published"
        link="http://java.sys-con.com/read/313546.htm">
        <a
            href="http://java.sys-con.com/read/313546.htm"
            target="_top">
            The Development Power of Open Source AJAX Tooling
        </a>
        article by Kevin Sawicki published on
        <a
            href="http://java.sys-con.com/"
            target="_top">
            Java Developer's Journal
        </a>
        .
    </item>
    <item
        date="2006-12-20T19:00:00"
        title="Valentin Baciu elected as WTP committer">
        Congratulations to our newest committer,
        <a href="http://www.eclipse.org/webtools/people/baciu.html">Valentin Baciu</a>
        from IBM. Valentin is part of the XML Web services team.
    </item>
    <item
        date="2006-11-27T12:00:00"
        title="Consuming Web Services Using Eclipse Web Tools"
        link="http://www.eclipsereview.com/issues/eclipsereview_200612.pdf">
        <a
            href="http://www.eclipsereview.com/issues/eclipsereview_200612.pdf"
            target="_top">
            Consuming Web Services Using Eclipse Web Tools
        </a>
        article by
        <a href="http://www.eclipse.org/webtools/people/judd.html">Christopher Judd</a>
        published in
        <a
            href="http://www.eclipsereview.com"
            target="_top">
            Eclipse Review
        </a>
        .
    </item>
    <item
        date="2006-10-31T12:00:00"
        title="WTP 1.5.2 Released!"
        link="http://archive.eclipse.org/webtools/downloads/drops/R1.5/R-1.5.2-200610261841/">
        WTP 1.5.2 has been released to fix serious bugs and performance problems that were found too late to fix in the previous maintenance release. Those with 1.5.1 already installed need only use Update Manager to "find updates for currently installed features".
        <br />
        All-in-one zip files, SDKs, and minimal runtimes are also available from the download site.
    </item>
    <item
        date="2006-10-13T17:50:00"
        title="Java Web Application Development with Eclipse published on Safari Rough Cuts"
        link="http://my.safaribooksonline.com/0321396855">
        <a
            href="http://my.safaribooksonline.com/0321396855"
            target="_top">
            <img
                src="http://www.eclipse.org/webtools/community/images/javawebappdevweclipsecover.jpg"
                border="0" />
        </a>
        <br />
        <a
            href="http://my.safaribooksonline.com/0321396855"
            target="_top">
            Java Web Application Development with Eclipse
        </a>
        , the latest book in the Eclipse series, by
        <a href="http://www.eclipse.org/webtools/people/dai.html">Naci Dai</a>
        ,
        <a href="http://www.eclipse.org/webtools/people/mandel.html">Lawrence Mandel</a>
        , and
        <a href="http://www.eclipse.org/webtools/people/ryman.html">Arthur Ryman</a>
        is now available in rough form from Safari Rough Cuts.
    </item>
    <item
        date="2006-10-03T18:50:00"
        title="HTTP Connection Tracer diagnosic utility posted"
        link="http://www.eclipse.org/webtools/development/httptracerutility/index.html">
        Having trouble with network connectivity in Eclipse/WTP? Try the new
        <a href="http://www.eclipse.org/webtools/development/httptracerutility/index.html">HTTP connection tracer diagnostic utility</a>
        .
    </item>
    <item
        date="2006-09-29T20:30:00"
        title="WTP 1.5.1 Released as part of Callisto update pack"
        link="http://archive.eclipse.org/webtools/downloads/drops/R1.5/R-1.5.1-200609230508/">
        <a href="http://archive.eclipse.org/webtools/downloads/drops/R1.5/R-1.5.1-200609230508/">WTP 1.5.1</a>
        was released as part of the fall Callisto maintenance release. WTP Zips and all-in-one bundles for frequently downloaded configurations are also available.
    </item>
    <item
        date="2006-09-07T20:30:00"
        title="EclipseWorld 2006 Presentations Available"
        link="http://www.eclipse.org/webtools/community/presentations.html">
        <a href="http://www.eclipseworld.net/">EclipseWorld 2006</a>
        is currently underway in Cambridge, MA, with plenty of WTP content. Check out the
        <a href="http://www.eclipse.org/webtools/community/presentations.html">WTP Presentation Archive</a>
        for EclipseWorld 2006 material, including programming examples. Presenters are invited to post their material to the WTP archive by attaching files to
        <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=156597">bug 126597.</a>
    </item>
    <item
        date="2006-08-08T17:00:00"
        title="WTP Website Owner and Website Developers Needed"
        link="https://bugs.eclipse.org/bugs/show_bug.cgi?id=153085">
        WTP is looking for people willing to help maintain and enhance our website, including:
        <ul>
            <li>Converting the look and feel to Phoenix</li>
            <li>Improving organization, information accessibility, and readability</li>
            <li>Adding additional user information, including tutorials, getting started documents, and similar</li>
            <li>Providing additional information about planning, committers, ongoing projects, and other WTP activities</li>
            <li>Improving accessibility and cross-browser support</li>
        </ul>
        If you're interested in helping or leading this effort, please comment on
        <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=153085">bug 153085</a>
        or e-mail the WTP dev list - wtp-dev@eclipse.org.
    </item>
    <item
        date="2006-08-08T17:00:00"
        title="Sybase Contributes Graphical Page Designer to WTP"
        link="https://bugs.eclipse.org/bugs/show_bug.cgi?id=152533">
        Sybase has contributed a graphical page designer for HTML, JSP and JSF pages to WTP. The initial contribution can be download from
        <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=152533">bug 152533</a>
        .
    </item>
    <item
        date="2006-08-08T17:00:00"
        title="Bob Goodman elected as WTP committer">
        Congratulations to our newest committer,
        <a href="http://www.eclipse.org/webtools/people/goodman.html">Bob Goodman</a>
        from IBM. Bob is the new ATF project lead and will work closely with the WTP PMC to align ATF with WTP.
    </item>
    <item
        date="2006-07-12T18:15:00"
        title="WTP voted top Eclipse project by Eclipse Magazine"
        link="http://www.eclipse-magazin.de/umfrage/em/rc_2006/index.xhtml">
        WTP has been recognized with the
        <a
            href="http://www.eclipse-magazin.de/umfrage/em/rc_2006/index.xhtml"
            target="_top">
            Eclipse Magazine Reader's Choice 2006 award
        </a>
        for best Eclipse top level project. Congratulations to all the WTP committers and contributors!
    </item>
    <item
        date="2006-06-30T20:30:00"
        title="WTP 1.5 Released!"
        link="http://www.eclipse.org/webtools/releases/1.5/">
        WTP 1.5 is now available. You can read about the release and find out how to get it
        <a href="http://www.eclipse.org/webtools/releases/1.5/">here</a>
        .
    </item>
    <item
        date="2006-06-27T17:50:00"
        title="Cameron Bateman elected as WTP committer">
        Congratulations to our newest committer,
        <a href="http://www.eclipse.org/webtools/people/bateman.html">Cameron Bateman</a>
        from Oracle. Cameron Bateman is a prolific contributor to the JSF Tools project. He is the author of the JSF 1.1 EL validation functionality and contributed the Design-time Application Manager Framework as part of implementing the above functionality. He has also raised and fixed numerous
        issues in the JSF Tools Project.
    </item>
    <item
        date="2006-06-23T04:44:00"
        title="WTP 1.5 RC6 Declared!">
        <!--
            link="http://download.eclipse.org/webtools/committers/drops/S-1.5RC6-200606230444/">
            WTP 1.5 RC6 is available for
            <a
            href="http://download.eclipse.org/webtools/committers/drops/S-1.5RC6-200606230444/"
            target="_top">
            download
            </a>
            . It will likely be the final release candidate.
        -->
    </item>
    <item
        date="2006-06-20T14:20:00"
        title="Peter Moogk elected as WTP committer">
        Congratulations to our newest committer,
        <a href="http://www.eclipse.org/webtools/people/moogk.html">Peter Moogk</a>
        from IBM. Peter built the Environment Command Framework, was instrumental in the convergance of the Web service and J2EE tools teams' wizard frameworks and is responsible for the internet proxy page.
    </item>
    <item
        date="2006-06-16T16:50:00"
        title="WTP 1.5 RC5 Declared!">
        <!--
            link="http://download2.eclipse.org/webtools/downloads/drops/S-1.5RC5-200606161055/">
            WTP 1.5 RC5 is available for
            <a
            href="http://download2.eclipse.org/webtools/downloads/drops/S-1.5RC5-200606161055/"
            target="_top">
            download
            </a>
            !
        -->
    </item>
    <item
        date="2006-05-31T16:50:00"
        title="WTP 1.5 RC4 Declared!">
        <!--
            link="http://download2.eclipse.org/webtools/downloads/drops/S-1.5RC4-200605310507/">
            WTP 1.5 RC4 is available for
            <a
            href="http://download2.eclipse.org/webtools/downloads/drops/S-1.5RC4-200605310507/"
            target="_top">
            download
            </a>
            !
        -->
    </item>
    <item
        date="2006-05-26T16:50:00"
        title="Developing and Profiling Web Services Webinar"
        link="http://www.eclipse.org/callisto/webinars.php">
        Join the WTP/TPTP Eclipse webinar on June 12 from 11:00am-12:00pmET.
        <a
            href="http://www.eclipse.org/callisto/webinars.php"
            target="_top">
            Click here
        </a>
        to register.
    </item>
    <item
        date="2006-05-18T16:50:00"
        title="WTP 1.5 RC3 Declared!">
        <!--
            link="http://download.eclipse.org/webtools/downloads/drops/S-1.5RC3-200605182217/">
            WTP 1.5 RC3 is available for
            <a
            href="http://download.eclipse.org/webtools/downloads/drops/S-1.5RC3-200605182217/"
            target="_top">
            download
            </a>
            !
        -->
    </item>
    <item
        date="2006-05-10T19:51:00"
        title="Bringing Together Eclipse, WTP, Struts, and Hibernate Article Published"
        link="http://java.sys-con.com/read/216320.htm">
        <a
            href="http://java.sys-con.com/read/216320.htm"
            target="_top">
            Bringing Together Eclipse, WTP, Struts, and Hibernate
        </a>
        article by Boris Minkin published on
        <a
            href="http://java.sys-con.com/"
            target="_top">
            Java Developer's Journal
        </a>
        .
    </item>
    <item
        date="2006-05-05T18:36:00"
        title="WTP 1.5 RC2 Declared!">
        <!--
            link="http://download.eclipse.org/webtools/downloads/drops/S-1.5RC2-200605051426/">
            WTP 1.5 RC2 is available for
            <a
            href="http://download.eclipse.org/webtools/downloads/drops/S-1.5RC2-200605051426/"
            target="_top">
            download
            </a>
            !
        -->
    </item>
    <item
        date="2006-04-27T21:32:00"
        title="WTP 1.0.2 Released!"
        link="http://www.eclipse.org/webtools/releases/1.0.2/">
        WTP 1.0.2 is now available! Information about the release is available on the
        <a
            href="http://www.eclipse.org/webtools/releases/1.0.2/"
            target="_top">
            WTP 1.0.2 release page
        </a>
        .
    </item>
    <item
        date="2006-04-21T07:53:00"
        title="WTP 1.5 RC1a Declared!">
        <!--
            link="http://download.eclipse.org/webtools/downloads/drops/S-1.5RC1a-200604210753/">
            WTP 1.5 RC1a is available for
            <a
            href="http://download.eclipse.org/webtools/downloads/drops/S-1.5RC1a-200604210753/"
            target="_top">
            download
            </a>
            !
        -->
    </item>
    <item
        date="2006-04-10T19:35:00"
        title="Creating Database Web Applications with Eclipse Article Published"
        link="http://www.eclipse.org/articles/Article-EclipseDbWebapps/article.html">
        <a
            href="http://www.eclipse.org/articles/Article-EclipseDbWebapps/article.html"
            target="_top">
            Creating Database Web Applications with Eclipse
        </a>
        article by Stephen Schaub published on
        <a
            href="http://www.eclipse.org/articles/"
            target="_top">
            Eclipse Corner
        </a>
        .
    </item>
    <item
        date="2006-03-27T18:00:00"
        title="Develop Web Applications FASTER with WTP Article Published"
        link="http://www.eclipsereview.com/issues/eclipsereview_200603.pdf?page=25">
        <a
            href="http://www.eclipsereview.com/issues/eclipsereview_200603.pdf?page=25"
            target="_top">
            Develop Web Applications FASTER with WTP
        </a>
        article by
        <a href="http://www.eclipse.org/webtools/people/wagner.html">Tim Wagner</a>
        published in
        <a
            href="http://www.eclipsereview.com"
            target="_top">
            Eclipse Review
        </a>
        .
    </item>
    <item
        date="2006-03-22T01:00:00"
        title="ATF Initial Contribution Available for Evaluation"
        link="https://bugs.eclipse.org/bugs/show_bug.cgi?id=132238">
        The source code for the initial IBM contribution to the AJAX Toolkit Framework incubator has been posted to bug
        <a
            href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=132238"
            target="_top">
            132238
        </a>
        by project lead Craig Becker. Potential contributors are encouraged to download and evaluate this code now. Users can download a binary version that runs on WTP 1.0.1 from
        <a
            href="http://www.alphaworks.ibm.com/tech/ajaxtk"
            target="_top">
            alphaWorks
        </a>
        where demos are also available.
    </item>
    <item
        date="2006-03-19T06:20:00"
        title="WTP Project Sprint - Mon. Mar. 20, 6:30-8:30pm"
        link="http://www.eclipse.org/webtools/">
        Join the WTP team at EclipseCon for the WTP project sprint. Hear first-hand from those leading and developing the project about WTP's achievements during the past year and direction for the upcoming 1.5 release.
        <br />
        Monday, March 20, 6:30-8:30pm, EclipseCon, Room 203.
    </item>
    <item
        date="2006-03-16T19:41:00"
        title="WTP Logo Unveiled"
        link="http://www.eclipse.org/webtools/">
        <img
            src="http://www.eclipse.org/webtools/images/wtplogonewsannouncement.jpg"
            height="64"
            width="103" />
        <br />
        WTP has a new look in a new logo. Thanks to Artur Filipiak for creating and contributing the new WTP logo.
    </item>
    <item
        date="2006-02-28T21:15:00"
        title="WTP 1.0.1 Released!"
        link="http://www.eclipse.org/webtools/releases/1.0.1/">
        WTP 1.0.1 is now available! Information about the release is available on the
        <a
            href="http://www.eclipse.org/webtools/releases/1.0.1/"
            target="_top">
            WTP 1.0.1 release page
        </a>
        .
    </item>
    <item
        date="2006-02-21T17:00:00"
        title="Developing Web Services Eclipse Web Tools Project Article Published"
        link="http://java.sys-con.com/read/180402.htm">
        <a
            href="http://java.sys-con.com/read/180402.htm"
            target="_top">
            Developing Web Services Eclipse Web Tools Project
        </a>
        article by Boris Minkin published on
        <a
            href="http://java.sys-con.com/"
            target="_top">
            Java Developer's Journal
        </a>
        .
    </item>
    <item
        date="2006-02-21T17:00:00"
        title="Eclipse WTP User Experience Study Announced"
        link="http://ws.cs.ubc.ca/~lkf/antoine/">
        In partnership with IBM, the Department of Computer Science at the University of British Columbia is running a study to improve the Eclipse IDE user experience. Help improve the WTP user experience by
        <a
            href="http://ws.cs.ubc.ca/~lkf/antoine/"
            target="_top">
            participating in the study
        </a>
        .
    </item>
    <item
        date="2006-02-20T22:28:00"
        title="EclipseCon Web Tools Track Announced"
        link="http://www.eclipsecon.org/2006/Sub.do?id=338">
        <a href="http://www.eclipsecon.org/">
            <img
                border="0"
                src="http://www.eclipsecon.org/2006/images/banner132x38.gif" />
        </a>
        <br />
        The
        <a
            href="http://www.eclipsecon.org/2006/Sub.do?id=338"
            target="_top">
            Web Tools Track
        </a>
        has been announced for EclipseCon 2006. The track includes talks and tutorials about WTP and related to Web development.
    </item>
    <item
        date="2006-02-08T21:00:00"
        title="Eclipse TPTP Strengthens Integration with BIRT and WTP"
        link="http://www.eclipse.org/tptp/groups/Marketing/pressroom/pressreleases/BIRT%20and%20WTP.htm">
        Eclipse TPTP Strengthens Integration with BIRT and WTP. Read the press release
        <a
            href="http://www.eclipse.org/tptp/groups/Marketing/pressroom/pressreleases/BIRT%20and%20WTP.htm"
            target="_top">
            here
        </a>
        .
    </item>
    <item
        date="2006-01-31T19:19:00"
        title="Authoring with Eclipse Article Published on Eclipse Corner"
        link="http://www.eclipse.org/articles/Article-Authoring-With-Eclipse/AuthoringWithEclipse.html">
        <a
            href="http://www.eclipse.org/articles/Article-Authoring-With-Eclipse/AuthoringWithEclipse.html"
            target="_top">
            Authoring with Eclipse
        </a>
        article by Chris Aniszczyk and Lawrence Mandel published on
        <a
            href="http://www.eclipse.org/articles/"
            target="_top">
            Eclipse Corner
        </a>
        . This article features WTP's XML tools.
    </item>
    <item
        date="2005-12-23"
        title="WTP Logo Contest"
        link="http://www.eclipse.org/webtools/wtplogocontest.php">
        WTP's logo (the default screen seen on the WTP home page) is in need of an update. Announcing the WTP logo contest! Submit your logos for WTP and comment and vote on existing submissions on
        <a
            href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=122593"
            target="_top">
            bug 122593
        </a>
        . Submission deadline is Jan. 31. Voting deadline is Feb. 16.
    </item>
    <item
        date="2005-12-23"
        title="WTP 1.0 Release"
        link="http://www.eclipse.org/webtools/releases/1.0/">
        WTP 1.0 is now available. You can read about the release and find out how to get it
        <a href="http://www.eclipse.org/webtools/releases/1.0/">here</a>
        .
    </item>
    <item
        date="2005-12-20"
        title="WTP 1.0 Release"
        link="http://www.eclipse.org/webtools/releases/1.0/">
        The release of WTP 1.0 is planned for 2005-12-23. You can read about the release and get early access to it
        <a href="http://www.eclipse.org/webtools/releases/1.0/">here</a>
        .
    </item>
    <item
        date="2005-12-20"
        title="WTP 1.0 Featured on InfoWorld"
        link="http://www.infoworld.com/article/05/12/19/HNeclipsewebtools_1.html">
        WTP 1.0 is featured on InfoWorld! Read the article
        <a
            href="http://www.infoworld.com/article/05/12/19/HNeclipsewebtools_1.html"
            target="_top">
            here
        </a>
        .
    </item>
    <item
        date="2005-12-20"
        title="WTP 1.0 Featured on Business Wire"
        link="http://home.businesswire.com/portal/site/google/index.jsp?ndmViewId=news_view&amp;newsId=20051219005407&amp;newsLang=en">
        WTP 1.0 is featured on Business Wire! Read the article
        <a
            href="http://home.businesswire.com/portal/site/google/index.jsp?ndmViewId=news_view&amp;newsId=20051219005407&amp;newsLang=en"
            target="_top">
            here
        </a>
        .
    </item>
    <item
        date="2005-12-20"
        title="WTP 1.0 Featured on eWeek"
        link="http://www.eweek.com/article2/0,1895,1903446,00.asp">
        WTP 1.0 is featured on eWeek! Read the article
        <a
            href="http://www.eweek.com/article2/0,1895,1903446,00.asp"
            target="_top">
            here
        </a>
        .
    </item>
    <item
        date="2005-12-16"
        title="Build rich Internet applications tutorial Published on developerWorks"
        link="http://www.ibm.com/developerworks/edu/os-dw-os-laszlo-i.html">
        <a
            href="http://www.ibm.com/developerworks/edu/os-dw-os-laszlo-i.html"
            target="_top">
            Build rich Internet applications
        </a>
        tutorial by Christopher Judd published on
        <a
            href="http://www.ibm.com/developerWorks"
            target="_top">
            developerWorks
        </a>
        .
    </item>
    <item
        date="2005-12-16"
        title="WTP 1.0 RC5 available for download">
        <!--
            WTP 1.0 RC5 is available for
            <a
            href="http://download.eclipse.org/webtools/downloads/drops/S-1.0RC5-200512160606/"
            target="_top">
            download
            </a>
            !
        -->
    </item>
    <item
        date="2005-12-12"
        title="WTP 1.0 RC4 available for download">
        <!--
            WTP 1.0 RC4 is available for
            <a
            href="http://download.eclipse.org/webtools/downloads/drops/S-1.0RC4-200512122136/"
            target="_top">
            download
            </a>
            !
        -->
    </item>
    <item
        date="2005-12-11"
        title="WTP 1.0 RC3 available for download">
        <!--
            WTP 1.0 RC3 is available for
            <a
            href="http://download.eclipse.org/webtools/downloads/drops/S-1.0RC3-200512111734/"
            target="_top">
            download
            </a>
            !
        -->
    </item>
    <item
        date="2005-12-09"
        title="WTP 1.0 RC2 available for download">
        <!--
            WTP 1.0 RC2 is available for
            <a
            href="http://download.eclipse.org/webtools/downloads/drops/S-1.0RC2-200512081903/"
            target="_top">
            download
            </a>
            !
        -->
    </item>
    <item
        date="2005-12-02"
        title="WTP 1.0 RC1 available for download">
        <!--
            WTP 1.0 RC1 is available for
            <a
            href="http://download.eclipse.org/webtools/downloads/drops/S-1.0RC1-200512020059/"
            target="_top">
            download
            </a>
            !
        -->
    </item>
    <item
        date="2005-11-23"
        title="WTP 1.0 M9 available for download">
        <!--
            WTP 1.0 M9 is available for
            <a
            href="http://download.eclipse.org/webtools/downloads/drops/S-1.0M9-200511222306/"
            target="_top">
            download
            </a>
            ! A description of New and Noteworthy features can be found
            <a
            href="http://eclipse.org/webtools/development/news/1.0M9.html">
            here
            </a>
            .
        -->
    </item>
    <item
        date="2005-11-22"
        title="Creating Web Applications with the Eclipse Web Tools Project Article Published on Java Developer's Journal"
        link="http://java.sys-con.com/read/152270.htm">
        <a
            href="http://java.sys-con.com/read/152270.htm"
            target="_top">
            Creating Web Applications with the Eclipse Web Tools Project
        </a>
        article by Boris Minkin published on
        <a
            href="http://java.sys-con.com/"
            target="_top">
            Java Developer's Journal
        </a>
        .
    </item>
    <item
        date="2005-11-17"
        title="John Lanuti and Amy Wu elected as WTP committers">
        Congratulations to our newest committers,
        <a href="http://www.eclipse.org/webtools/people/lanuti.html">John Lanuti</a>
        and
        <a href="http://www.eclipse.org/webtools/people/wu.html">Amy Wu</a>
        , both from IBM. John already works on many aspects of WTP including the EJB bean and servlet wizards, flexible component API, and server API. Amy is also very involved in WTP working on new file wizard templates and the configuration extension points, moving WTP editors to the "hyperlink"
        API, opening and fixing many, many bugs, and responding to questions on the newsgroup.
    </item>
    <item
        date="2005-10-12"
        title="Persisting EMF models with WTP Published on Eclipse Corner"
        link="http://www.eclipse.org/articles/Article-WTP-Persisting-EMF/persisting.html">
        <a
            href="http://www.eclipse.org/articles/Article-WTP-Persisting-EMF/persisting.html"
            target="_top">
            Persisting EMF models with WTP
        </a>
        article by Daniel Rohe published on
        <a
            href="http://www.eclipse.org/articles"
            target="_top">
            Eclipse Corner
        </a>
        .
    </item>
    <item
        date="2005-10-06"
        title="Overview of the Eclipse Web Tools Platform Published on dev2dev"
        link="http://dev2dev.bea.com/pub/a/2005/09/eclipse_web_tools_platform.html">
        <a
            href="http://dev2dev.bea.com/pub/a/2005/09/eclipse_web_tools_platform.html"
            target="_top">
            Overview of the Eclipse Web Tools Platform
        </a>
        article by Tim Wagner, Ted Bashor, Paul Meijer, and Pieter Humphrey published on
        <a
            href="http://dev2dev.bea.com"
            target="_top">
            dev2dev
        </a>
        .
    </item>
    <item
        date="2005-10-06"
        title="Eclipse Web Tools Article Published on OnJava.com"
        link="http://www.onjava.com/pub/a/onjava/2005/10/05/eclipse-web-tools.html">
        <a
            href="http://www.onjava.com/pub/a/onjava/2005/10/05/eclipse-web-tools.html"
            target="_top">
            Eclipse Web Tools
        </a>
        article by Jeffrey Liu and Lawrence Mandel published on
        <a
            href="http://www.onjava.com"
            target="_top">
            O'Reilly OnJava.com
        </a>
        .
    </item>
    <item
        date="2005-09-23"
        title="WTP 1.0 M8 available for download">
        <!--
            WTP 1.0M8 is available for
            <a
            href="http://download.eclipse.org/webtools/downloads/drops/S-1.0M8-200509230840/"
            target="_top">
            download
            </a>
            ! A description of New and Noteworthy features can be found
            <a
            href="http://eclipse.org/webtools/development/news/1.0M8.html">
            here
            </a>
            .
        -->
    </item>
    <item
        date="2005-09-11"
        title="">
        <a href="http://www.eclipse.org/webtools/testtutorials/M2/cmptutorial/CMPScheduleWebApp.html">Building a CMP Based School Schedule Web Application tutorial</a>
        posted.
    </item>
    <item
        date="2005-09-06"
        title="">
        <a
            href="http://www.ibm.com/developerworks/db2/library/techarticle/dm-0509cline/"
            target="_top">
            Building Web Applications with Eclipse, WTP, and Derby
        </a>
        article by Susan L. Cline published on
        <a
            href="http://www.ibm.com/developerworks/"
            target="_top">
            developerWorks
        </a>
        .
    </item>
    <item
        date="2005-08-26"
        title="">
        The
        <a href="http://www.eclipse.org/webtools/jsf">JavaServer Faces Tools Project</a>
        has been created!. The Creation Review was held today and the project was approved. The project will incubate during the WTP 1.0 development cycle and then become a component of the JST subproject in WTP 1.5.
    </item>
    <item
        date="2005-08-10"
        title="">
        WTP 0.7 can now be
        <a href="http://www.eclipse.org/webtools/development/updatesite/updatesite.html">installed</a>
        from the Eclipse.org update site
    </item>
    <item
        date="2005-07-29"
        title="The WTP 0.7 release is available for download">
        <!--
            The WTP 0.7 release is available for
            <a
            href="http://download.eclipse.org/webtools/downloads/drops/R-0.7-200507290654/">
            download
            </a>
            !
        -->
    </item>
    <item
        date="2005-07-28"
        title="WTP 0.7RC5 is now available">
        <!--
            <a
            href="http://download.eclipse.org/webtools/downloads/drops/S-0.7RC5-200507280540/">
            WTP 0.7RC5
            </a>
            is available for download.
        -->
    </item>
    <item
        date="2005-07-27"
        title="WTP 0.7RC4 is now available">
        <!--
            <a
            href="http://download.eclipse.org/webtools/downloads/drops/S-0.7RC4-200507270811/">
            WTP 0.7RC4
            </a>
            is available for download.
        -->
    </item>
    <item
        date="2005-07-25"
        title="">
        Check out the recent
        <a href="http://eclipse.org/webtools/community/community.html#articles">articles</a>
        featuring WTP in Dr. Dobb's Journal and Java Developer Journal.
    </item>
    <item
        date="2005-07-25"
        title="">
        Congratulations to our newest committer,
        <a href="http://eclipse.org/webtools/people/leroux.html">Dirk le Roux</a>
        , Versant! Dirk is working on the Data Tools components of WTP and has contributed support for MySQL.
    </item>
    <item
        date="2005-07-25"
        title="WTP 0.7RC3 is available for download. RC3 is built with the new JEM 1.1 release making all of the dependencies Release builds.">
        <!--
            <a
            href="http://download.eclipse.org/webtools/downloads/drops/S-0.7RC3-200507250308/">
            WTP 0.7RC3
            </a>
            is available for download. RC3 is built with the new JEM 1.1
            release making all of the dependencies Release builds.
        -->
    </item>
    <item
        date="2005-07-22"
        title="WTP 0.7RC2 is available for download.">
        <!--
            <a
            href="http://download.eclipse.org/webtools/downloads/drops/S-0.7RC2-200507221429/">
            WTP 0.7RC2
            </a>
            is available for download. RC2 includes fixes for many critical
            and annoying bugs.
        -->
    </item>
    <item
        date="2005-07-15"
        title="WTP 0.7RC1 is available for download. RC1 contains UI polish and important bug fixes.">
        <!--
            <a
            href="http://download.eclipse.org/webtools/downloads/drops/S-0.7RC1-200507150303/">
            WTP 0.7RC1
            </a>
            is available for download. RC1 contains UI polish and important
            bug fixes.
        -->
    </item>
    <item
        date="2005-07-01"
        title="">
        <!--
            <a
            href="http://download.eclipse.org/webtools/downloads/drops/S-1.0M5-200506302219/">
            WTP Milestone M5
            </a>
        -->
        WTP Milestone M5 is available for download. M5 updates WTP to work with the Eclipse 3.1 release and contains numerous
        <a href="http://www.eclipse.org/webtools/development/news/0.7M5.html">enhancements and bug fixes</a>
        .
    </item>
    <item
        date="2005-06-29"
        title="">
        Two new committers were recently elected to WTP.
        <a href="http://eclipse.org/webtools/people/isaacs.html">Larry Isaacs</a>
        , SAS, is contributing to the Tomcat server support and
        <a href="http://eclipse.org/webtools/people/yeshin.html">Susan Yeshin</a>
        , IBM, is writing the online Help. Congratulations Larry and Susan!
    </item>
    <item
        date="2005-06-01"
        title="">
        The WTP project is hosting a series of
        <a href="http://www.eclipse.org/webtools/development/arch_and_design/arch_page.html">component open houses</a>
        . These open houses are aimed at those looking to extend the platform provided by the WTP project.
    </item>
    <item
        date="2005-05-16"
        title="">
        The WTP
        <a href="http://www.eclipse.org/webtools/people/contributors.html">contributors</a>
        page has been expanded and revamped. Now all contributors get their own page. If you currently have a page, please review it for accuracy and completeness. If someone you know deserves to be recognized for their contributions, send a note nominating them to their component lead or a PMC
        member.
    </item>
    <item
        date="2005-05-09"
        title="">
        <img
            src="http://www.eclipse.org/webtools/community/images/geronimo-logo.png"
            width="173"
            height="50"
            border="0" />
        <br />
        <a href="http://www.eclipse.org/webtools/jst/components/server/0.7/M4/news/geronimo.html">Apache Geronimo server adapter</a>
        available for M4!. Now you can use WTP 1.0 M4 to develop Web applications for Apache Geronimo.
    </item>
    <item
        date="2005-04-30"
        title="">
        <!--
            <a
            href="http://download.eclipse.org/webtools/downloads/drops/S-1.0M4-200504292037/">
            WTP Milestone M4
            </a>
        -->
        WTP Milestone M4 available for download! M4 updates WTP to work with Eclipse 3.1M6 and contains numerous enhancements and bug fixes.
    </item>
    <item
        date="2005-04-11"
        title="">
        <a href="http://www.eclipse.org/webtools/community/presentations.html">WTP Presentation Archive</a>
        created. This page lists WTP presentations that you can use when you talk about WTP. Contribute your own WTP presentations too.
    </item>
    <item
        date="2005-02-26"
        title="">
        <!--
            <a
            href="http://download.eclipse.org/webtools/downloads/drops/S-1.0M3-200502260707/index.html">
            WTP Milestone M3
            </a>
        -->
        WTP Milestone M3 available for download! M3 contains Web services and ejb tools, and flexible project layouts.
    </item>
    <item
        date="2005-02-23"
        title="">
        Six new Web service tutorials posted on the
        <a href="http://www.eclipse.org/webtools/community/community.html#tutorials">community page</a>
        .
    </item>
    <item
        date="2005-02-22"
        title="">
        <a
            href="http://www.bea.com"
            target="_top">
            <img
                src="http://www.eclipse.org/webtools/community/images/bea_logo.gif"
                border="0" />
        </a>
        <br />
        BEA Joins Eclipse Foundation as a Board Member and Strategic Developer; Elected as Lead for Web Tools Platform Project.
        <a
            href="http://www.bea.com/framework.jsp?CNT=pr01421.htm&#38;FP=/content/news_events/press_releases/2005&#38;ref=PR1"
            target="_top">
            Read the complete press release here
        </a>
        .
    </item>
    <item
        date="2005-02-22"
        title="">
        <a href="http://www.eclipse.org/webtools/development/planning/roadmap.html">WTP Roadmap</a>
        posted. This document outlines the plan for WTP 1.0, WTP 1.1, and beyond.
    </item>
    <item
        date="2005-02-21"
        title="">
        <a href="http://www.eclipse.org/webtools/testtutorials/developingwtp/DevelopingWTP.html">Developing the WTP with Eclipse</a>
        tutorial posted. This tutorial provides an introduction to WTP plug-in development using Eclipse.
    </item>
    <item
        date="2005-02-15"
        title="">
        <a href="http://www.eclipse.org/webtools/development/milestone_plans/reports/help-wanted.html">Help Wanted</a>
        page posted. If you would like to contribute to the project, read this page to find work items.
    </item>
    <item
        date="2005-02-08"
        title="">
        <a href="http://www.eclipse.org/webtools/development/apiscanner/apiscanner.html">Eclipse API Scanner</a>
        posted. Learn how to describe the API of a component and scan plug-ins for API violations.
    </item>
    <item
        date="2005-01-24"
        title="">
        <a
            href="http://www.eclipsecon.org/"
            target="_blank">
            <img
                src="http://www.eclipsecon.org/2005/images/2005/friendbanners/132x38.gif"
                border="0" />
        </a>
        <br />
        The WTP team is presenting three technical sessions, a tutorial, and a project sprint at
        <a
            href="http://www.eclipsecon.org/"
            target="_blank">
            EclipseCon
        </a>
        . This is a great opportunity to meet the people and learn about the project. Feb 28th-Mar 1st.
    </item>
    <item
        date="2005-01-24"
        title="">
        <a href="http://www.eclipse.org/webtools/testtutorials/M2/webapptutorial/BuildingAScheduleWebApp.html">Building a Student Schedule Web Application tutorial</a>
        posted.
    </item>
    <item
        date="2005-01-24"
        title="">
        XML Schema Editor demo
        <a href="http://www.eclipse.org/webtools/testtutorials/M2/xml/XSDEditorDemo/XSDEditorDemo_viewlet_swf.html">viewlet</a>
        posted.
    </item>
    <item
        date="2005-01-24"
        title="">
        WTP site updated!
    </item>
    <item
        date="2004-12-23"
        title="">
        <!--
            <a
            href="http://download.eclipse.org/webtools/downloads/drops/S-1.0M2-200412230036/index.html">
            Milestone M2
            </a>
        -->
        Milestone M2 available for download.
    </item>
</news>

Back to the top