Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: da32a1b654262be0c9627059a84b89faf634ee00 (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
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <meta name="author" content="$pageAuthor" />
    <meta name="keywords" content="$pageKeywords" />
    <link
    href="//fonts.googleapis.com/css?family=Open+Sans:400,700,300,600,100"
    rel="stylesheet" type="text/css">
    <link rel="shortcut icon"
    href="/eclipse.org-common/themes/solstice/public/images/favicon.ico" />
    <title><?= $pageTitle;?></title>
    <meta property="og:title" content="<?= $pageTitle;?>" />
    <meta property="og:description"
    content="Eclipse is probably best known as a Java IDE, but it is more: it is an IDE framework, a tools framework, an open source project, a community, an eco-system, and a foundation." />
    <meta property="og:image"
    content="https://www.eclipse.org/eclipse.org-common/themes/Nova/images/eclipse.png" />

    <link rel="stylesheet"
    href="/eclipse.org-common/themes/solstice/public/stylesheets/styles.min.css">

    <!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
    <!--[if lt IE 9]>
    <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
    <script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
    <![endif]-->

    <style>
      td, th {
        line-height: 1;
        padding: 3px;
        text-align: left;
        vertical-align: middle;
      }

      table.downloads {
        /* font-family: "Trebuchet MS", Arial, Helvetica, sans-serif; */
        width: 100%;
        border-collapse: separate;
        border-spacing: 1px;
      }

      td.latest {
        width: 100%;
        background-color: #3b335a;
        color: #FFFFFF;
      }

      td.main {
        width: 100%;
        background-color: #76708C;
        color: #FFFFFF;
      }

      td.name, th.name {
        width: 15%;
        vertical-align: middle;
      }

      td.status, th.status {
        width: 25%;
        vertical-align: middle;
      }

      td.date, th.date {
        width: 40%;
        vertical-align: middle;
      }
    </style>

  </head>
  <body class="" id="body_solstice">
    <a class="sr-only" href="#content">Skip to main content</a>
    <div class="thin-header">
      <header role="banner">
      <div class="container">
        <div id="row-logo-search">
          <div id="header-left">
            <div class="row">
              <div class="hidden-xs col-sm-6">
                <a href="https://eclipse.org/"><img
                  src="/eclipse.org-common/themes/solstice/public/images/logo/eclipse-800x188.png"
                  alt="Eclipse.org logo" class="logo-eclipse-default" /></a>
              </div>
              <div id="main-menu" class="navbar col-sm-18 yamm">
                <div id="navbar-collapse-1"
                  class="navbar-collapse collapse">
                  <ul class="nav navbar-nav">
                    <li class="visible-thin"><a
                      href="https://eclipse.org/downloads/"
                      target="_self">Packages</a></li>
                    <li><a href="https://eclipse.org/users/"
                      target="_self">Getting Started </a></li>
                    <li><a href="https://eclipse.org/membership/"
                      target="_self">Members</a></li>
                    <li><a href="https://eclipse.org/projects/"
                      target="_self">Projects</a></li>
                    <li class="dropdown visible-xs"><a href="#"
                      data-toggle="dropdown" class="dropdown-toggle">Community
                      <b class="caret"></b>
                    </a>
                    <ul class="dropdown-menu">
                      <li><a
                        href="http://marketplace.eclipse.org">Marketplace</a></li>
                      <li><a href="http://events.eclipse.org">Events</a></li>
                      <li><a href="http://www.planeteclipse.org/">Planet
                        Eclipse</a></li>
                      <li><a
                        href="https://eclipse.org/community/eclipse_newsletter/">Newsletter</a></li>
                      <li><a
                        href="https://www.youtube.com/user/EclipseFdn">Videos</a></li>
                    </ul></li>
                    <li class="dropdown visible-xs"><a href="#"
                      data-toggle="dropdown" class="dropdown-toggle">Participate
                      <b class="caret"></b>
                    </a>
                    <ul class="dropdown-menu">
                      <li><a
                        href="https://bugs.eclipse.org/bugs/">Report
                        a Bug</a></li>
                      <li><a href="https://eclipse.org/forums/">Forums</a></li>
                      <li><a href="https://eclipse.org/mail/">Mailing
                        Lists</a></li>
                      <li><a href="https://wiki.eclipse.org/">Wiki</a></li>
                      <li><a href="https://wiki.eclipse.org/IRC">IRC</a></li>
                      <li><a
                        href="https://eclipse.org/contribute/">How
                        to Contribute</a></li>
                    </ul></li>
                    <li class="dropdown visible-xs"><a href="#"
                      data-toggle="dropdown" class="dropdown-toggle">Working
                      Groups <b class="caret"></b>
                    </a>
                    <ul class="dropdown-menu">
                      <li><a
                        href="http://wiki.eclipse.org/Auto_IWG">Automotive</a></li>
                      <li><a href="http://iot.eclipse.org">Internet
                        of Things</a></li>
                      <li><a href="http://locationtech.org">LocationTech</a></li>
                      <li><a href="http://lts.eclipse.org">Long-Term
                        Support</a></li>
                      <li><a href="http://polarsys.org">PolarSys</a></li>
                      <li><a href="http://science.eclipse.org">Science</a></li>
                    </ul></li>
                    <!-- More -->
                    <li class="dropdown hidden-xs"><a
                      data-toggle="dropdown" class="dropdown-toggle">More<b
                        class="caret"></b></a>
                    <ul class="dropdown-menu">
                      <li>
                      <!-- Content container to add padding -->
                      <div class="yamm-content">
                        <div class="row">
                          <ul class="col-sm-8 list-unstyled">
                            <li><p>
                            <strong>Community</strong>
                            </p></li>
                            <li><a
                              href="http://marketplace.eclipse.org">Marketplace</a></li>
                            <li><a
                              href="http://events.eclipse.org">Events</a></li>
                            <li><a
                              href="http://www.planeteclipse.org/">Planet
                              Eclipse</a></li>
                            <li><a
                              href="https://eclipse.org/community/eclipse_newsletter/">Newsletter</a></li>
                            <li><a
                              href="https://www.youtube.com/user/EclipseFdn">Videos</a></li>
                          </ul>
                          <ul class="col-sm-8 list-unstyled">
                            <li><p>
                            <strong>Participate</strong>
                            </p></li>
                            <li><a
                              href="https://bugs.eclipse.org/bugs/">Report
                              a Bug</a></li>
                            <li><a
                              href="https://eclipse.org/forums/">Forums</a></li>
                            <li><a
                              href="https://eclipse.org/mail/">Mailing
                              Lists</a></li>
                            <li><a
                              href="https://wiki.eclipse.org/">Wiki</a></li>
                            <li><a
                              href="https://wiki.eclipse.org/IRC">IRC</a></li>
                            <li><a
                              href="https://eclipse.org/contribute/">How
                              to Contribute</a></li>
                          </ul>
                          <ul class="col-sm-8 list-unstyled">
                            <li><p>
                            <strong>Working Groups</strong>
                            </p></li>
                            <li><a
                              href="http://wiki.eclipse.org/Auto_IWG">Automotive</a></li>
                            <li><a
                              href="http://iot.eclipse.org">Internet
                              of Things</a></li>
                            <li><a
                              href="http://locationtech.org">LocationTech</a></li>
                            <li><a
                              href="http://lts.eclipse.org">Long-Term
                              Support</a></li>
                            <li><a href="http://polarsys.org">PolarSys</a></li>
                            <li><a
                              href="http://science.eclipse.org">Science</a></li>
                          </ul>
                        </div>
                      </div>
                      </li>
                    </ul>
                    </li>
                  </ul>
                </div>
                <div class="navbar-header">
                  <button type="button" class="navbar-toggle"
                    data-toggle="collapse"
                    data-target="#navbar-collapse-1">
                    <span class="sr-only">Toggle navigation</span> <span
                      class="icon-bar"></span> <span class="icon-bar"></span>
                    <span class="icon-bar"></span> <span
                      class="icon-bar"></span>
                  </button>
                  <a href="https://eclipse.org/"
                    class="navbar-brand visible-xs"><img
                    src="/eclipse.org-common/themes/solstice/public/images/logo/eclipse-800x188.png"
                    alt="Eclipse.org logo" width="174"
                    class="logo-eclipse-default" /></a>
                </div>
              </div>
            </div>
          </div>
        </div>
      </div>
      </header>
      <section id="breadcrumb" class="defaut-breadcrumbs hidden-print">
      <div class="container">
        <ol class="breadcrumb">
          <li><a href="https://www.eclipse.org/">Home</a></li>
          <li><a href="https://eclipse.org/projects/">Projects</a></li>
          <li><a href="http://eclipse.org/eclipse/">Eclipse</a></li>
          <li class="active">Downloads</li>
        </ol>
      </div>
      </section>
    </div>
    <main role="main">
    <div class="container background-image-none" id="novaContent">

<h1>The Eclipse Project Downloads</h1>
<p>On this
page you can find the latest builds produced by
the <a href="https://www.eclipse.org/eclipse/">Eclipse
Project</a>. To get started, run the program and go through the user and developer
documentation provided in the help system or
see the <a href="http://help.eclipse.org/">web-based help system</a>.
If you have problems installing or getting the workbench to run, <a href="https://wiki.eclipse.org/index.php/The_Official_Eclipse_FAQs">check
out the Eclipse Project FAQ,</a> or try posting a question to the <a href="https://www.eclipse.org/forums/">forum</a>.
</p>

<p>See the <a href="https://www.eclipse.org/downloads/">main Eclipse Foundation download site</a> for convenient all-in-one packages.
The <a href="http://archive.eclipse.org/eclipse/downloads/">archive site</a> contains older releases (including the last 3.x version, <a href="http://archive.eclipse.org/eclipse/downloads/drops/R-3.8.2-201301310800/">3.8.2</a>).
For reference, see also
<a href="https://wiki.eclipse.org/Eclipse_Project_Update_Sites">the p2 repositories provided</a>,
<a href="build_types.html">meaning of kinds of builds</a> (P,M,N,I,S, and R), and the
<a href="https://www.eclipse.org/eclipse/platform-releng/buildSchedule.html">build schedule</a>.
</p>
<p><img src="new.gif" alt="News Item 1" /> Eclipse support for Java&trade; 8 is built&ndash;in
to <a href="drops4/R-4.4-201406061215/">Luna (4.4)</a> so it, and all subsequent builds, contain full support
for <a href="http://www.oracle.com/technetwork/java/javase/overview/index.html">Java&trade; 8</a>.
For Kepler SR2 (4.3.2), a <a href="https://wiki.eclipse.org/JDT/Eclipse_Java_8_Support_For_Kepler">feature patch</a> with
preliminary Java&trade; 8 support is available (<a href="drops4/P20140317-1600/">P20140317-1600</a>).
</p>
<table class="downloads">
<tr>
<td class="latest">Latest Downloads</td>
</tr>
</table>



<!-- This is the summary section, showing latest of each -->

<table class="downloads table table-hover table-striped table-condensed">
<tr>
<th class="name">Build Name</th>
<th class="status">Build Status</th>
<th class="date">Build Date</th>
</tr>
<tr style="line-hieght:0.8;">
<td class="name"><a href="drops4/R-4.4.1-201409250400/" title="Latest Release">4.4.1</a></td>
<td class="status">
<a href="drops4/R-4.4.1-201409250400/"><img style="border:0px" src="../images/build_done.gif" title="Build is available" alt="Build is available" /></a>
<a href="drops4/R-4.4.1-201409250400/testResults.php" title="3 of 3 test platforms finished." style="text-decoration: none"><img style="border:0px" src="../images/junit.gif" title="Tests results are available" alt="Tests results are available" />
&nbsp;(3 of 3 platforms)
</a>
</td>
<td  class="date">Thu, 25 Sep 2014 -- 04:00 (+0000)</td>
</tr>
<tr style="line-hieght:0.8;">
<td class="name"><a href="drops4/S-4.5M5a-201502031300/" title="4.5 Stable Build">4.5M5a</a></td>
<td class="status">
<a href="drops4/S-4.5M5a-201502031300/"><img style="border:0px" src="../images/build_done.gif" title="Build is available" alt="Build is available" /></a>
<a href="drops4/S-4.5M5a-201502031300/testResults.php" title="3 of 3 test platforms finished." style="text-decoration: none"><img style="border:0px" src="../images/junit.gif" title="Tests results are available" alt="Tests results are available" />
&nbsp;(3 of 3 platforms)
</a>
</td>
<td  class="date">Tue, 3 Feb 2015 -- 13:00 (+0000)</td>
</tr>
<tr style="line-hieght:0.8;">
<td class="name"><a href="drops4/I20150210-0800/" title="4.5 Integration Build">I20150210-0800</a></td>
<td class="status">
<a href="drops4/I20150210-0800/"><img style="border:0px" src="../images/build_done.gif" title="Build is available" alt="Build is available" /></a>
<a href="drops4/I20150210-0800/testResults.php" title="3 of 3 test platforms finished." style="text-decoration: none"><img style="border:0px" src="../images/junit.gif" title="Tests results are available" alt="Tests results are available" />
&nbsp;(3 of 3 platforms)
</a>
</td>
<td  class="date">Tue, 10 Feb 2015 -- 08:00 (+0000)</td>
</tr>
<tr style="line-hieght:0.8;">
<td class="name"><a href="drops4/M-4.4.2RC4-201502041700/" title="4.4 Maintenance Build">4.4.2RC4</a></td>
<td class="status">
<a href="drops4/M-4.4.2RC4-201502041700/"><img style="border:0px" src="../images/build_done.gif" title="Build is available" alt="Build is available" /></a>
<a href="drops4/M-4.4.2RC4-201502041700/testResults.php" title="3 of 3 test platforms finished." style="text-decoration: none"><img style="border:0px" src="../images/junit.gif" title="Tests results are available" alt="Tests results are available" />
&nbsp;(3 of 3 platforms)
</a>
</td>
<td  class="date">Wed, 4 Feb 2015 -- 17:00 (+0000)</td>
</tr>
<tr style="line-hieght:0.8;">
<td class="name"><a href="drops4/N20150213-2000/" title="4.5 Nightly Build">N20150213-2000</a></td>
<td class="status">
<a href="drops4/N20150213-2000/"><img style="border:0px" src="../images/build_done.gif" title="Build is available" alt="Build is available" /></a>
<a href="drops4/N20150213-2000/testResults.php" title="3 of 3 test platforms finished." style="text-decoration: none"><img style="border:0px" src="../images/junit.gif" title="Tests results are available" alt="Tests results are available" />
&nbsp;(3 of 3 platforms)
</a>
</td>
<td  class="date">Fri, 13 Feb 2015 -- 20:00 (+0000)</td>
</tr>
<tr style="line-hieght:0.8;">
<td class="name"><a href="drops4/P20140317-1600/" title="Patch Builds">P20140317-1600</a></td>
<td class="status">
<a href="drops4/P20140317-1600/"><img style="border:0px" src="../images/build_done.gif" title="Build is available" alt="Build is available" /></a>
<a href="drops4/P20140317-1600/testResults.php" title="" style="text-decoration: none"><img style="border:0px" src="../images/results.gif" title="Logs from build" alt="Logs from build" />&nbsp;(No automated tests)</a>
</td>
<td  class="date">Mon, 17 Mar 2014 -- 16:00 (+0000)</td>
</tr>
</table>


<table class="downloads">
<tr id="Latest_Release">
<td class="main">Latest Release</td>
</tr>
</table>
<table class="downloads table table-hover table-striped table-condensed">
<tr>
<th class="name">Build Name</th>
<th class="status">Build Status</th>
<th class="date">Build Date</th>
</tr>
<tr>
<td class="name"><a href="drops4/R-4.4.1-201409250400/">4.4.1</a></td>
<td class="status">
<a href="drops4/R-4.4.1-201409250400/"><img style="border:0px" src="../images/build_done.gif" title="Build is available" alt="Build is available" /></a>
<a href="drops4/R-4.4.1-201409250400/testResults.php" title="3 of 3 test platforms finished." style="text-decoration: none"><img style="border:0px" src="../images/junit.gif" title="Tests results are available" alt="Tests results are available" />
&nbsp;(3 of 3 platforms)
</a>
</td>
<td class="date">Thu, 25 Sep 2014 -- 04:00 (+0000)</td>
</tr>
<tr>
<td class="name"><a href="drops4/R-4.4-201406061215/">4.4</a></td>
<td class="status">
<a href="drops4/R-4.4-201406061215/"><img style="border:0px" src="../images/build_done.gif" title="Build is available" alt="Build is available" /></a>
<a href="drops4/R-4.4-201406061215/testResults.php" title="3 of 3 test platforms finished." style="text-decoration: none"><img style="border:0px" src="../images/junit.gif" title="Tests results are available" alt="Tests results are available" />
&nbsp;(3 of 3 platforms)
</a>
</td>
<td class="date">Fri, 6 Jun 2014 -- 12:15 (+0000)</td>
</tr>
<tr>
<td class="name"><a href="drops4/R-4.3.2-201402211700/">4.3.2</a></td>
<td class="status">
<a href="drops4/R-4.3.2-201402211700/"><img style="border:0px" src="../images/build_done.gif" title="Build is available" alt="Build is available" /></a>
<a href="drops4/R-4.3.2-201402211700/testResults.php" title="3 of 3 test platforms finished." style="text-decoration: none"><img style="border:0px" src="../images/junit.gif" title="Tests results are available" alt="Tests results are available" />
&nbsp;(3 of 3 platforms)
</a>
</td>
<td class="date">Fri, 21 Feb 2014 -- 17:00 (+0000)</td>
</tr>
</table>
<table class="downloads">
<tr id="4.5_Stable_Build">
<td class="main">4.5 Stable Build</td>
</tr>
</table>
<table class="downloads table table-hover table-striped table-condensed">
<tr>
<th class="name">Build Name</th>
<th class="status">Build Status</th>
<th class="date">Build Date</th>
</tr>
<tr>
<td class="name"><a href="drops4/S-4.5M5a-201502031300/">4.5M5a</a></td>
<td class="status">
<a href="drops4/S-4.5M5a-201502031300/"><img style="border:0px" src="../images/build_done.gif" title="Build is available" alt="Build is available" /></a>
<a href="drops4/S-4.5M5a-201502031300/testResults.php" title="3 of 3 test platforms finished." style="text-decoration: none"><img style="border:0px" src="../images/junit.gif" title="Tests results are available" alt="Tests results are available" />
&nbsp;(3 of 3 platforms)
</a>
</td>
<td class="date">Tue, 3 Feb 2015 -- 13:00 (+0000)</td>
</tr>
<tr>
<td class="name"><a href="drops4/S-4.5M5-201501291830/">4.5M5</a></td>
<td class="status">
<a href="drops4/S-4.5M5-201501291830/"><img style="border:0px" src="../images/build_done.gif" title="Build is available" alt="Build is available" /></a>
<a href="drops4/S-4.5M5-201501291830/testResults.php" title="3 of 3 test platforms finished." style="text-decoration: none"><img style="border:0px" src="../images/junit.gif" title="Tests results are available" alt="Tests results are available" />
&nbsp;(3 of 3 platforms)
</a>
</td>
<td class="date">Thu, 29 Jan 2015 -- 18:30 (+0000)</td>
</tr>
<tr>
<td class="name"><a href="drops4/S-4.5M4-201412102000/">4.5M4</a></td>
<td class="status">
<a href="drops4/S-4.5M4-201412102000/"><img style="border:0px" src="../images/build_done.gif" title="Build is available" alt="Build is available" /></a>
<a href="drops4/S-4.5M4-201412102000/testResults.php" title="3 of 3 test platforms finished." style="text-decoration: none"><img style="border:0px" src="../images/junit.gif" title="Tests results are available" alt="Tests results are available" />
&nbsp;(3 of 3 platforms)
</a>
</td>
<td class="date">Wed, 10 Dec 2014 -- 20:00 (+0000)</td>
</tr>
<tr>
<td class="name"><a href="drops4/S-4.5M3-201410292000/">4.5M3</a></td>
<td class="status">
<a href="drops4/S-4.5M3-201410292000/"><img style="border:0px" src="../images/build_done.gif" title="Build is available" alt="Build is available" /></a>
<a href="drops4/S-4.5M3-201410292000/testResults.php" title="3 of 3 test platforms finished." style="text-decoration: none"><img style="border:0px" src="../images/junit.gif" title="Tests results are available" alt="Tests results are available" />
&nbsp;(3 of 3 platforms)
</a>
</td>
<td class="date">Wed, 29 Oct 2014 -- 20:00 (+0000)</td>
</tr>
<tr>
<td class="name"><a href="drops4/S-4.5M2-201409180330/">4.5M2</a></td>
<td class="status">
<a href="drops4/S-4.5M2-201409180330/"><img style="border:0px" src="../images/build_done.gif" title="Build is available" alt="Build is available" /></a>
<a href="drops4/S-4.5M2-201409180330/testResults.php" title="3 of 3 test platforms finished." style="text-decoration: none"><img style="border:0px" src="../images/junit.gif" title="Tests results are available" alt="Tests results are available" />
&nbsp;(3 of 3 platforms)
</a>
</td>
<td class="date">Thu, 18 Sep 2014 -- 03:30 (+0000)</td>
</tr>
<tr>
<td class="name"><a href="drops4/S-4.5M1-201408062000/">4.5M1</a></td>
<td class="status">
<a href="drops4/S-4.5M1-201408062000/"><img style="border:0px" src="../images/build_done.gif" title="Build is available" alt="Build is available" /></a>
<a href="drops4/S-4.5M1-201408062000/testResults.php" title="3 of 3 test platforms finished." style="text-decoration: none"><img style="border:0px" src="../images/junit.gif" title="Tests results are available" alt="Tests results are available" />
&nbsp;(3 of 3 platforms)
</a>
</td>
<td class="date">Wed, 6 Aug 2014 -- 20:00 (+0000)</td>
</tr>
</table>
<table class="downloads">
<tr id="4.5_Integration_Build">
<td class="main">4.5 Integration Build</td>
</tr>
</table>
<table class="downloads table table-hover table-striped table-condensed">
<tr>
<th class="name">Build Name</th>
<th class="status">Build Status</th>
<th class="date">Build Date</th>
</tr>
<tr>
<td class="name"><a href="drops4/I20150210-0800/">I20150210-0800</a></td>
<td class="status">
<a href="drops4/I20150210-0800/"><img style="border:0px" src="../images/build_done.gif" title="Build is available" alt="Build is available" /></a>
<a href="drops4/I20150210-0800/testResults.php" title="3 of 3 test platforms finished." style="text-decoration: none"><img style="border:0px" src="../images/junit.gif" title="Tests results are available" alt="Tests results are available" />
&nbsp;(3 of 3 platforms)
</a>
</td>
<td class="date">Tue, 10 Feb 2015 -- 08:00 (+0000)</td>
</tr>
<tr>
<td class="name"><a href="drops4/I20150203-0800/">I20150203-0800</a></td>
<td class="status">
<a href="drops4/I20150203-0800/"><img style="border:0px" src="../images/build_done.gif" title="Build is available" alt="Build is available" /></a>
<a href="drops4/I20150203-0800/testResults.php" title="3 of 3 test platforms finished." style="text-decoration: none"><img style="border:0px" src="../images/junit.gif" title="Tests results are available" alt="Tests results are available" />
&nbsp;(3 of 3 platforms)
</a>
</td>
<td class="date">Tue, 3 Feb 2015 -- 08:00 (+0000)</td>
</tr>
<tr>
<td class="name"><a href="drops4/I20150129-1830/">I20150129-1830</a></td>
<td class="status">
<a href="drops4/I20150129-1830/"><img style="border:0px" src="../images/build_done.gif" title="Build is available" alt="Build is available" /></a>
<a href="drops4/I20150129-1830/testResults.php" title="3 of 3 test platforms finished." style="text-decoration: none"><img style="border:0px" src="../images/junit.gif" title="Tests results are available" alt="Tests results are available" />
&nbsp;(3 of 3 platforms)
</a>
</td>
<td class="date">Thu, 29 Jan 2015 -- 18:30 (+0000)</td>
</tr>
</table>
<table class="downloads">
<tr id="4.4_Maintenance_Build">
<td class="main">4.4 Maintenance Build</td>
</tr>
</table>
<table class="downloads table table-hover table-striped table-condensed">
<tr>
<th class="name">Build Name</th>
<th class="status">Build Status</th>
<th class="date">Build Date</th>
</tr>
<tr>
<td class="name"><a href="drops4/M-4.4.2RC4-201502041700/">4.4.2RC4</a></td>
<td class="status">
<a href="drops4/M-4.4.2RC4-201502041700/"><img style="border:0px" src="../images/build_done.gif" title="Build is available" alt="Build is available" /></a>
<a href="drops4/M-4.4.2RC4-201502041700/testResults.php" title="3 of 3 test platforms finished." style="text-decoration: none"><img style="border:0px" src="../images/junit.gif" title="Tests results are available" alt="Tests results are available" />
&nbsp;(3 of 3 platforms)
</a>
</td>
<td class="date">Wed, 4 Feb 2015 -- 17:00 (+0000)</td>
</tr>
<tr>
<td class="name"><a href="drops4/M-4.4.2RC3-201502041700/">4.4.2RC3</a></td>
<td class="status">
<a href="drops4/M-4.4.2RC3-201502041700/"><img style="border:0px" src="../images/build_done.gif" title="Build is available" alt="Build is available" /></a>
<a href="drops4/M-4.4.2RC3-201502041700/testResults.php" title="3 of 3 test platforms finished." style="text-decoration: none"><img style="border:0px" src="../images/junit.gif" title="Tests results are available" alt="Tests results are available" />
&nbsp;(3 of 3 platforms)
</a>
</td>
<td class="date">Wed, 4 Feb 2015 -- 17:00 (+0000)</td>
</tr>
<tr>
<td class="name"><a href="drops4/M20150204-1700/">M20150204-1700</a></td>
<td class="status">
<a href="drops4/M20150204-1700/"><img style="border:0px" src="../images/build_done.gif" title="Build is available" alt="Build is available" /></a>
<a href="drops4/M20150204-1700/testResults.php" title="3 of 3 test platforms finished." style="text-decoration: none"><img style="border:0px" src="../images/junit.gif" title="Tests results are available" alt="Tests results are available" />
&nbsp;(3 of 3 platforms)
</a>
</td>
<td class="date">Wed, 4 Feb 2015 -- 17:00 (+0000)</td>
</tr>
<tr>
<td class="name"><a href="drops4/M20150204-0900/">M20150204-0900</a></td>
<td class="status">
<a href="drops4/M20150204-0900/"><img style="border:0px" src="../images/build_done.gif" title="Build is available" alt="Build is available" /></a>
<a href="drops4/M20150204-0900/testResults.php" title="3 of 3 test platforms finished." style="text-decoration: none"><img style="border:0px" src="../images/junit.gif" title="Tests results are available" alt="Tests results are available" />
&nbsp;(3 of 3 platforms)
</a>
</td>
<td class="date">Wed, 4 Feb 2015 -- 09:00 (+0000)</td>
</tr>
<tr>
<td class="name"><a href="drops4/M-4.4.2RC2-201501281000/">4.4.2RC2</a></td>
<td class="status">
<a href="drops4/M-4.4.2RC2-201501281000/"><img style="border:0px" src="../images/build_done.gif" title="Build is available" alt="Build is available" /></a>
<a href="drops4/M-4.4.2RC2-201501281000/testResults.php" title="3 of 3 test platforms finished." style="text-decoration: none"><img style="border:0px" src="../images/junit.gif" title="Tests results are available" alt="Tests results are available" />
&nbsp;(3 of 3 platforms)
</a>
</td>
<td class="date">Wed, 28 Jan 2015 -- 10:00 (+0000)</td>
</tr>
<tr>
<td class="name"><a href="drops4/M20150128-1000/">M20150128-1000</a></td>
<td class="status">
<a href="drops4/M20150128-1000/"><img style="border:0px" src="../images/build_done.gif" title="Build is available" alt="Build is available" /></a>
<a href="drops4/M20150128-1000/testResults.php" title="3 of 3 test platforms finished." style="text-decoration: none"><img style="border:0px" src="../images/junit.gif" title="Tests results are available" alt="Tests results are available" />
&nbsp;(3 of 3 platforms)
</a>
</td>
<td class="date">Wed, 28 Jan 2015 -- 10:00 (+0000)</td>
</tr>
<tr>
<td class="name"><a href="drops4/M20150122-0430/">M20150122-0430</a></td>
<td class="status">
<a href="drops4/M20150122-0430/"><img style="border:0px" src="../images/build_done.gif" title="Build is available" alt="Build is available" /></a>
<a href="drops4/M20150122-0430/testResults.php" title="3 of 3 test platforms finished." style="text-decoration: none"><img style="border:0px" src="../images/junit.gif" title="Tests results are available" alt="Tests results are available" />
&nbsp;(3 of 3 platforms)
</a>
</td>
<td class="date">Thu, 22 Jan 2015 -- 04:30 (+0000)</td>
</tr>
<tr>
<td class="name"><a href="drops4/M20150121-0900/">M20150121-0900</a></td>
<td class="status">
<a href="drops4/M20150121-0900/"><img style="border:0px" src="../images/build_done.gif" title="Build is available" alt="Build is available" /></a>
<a href="drops4/M20150121-0900/testResults.php" title="3 of 3 test platforms finished." style="text-decoration: none"><img style="border:0px" src="../images/junit.gif" title="Tests results are available" alt="Tests results are available" />
&nbsp;(3 of 3 platforms)
</a>
</td>
<td class="date">Wed, 21 Jan 2015 -- 09:00 (+0000)</td>
</tr>
<tr>
<td class="name"><a href="drops4/M-4.4.2RC1-201501141500/">4.4.2RC1</a></td>
<td class="status">
<a href="drops4/M-4.4.2RC1-201501141500/"><img style="border:0px" src="../images/build_done.gif" title="Build is available" alt="Build is available" /></a>
<a href="drops4/M-4.4.2RC1-201501141500/testResults.php" title="3 of 3 test platforms finished." style="text-decoration: none"><img style="border:0px" src="../images/junit.gif" title="Tests results are available" alt="Tests results are available" />
&nbsp;(3 of 3 platforms)
</a>
</td>
<td class="date">Wed, 14 Jan 2015 -- 15:00 (+0000)</td>
</tr>
<tr>
<td class="name"><a href="drops4/M20150114-1500/">M20150114-1500</a></td>
<td class="status">
<a href="drops4/M20150114-1500/"><img style="border:0px" src="../images/build_done.gif" title="Build is available" alt="Build is available" /></a>
<a href="drops4/M20150114-1500/testResults.php" title="3 of 3 test platforms finished." style="text-decoration: none"><img style="border:0px" src="../images/junit.gif" title="Tests results are available" alt="Tests results are available" />
&nbsp;(3 of 3 platforms)
</a>
</td>
<td class="date">Wed, 14 Jan 2015 -- 15:00 (+0000)</td>
</tr>
</table>
<table class="downloads">
<tr id="4.5_Nightly_Build">
<td class="main">4.5 Nightly Build</td>
</tr>
</table>
<table class="downloads table table-hover table-striped table-condensed">
<tr>
<th class="name">Build Name</th>
<th class="status">Build Status</th>
<th class="date">Build Date</th>
</tr>
<tr>
<td class="name"><a href="drops4/N20150213-2000/">N20150213-2000</a></td>
<td class="status">
<a href="drops4/N20150213-2000/"><img style="border:0px" src="../images/build_done.gif" title="Build is available" alt="Build is available" /></a>
<a href="drops4/N20150213-2000/testResults.php" title="3 of 3 test platforms finished." style="text-decoration: none"><img style="border:0px" src="../images/junit.gif" title="Tests results are available" alt="Tests results are available" />
&nbsp;(3 of 3 platforms)
</a>
</td>
<td class="date">Fri, 13 Feb 2015 -- 20:00 (+0000)</td>
</tr>
<tr>
<td class="name"><a href="drops4/N20150212-2000/">N20150212-2000</a></td>
<td class="status">
<a href="drops4/N20150212-2000/"><img style="border:0px" src="../images/build_done.gif" title="Build is available" alt="Build is available" /></a>
<a href="drops4/N20150212-2000/testResults.php" title="3 of 3 test platforms finished." style="text-decoration: none"><img style="border:0px" src="../images/junit.gif" title="Tests results are available" alt="Tests results are available" />
&nbsp;(3 of 3 platforms)
</a>
</td>
<td class="date">Thu, 12 Feb 2015 -- 20:00 (+0000)</td>
</tr>
<tr>
<td class="name"><a href="drops4/N20150211-2000/">N20150211-2000</a></td>
<td class="status">
<a href="drops4/N20150211-2000/"><img style="border:0px" src="../images/build_done.gif" title="Build is available" alt="Build is available" /></a>
<a href="drops4/N20150211-2000/testResults.php" title="3 of 3 test platforms finished." style="text-decoration: none"><img style="border:0px" src="../images/junit.gif" title="Tests results are available" alt="Tests results are available" />
&nbsp;(3 of 3 platforms)
</a>
</td>
<td class="date">Wed, 11 Feb 2015 -- 20:00 (+0000)</td>
</tr>
<tr>
<td class="name"><a href="drops4/N20150210-2000/">N20150210-2000</a></td>
<td class="status">
<a href="drops4/N20150210-2000/"><img style="border:0px" src="../images/build_done.gif" title="Build is available" alt="Build is available" /></a>
<a href="drops4/N20150210-2000/testResults.php" title="3 of 3 test platforms finished." style="text-decoration: none"><img style="border:0px" src="../images/junit.gif" title="Tests results are available" alt="Tests results are available" />
&nbsp;(3 of 3 platforms)
</a>
</td>
<td class="date">Tue, 10 Feb 2015 -- 20:00 (+0000)</td>
</tr>
<tr>
<td class="name"><a href="drops4/N20150209-2000/">N20150209-2000</a></td>
<td class="status">
<a href="drops4/N20150209-2000/"><img style="border:0px" src="../images/build_done.gif" title="Build is available" alt="Build is available" /></a>
<a href="drops4/N20150209-2000/testResults.php" title="3 of 3 test platforms finished." style="text-decoration: none"><img style="border:0px" src="../images/junit.gif" title="Tests results are available" alt="Tests results are available" />
&nbsp;(3 of 3 platforms)
</a>
</td>
<td class="date">Mon, 9 Feb 2015 -- 20:00 (+0000)</td>
</tr>
<tr>
<td class="name"><a href="drops4/N20150208-2000/">N20150208-2000</a></td>
<td class="status">
<a href="drops4/N20150208-2000/"><img style="border:0px" src="../images/build_done.gif" title="Build is available" alt="Build is available" /></a>
<a href="drops4/N20150208-2000/testResults.php" title="2 of 3 test platforms finished." style="text-decoration: none"><img style="border:0px" src="../images/junit.gif" title="Tests results are available but did not finish on all machines" alt="Tests results are available but did not finish on all machines" />
&nbsp;(2 of 3 platforms)
</a>
</td>
<td class="date">Sun, 8 Feb 2015 -- 20:00 (+0000)</td>
</tr>
<tr>
<td class="name"><a href="drops4/N20150207-1500/">N20150207-1500</a></td>
<td class="status">
<a href="drops4/N20150207-1500/"><img style="border:0px" src="../images/build_done.gif" title="Build is available" alt="Build is available" /></a>
<a href="drops4/N20150207-1500/testResults.php" title="3 of 3 test platforms finished." style="text-decoration: none"><img style="border:0px" src="../images/junit.gif" title="Tests results are available" alt="Tests results are available" />
&nbsp;(3 of 3 platforms)
</a>
</td>
<td class="date">Sat, 7 Feb 2015 -- 15:00 (+0000)</td>
</tr>
<tr>
<td class="name"><a href="drops4/N20150206-2000/">N20150206-2000</a></td>
<td class="status">
<a href="drops4/N20150206-2000/"><img style="border:0px" src="../images/build_failed.gif" title="Build failed" alt="Build failed" /></a>
<a href="drops4/N20150206-2000/testResults.php" title="" style="text-decoration: none"><img style="border:0px" src="../images/caution.gif" title="Integration tests did not run due to failed build" alt="Integration tests did not run due to failed build" />
</a>
</td>
<td class="date">Fri, 6 Feb 2015 -- 20:00 (+0000)</td>
</tr>
<tr>
<td class="name"><a href="drops4/N20150205-2000/">N20150205-2000</a></td>
<td class="status">
<a href="drops4/N20150205-2000/"><img style="border:0px" src="../images/build_done.gif" title="Build is available" alt="Build is available" /></a>
<a href="drops4/N20150205-2000/testResults.php" title="3 of 3 test platforms finished." style="text-decoration: none"><img style="border:0px" src="../images/junit.gif" title="Tests results are available" alt="Tests results are available" />
&nbsp;(3 of 3 platforms)
</a>
</td>
<td class="date">Thu, 5 Feb 2015 -- 20:00 (+0000)</td>
</tr>
<tr>
<td class="name"><a href="drops4/N20150203-2000/">N20150203-2000</a></td>
<td class="status">
<a href="drops4/N20150203-2000/"><img style="border:0px" src="../images/build_done.gif" title="Build is available" alt="Build is available" /></a>
<a href="drops4/N20150203-2000/testResults.php" title="3 of 3 test platforms finished." style="text-decoration: none"><img style="border:0px" src="../images/junit.gif" title="Tests results are available" alt="Tests results are available" />
&nbsp;(3 of 3 platforms)
</a>
</td>
<td class="date">Tue, 3 Feb 2015 -- 20:00 (+0000)</td>
</tr>
<tr>
<td class="name"><a href="drops4/N20150202-2000/">N20150202-2000</a></td>
<td class="status">
<a href="drops4/N20150202-2000/"><img style="border:0px" src="../images/build_done.gif" title="Build is available" alt="Build is available" /></a>
<a href="drops4/N20150202-2000/testResults.php" title="3 of 3 test platforms finished." style="text-decoration: none"><img style="border:0px" src="../images/junit.gif" title="Tests results are available" alt="Tests results are available" />
&nbsp;(3 of 3 platforms)
</a>
</td>
<td class="date">Mon, 2 Feb 2015 -- 20:00 (+0000)</td>
</tr>
<tr>
<td class="name"><a href="drops4/N20150201-2000/">N20150201-2000</a></td>
<td class="status">
<a href="drops4/N20150201-2000/"><img style="border:0px" src="../images/build_done.gif" title="Build is available" alt="Build is available" /></a>
<a href="drops4/N20150201-2000/testResults.php" title="3 of 3 test platforms finished." style="text-decoration: none"><img style="border:0px" src="../images/junit.gif" title="Tests results are available" alt="Tests results are available" />
&nbsp;(3 of 3 platforms)
</a>
</td>
<td class="date">Sun, 1 Feb 2015 -- 20:00 (+0000)</td>
</tr>
<tr>
<td class="name"><a href="drops4/N20150131-2115/">N20150131-2115</a></td>
<td class="status">
<a href="drops4/N20150131-2115/"><img style="border:0px" src="../images/build_done.gif" title="Build is available" alt="Build is available" /></a>
<a href="drops4/N20150131-2115/testResults.php" title="0 of 3 test platforms finished." style="text-decoration: none"><img style="border:0px" src="../images/caution.gif" title="Integration tests did not run, due to unknown reasons." alt="Integration tests did not run, due to unknown reasons." />
&nbsp;(0 of 3 platforms)
</a>
</td>
<td class="date">Sat, 31 Jan 2015 -- 21:15 (+0000)</td>
</tr>
</table>
<table class="downloads">
<tr id="Patch_Builds">
<td class="main">Patch Builds</td>
</tr>
</table>
<table class="downloads table table-hover table-striped table-condensed">
<tr>
<th class="name">Build Name</th>
<th class="status">Build Status</th>
<th class="date">Build Date</th>
</tr>
<tr>
<td class="name"><a href="drops4/P20140317-1600/">P20140317-1600</a></td>
<td class="status">
<a href="drops4/P20140317-1600/"><img style="border:0px" src="../images/build_done.gif" title="Build is available" alt="Build is available" /></a>
<a href="drops4/P20140317-1600/testResults.php" title="" style="text-decoration: none"><img style="border:0px" src="../images/results.gif" title="Logs from build" alt="Logs from build" />&nbsp;(No automated tests)</a>
</td>
<td class="date">Mon, 17 Mar 2014 -- 16:00 (+0000)</td>
</tr>
</table>

</div>
</main>
<!-- /#main-content-container-row -->
<p id="back-to-top">
  <a class="visible-xs" href="#top">Back to the top</a>
</p>
<footer role="contentinfo">

  <div class="container">

    <div class="row">
      <section id="footer-eclipse-foundation" class="col-xs-offset-1 col-xs-11 col-sm-7 col-md-6 col-md-offset-0 hidden-print">
        <h2 class="section-title">Eclipse Foundation</h2>
        <ul class="nav">
          <li><a href="http://eclipse.org/org/">About us</a></li>
          <li><a href="http://eclipse.org/org/foundation/contact.php">Contact Us</a></li>
          <li><a href="http://eclipse.org/donate">Donate</a></li>
          <li><a href="http://eclipse.org/org/documents/">Governance</a></li>
          <li><a href="http://eclipse.org/artwork/">Logo and Artwork</a></li>
          <li><a href="http://eclipse.org/org/foundation/directors.php">Board of Directors</a></li>
        </ul>
      </section>
      <section id="footer-legal" class="col-xs-offset-1 col-xs-11 col-sm-7 col-md-6 col-md-offset-0 hidden-print ">
        <h2 class="section-title">Legal</h2>
        <ul class="nav">
          <li><a href="http://eclipse.org/legal/privacy.php">Privacy Policy</a></li>
          <li><a href="http://eclipse.org/legal/termsofuse.php">Terms of Use</a></li>
          <li><a href="http://eclipse.org/legal/copyright.php">Copyright Agent</a></li>
          <li><a href="http://eclipse.org/org/documents/epl-v10.php">Eclipse Public License </a></li>
          <li><a href="http://eclipse.org/legal/">Legal Resources </a></li>

        </ul>
      </section>

      <section id="footer-useful-links" class="col-xs-offset-1 col-xs-11 col-sm-7 col-md-6 col-md-offset-0 hidden-print">
        <h2 class="section-title">Useful Links</h2>
        <ul class="nav">
          <li><a href="https://bugs.eclipse.org/bugs/">Report a Bug</a></li>
          <li><a href="//help.eclipse.org/">Documentation</a></li>
          <li><a href="http://eclipse.org/contribute/">How to Contribute</a></li>
          <li><a href="http://eclipse.org/mail/">Mailing Lists</a></li>
          <li><a href="http://eclipse.org/forums/">Forums</a></li>
          <li><a href="//marketplace.eclipse.org">Marketplace</a></li>
        </ul>
      </section>

      <section id="footer-other" class="col-xs-offset-1 col-xs-11 col-sm-7 col-md-6 col-md-offset-0 hidden-print">

        <h2 class="section-title">Other</h2>
        <ul class="nav">
          <li><a href="http://eclipse.org/ide/">IDE and Tools</a></li>
          <li><a href="http://eclipse.org/projects">Community of Projects</a></li>
          <li><a href="http://eclipse.org/org/workinggroups/">Working Groups</a></li>
        </ul>

        <ul class="list-inline social-media">
          <li><a href="https://twitter.com/EclipseFdn"><i class="fa fa-twitter-square"></i></a></li>
          <li><a href="https://plus.google.com/+Eclipse"><i class="fa fa-google-plus-square"></i></a></li>
          <li><a href="https://www.facebook.com/eclipse.org"><i class="fa fa-facebook-square"></i> </a></li>
          <li><a href="https://www.youtube.com/user/EclipseFdn"><i class="fa fa-youtube-square"></i></a></li>
        </ul>

      </section>
      <div id="copyright" class="col-xs-offset-1 col-sm-14 col-md-24 col-md-offset-0">
        <div>
          <span class="hidden-print"><img
            src="/eclipse.org-common/themes/solstice/public/images/logo/eclipse-logo-bw-800x188.png"
            alt="Eclipse.org black and white logo" width="166" height="39" id="logo-eclipse-white" /></span>
          <p id="copyright-text">Copyright &copy; 2014 The Eclipse Foundation. All Rights Reserved.</p>
        </div>
      </div>
      <a href="#" class="scrollup">Back to the top</a>
    </div>
  </div>
</footer>

<!-- see Bug 441006  -->
<script type="text/javascript">

      var _gaq = _gaq || [];
      _gaq.push(['_setAccount', 'UA-910670-2']);
      _gaq.push(['_trackPageview']);

      (function() {
        var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
        ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
        var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
      })();
</script>

<!-- Placed at the end of the document so the pages load faster -->
<script src="/eclipse.org-common/themes/solstice/public/javascript/main.min.js"></script>
</body>
</html>

Back to the top