This repository has been archived by the owner on Mar 20, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathbuild_log_12.html
6852 lines (6852 loc) · 607 KB
/
build_log_12.html
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
<html>
<head>
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
<style type="text/css">
.bannercell {
border: 0px;
padding: 0px;
}
body {
margin: 0;
font:normal 100% arial,helvetica,sanserif;
background-color:#FFFFFF;
color:#000000;
}
table.status {
font:bold 80% arial,helvetica,sanserif;
background-color:#525D76;
color:#ffffff;
}
table.log tr td, tr th {
font-size: 80%;
}
.error {
color:red;
}
.warn {
color:brown;
}
.info {
color:gray;
}
.debug{
color:gray;
}
.failed {
font-size:80%;
background-color: red;
color:#FFFFFF;
font-weight: bold
}
.complete {
font-size:80%;
background-color: #525D76;
color:#FFFFFF;
font-weight: bold
}
.a td {
background: #efefef;
}
.b td {
background: #fff;
}
th, td {
text-align: left;
vertical-align: top;
}
th {
background: #ccc;
color: black;
}
table, th, td {
border: none
}
h3 {
font:bold 80% arial,helvetica,sanserif;
background: #525D76;
color: white;
text-decoration: none;
padding: 5px;
margin-right: 2px;
margin-left: 2px;
margin-bottom: 0;
}
</style>
</head>
<body>
<table width="100%" border="0">
<tr>
<td>
<hr size="1" noshade="yes">
</td>
</tr>
</table>
<table width="100%" class="complete">
<tr>
<td nowrap="yes">Build Duration</td><td nowrap="yes" style="text-align:right">Total Time: 13 minutes 14 seconds</td>
</tr>
<tr>
<td colspan="2"></td>
</tr>
</table>
<h3>Build events</h3>
<table width="100%" cellpadding="3" cellspacing="2" border="1" class="log">
<tr>
<th width="1%" align="left" nowrap="yes">Builder</th><th width="1%" align="left" nowrap="yes">Target</th><th width="1%" align="left" nowrap="yes">Task</th><th align="left" nowrap="yes">message</th>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes"></td><td width="1%" nowrap="yes"></td><td width="1%" style="text-align:right" nowrap="yes">[ ]</td><td nowrap="no" class="info">Cleaning up project work directory "/files/jsf/jsf-head"...</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes"></td><td width="1%" nowrap="yes"></td><td width="1%" style="text-align:right" nowrap="yes">[ ]</td><td nowrap="no" class="info">Perform checkout operation for VCS setting: </td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes"></td><td width="1%" nowrap="yes"></td><td width="1%" style="text-align:right" nowrap="yes">[ ]</td><td nowrap="no" class="info">Vcs name: Cvs</br> Cvs root: :pserver:[email protected]:/cvs</br> Cvs password:*****</br> Is cygwin cvs?: no</br> Disable "-S" option for log command?: yes</br> Disable history command?: yes</br> Path for cvs executable: /usr/bin</br> Quiet period: 60</br> modules:</br> Source path: javaserverfaces-sources, Branch: , Label: </td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes"></td><td width="1%" nowrap="yes"></td><td width="1%" style="text-align:right" nowrap="yes">[ ]</td><td nowrap="no" class="info">Checking quiet period...</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes"></td><td width="1%" nowrap="yes"></td><td width="1%" style="text-align:right" nowrap="yes">[ ]</td><td nowrap="no" class="info">Login to cvs...</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes"></td><td width="1%" nowrap="yes"></td><td width="1%" style="text-align:right" nowrap="yes">[ ]</td><td nowrap="no" class="info">Update source path: javaserverfaces-sources</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">Cvs</td><td width="1%" nowrap="yes"></td><td width="1%" style="text-align:right" nowrap="yes">[ ]</td><td nowrap="no" class="info">Using cvs passfile: /files/luntbuild/.cvspass</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes"></td><td width="1%" nowrap="yes"></td><td width="1%" style="text-align:right" nowrap="yes">[ ]</td><td nowrap="no" class="info">VCS quiet in recent 60 seconds, continue to check out code...</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes"></td><td width="1%" nowrap="yes"></td><td width="1%" style="text-align:right" nowrap="yes">[ ]</td><td nowrap="no" class="info">Login to cvs...</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes"></td><td width="1%" nowrap="yes"></td><td width="1%" style="text-align:right" nowrap="yes">[ ]</td><td nowrap="no" class="info">Retrieve source path: javaserverfaces-sources</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">Cvs</td><td width="1%" nowrap="yes"></td><td width="1%" style="text-align:right" nowrap="yes">[ ]</td><td nowrap="no" class="info">Using cvs passfile: /files/luntbuild/.cvspass</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes"></td><td width="1%" nowrap="yes"></td><td width="1%" style="text-align:right" nowrap="yes">[ ]</td><td nowrap="no" class="info">Duration of the checkout operation: 3 minutes</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes"></td><td width="1%" nowrap="yes"></td><td width="1%" style="text-align:right" nowrap="yes">[ ]</td><td nowrap="no" class="info">Perform build with builder setting: </td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes"></td><td width="1%" nowrap="yes"></td><td width="1%" style="text-align:right" nowrap="yes">[ ]</td><td nowrap="no" class="info">Builder name: JSF 1.2-GlassFish</br>Builder type: Ant builder</br> Command to run Ant: /files/apache-ant-1.6.5/bin/ant</br> Build script path: /files/jsf/jsf-head/javaserverfaces-sources/build.xml</br> Build targets: clean main test.with.container.refresh</br> Build properties: buildVersion="JSF-1.2-318"</br>artifactsDir="/files/luntbuild/publish/JSF 1.2/JSF-1.2-on-commit/JSF-1.2-318/artifacts"</br>buildDate="Wed Jul 12 09:46:46 PDT 2006"</br>junitHtmlReportDir="/files/luntbuild/publish/JSF 1.2/JSF-1.2-on-commit/JSF-1.2-318/junit_html_report"</br>jsf.build.home=/files/jsf/jsf-head/javaserverfaces-sources</br>container.name=glassfish</br>container.home=/files/jsf/containers/appserv9</br>container.host=localhost</br>container.port=8080</br>glassfish.admin.user=admin</br>glassfish.password.file=/files/jsf/.passwordFile</br>glassfish.admin.host=localhost</br>glassfish.admin.port=4848</br>glassfish.domain=domain1</br>compile.deprecation=off</br>compile.debug=on</br>dependency.base.dir=/files/jsf</br>junit.home=/files/jsf/junit3.8.1</br>htmlunit.home=/files/jsf/htmlunit-1.8</br>cactus.home=/files/jsf/jakarta-cactus-13-1.7.1</br>taglibdoc.home=/files/jsf/taglibrarydoc-1_3</br>build.standalone=false</br>halt.on.failure=yes</br>http.proxy.host=webcache.sfbay.sun.com</br>http.proxy.port=8080</br> Environment variables: </br> Build success condition: result==0 and logContainsLine("BUILD SUCCESSFUL")</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes"></td><td width="1%" style="text-align:right" nowrap="yes">[ ]</td><td nowrap="no" class="info">Buildfile: /files/jsf/jsf-head/javaserverfaces-sources/build.xml</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">clean</td><td width="1%" style="text-align:right" nowrap="yes">[ ]</td><td nowrap="no" class="info">remove.tstamp:</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">prepare</td><td width="1%" style="text-align:right" nowrap="yes">[ mkdir ]</td><td nowrap="no" class="info">Created dir: /files/jsf/jsf-head/javaserverfaces-sources/jsf-api/build</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">prepare</td><td width="1%" style="text-align:right" nowrap="yes">[ mkdir ]</td><td nowrap="no" class="info">Created dir: /files/jsf/jsf-head/javaserverfaces-sources/jsf-api/build/classes</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">prepare</td><td width="1%" style="text-align:right" nowrap="yes">[ mkdir ]</td><td nowrap="no" class="info">Created dir: /files/jsf/jsf-head/javaserverfaces-sources/jsf-api/build/lib</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">prepare</td><td width="1%" style="text-align:right" nowrap="yes">[ mkdir ]</td><td nowrap="no" class="info">Created dir: /files/jsf/jsf-head/javaserverfaces-sources/jsf-api/build/javadocs</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">prepare</td><td width="1%" style="text-align:right" nowrap="yes">[ mkdir ]</td><td nowrap="no" class="info">Created dir: /files/jsf/jsf-head/javaserverfaces-sources/jsf-api/build/generate</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">prepare</td><td width="1%" style="text-align:right" nowrap="yes">[ ]</td><td nowrap="no" class="info">check.generation.necessity:</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ delete ]</td><td nowrap="no" class="info">Deleting directory /files/jsf/jsf-head/javaserverfaces-sources/jsf-api/build/generate</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ ]</td><td nowrap="no" class="info">tools.javac:</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ mkdir ]</td><td nowrap="no" class="info">Created dir: /files/jsf/jsf-head/javaserverfaces-sources/jsf-tools/build/classes</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ javac ]</td><td nowrap="no" class="info">Compiling 78 source files to /files/jsf/jsf-head/javaserverfaces-sources/jsf-tools/build/classes</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ javac ]</td><td nowrap="no" class="info">Note: Some input files use unchecked or unsafe operations.</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ javac ]</td><td nowrap="no" class="info">Note: Recompile with -Xlint:unchecked for details.</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ copy ]</td><td nowrap="no" class="info">Copying 5 files to /files/jsf/jsf-head/javaserverfaces-sources/jsf-tools/build/classes</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ copy ]</td><td nowrap="no" class="info">Copying 1 file to /files/jsf/jsf-head/javaserverfaces-sources/jsf-tools/build/classes</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ copy ]</td><td nowrap="no" class="info">Copying 9 files to /files/jsf/jsf-head/javaserverfaces-sources/jsf-tools/build/classes/com/sun/faces</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ copy ]</td><td nowrap="no" class="info">Copying 6 files to /files/jsf/jsf-head/javaserverfaces-sources/jsf-tools/build/classes</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateComponents ]</td><td nowrap="no" class="info">Jul 12, 2006 9:50:42 AM com.sun.faces.generate.HtmlComponentGenerator generateClasses</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateComponents ]</td><td nowrap="no" class="info">INFO: Generating concrete HTML component class javax.faces.component.html.HtmlColumn</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateComponents ]</td><td nowrap="no" class="info">Jul 12, 2006 9:50:42 AM com.sun.faces.generate.HtmlComponentGenerator generateClasses</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateComponents ]</td><td nowrap="no" class="info">INFO: Generating concrete HTML component class javax.faces.component.html.HtmlCommandButton</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateComponents ]</td><td nowrap="no" class="info">Jul 12, 2006 9:50:42 AM com.sun.faces.generate.HtmlComponentGenerator generateClasses</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateComponents ]</td><td nowrap="no" class="info">INFO: Generating concrete HTML component class javax.faces.component.html.HtmlCommandLink</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateComponents ]</td><td nowrap="no" class="info">Jul 12, 2006 9:50:42 AM com.sun.faces.generate.HtmlComponentGenerator generateClasses</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateComponents ]</td><td nowrap="no" class="info">INFO: Generating concrete HTML component class javax.faces.component.html.HtmlDataTable</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateComponents ]</td><td nowrap="no" class="info">Jul 12, 2006 9:50:42 AM com.sun.faces.generate.HtmlComponentGenerator generateClasses</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateComponents ]</td><td nowrap="no" class="info">INFO: Generating concrete HTML component class javax.faces.component.html.HtmlForm</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateComponents ]</td><td nowrap="no" class="info">Jul 12, 2006 9:50:42 AM com.sun.faces.generate.HtmlComponentGenerator generateClasses</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateComponents ]</td><td nowrap="no" class="info">INFO: Generating concrete HTML component class javax.faces.component.html.HtmlGraphicImage</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateComponents ]</td><td nowrap="no" class="info">Jul 12, 2006 9:50:42 AM com.sun.faces.generate.HtmlComponentGenerator generateClasses</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateComponents ]</td><td nowrap="no" class="info">INFO: Generating concrete HTML component class javax.faces.component.html.HtmlInputHidden</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateComponents ]</td><td nowrap="no" class="info">Jul 12, 2006 9:50:42 AM com.sun.faces.generate.HtmlComponentGenerator generateClasses</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateComponents ]</td><td nowrap="no" class="info">INFO: Generating concrete HTML component class javax.faces.component.html.HtmlInputSecret</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateComponents ]</td><td nowrap="no" class="info">Jul 12, 2006 9:50:42 AM com.sun.faces.generate.HtmlComponentGenerator generateClasses</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateComponents ]</td><td nowrap="no" class="info">INFO: Generating concrete HTML component class javax.faces.component.html.HtmlInputText</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateComponents ]</td><td nowrap="no" class="info">Jul 12, 2006 9:50:42 AM com.sun.faces.generate.HtmlComponentGenerator generateClasses</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateComponents ]</td><td nowrap="no" class="info">INFO: Generating concrete HTML component class javax.faces.component.html.HtmlInputTextarea</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateComponents ]</td><td nowrap="no" class="info">Jul 12, 2006 9:50:42 AM com.sun.faces.generate.HtmlComponentGenerator generateClasses</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateComponents ]</td><td nowrap="no" class="info">INFO: Generating concrete HTML component class javax.faces.component.html.HtmlMessage</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateComponents ]</td><td nowrap="no" class="info">Jul 12, 2006 9:50:42 AM com.sun.faces.generate.HtmlComponentGenerator generateClasses</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateComponents ]</td><td nowrap="no" class="info">INFO: Generating concrete HTML component class javax.faces.component.html.HtmlMessages</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateComponents ]</td><td nowrap="no" class="info">Jul 12, 2006 9:50:42 AM com.sun.faces.generate.HtmlComponentGenerator generateClasses</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateComponents ]</td><td nowrap="no" class="info">INFO: Generating concrete HTML component class javax.faces.component.html.HtmlOutputFormat</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateComponents ]</td><td nowrap="no" class="info">Jul 12, 2006 9:50:42 AM com.sun.faces.generate.HtmlComponentGenerator generateClasses</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateComponents ]</td><td nowrap="no" class="info">INFO: Generating concrete HTML component class javax.faces.component.html.HtmlOutputLabel</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateComponents ]</td><td nowrap="no" class="info">Jul 12, 2006 9:50:42 AM com.sun.faces.generate.HtmlComponentGenerator generateClasses</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateComponents ]</td><td nowrap="no" class="info">INFO: Generating concrete HTML component class javax.faces.component.html.HtmlOutputLink</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateComponents ]</td><td nowrap="no" class="info">Jul 12, 2006 9:50:42 AM com.sun.faces.generate.HtmlComponentGenerator generateClasses</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateComponents ]</td><td nowrap="no" class="info">INFO: Generating concrete HTML component class javax.faces.component.html.HtmlOutputText</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateComponents ]</td><td nowrap="no" class="info">Jul 12, 2006 9:50:42 AM com.sun.faces.generate.HtmlComponentGenerator generateClasses</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateComponents ]</td><td nowrap="no" class="info">INFO: Generating concrete HTML component class javax.faces.component.html.HtmlPanelGrid</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateComponents ]</td><td nowrap="no" class="info">Jul 12, 2006 9:50:42 AM com.sun.faces.generate.HtmlComponentGenerator generateClasses</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateComponents ]</td><td nowrap="no" class="info">INFO: Generating concrete HTML component class javax.faces.component.html.HtmlPanelGroup</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateComponents ]</td><td nowrap="no" class="info">Jul 12, 2006 9:50:42 AM com.sun.faces.generate.HtmlComponentGenerator generateClasses</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateComponents ]</td><td nowrap="no" class="info">INFO: Generating concrete HTML component class javax.faces.component.html.HtmlSelectBooleanCheckbox</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateComponents ]</td><td nowrap="no" class="info">Jul 12, 2006 9:50:42 AM com.sun.faces.generate.HtmlComponentGenerator generateClasses</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateComponents ]</td><td nowrap="no" class="info">INFO: Generating concrete HTML component class javax.faces.component.html.HtmlSelectManyCheckbox</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateComponents ]</td><td nowrap="no" class="info">Jul 12, 2006 9:50:42 AM com.sun.faces.generate.HtmlComponentGenerator generateClasses</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateComponents ]</td><td nowrap="no" class="info">INFO: Generating concrete HTML component class javax.faces.component.html.HtmlSelectManyListbox</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateComponents ]</td><td nowrap="no" class="info">Jul 12, 2006 9:50:42 AM com.sun.faces.generate.HtmlComponentGenerator generateClasses</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateComponents ]</td><td nowrap="no" class="info">INFO: Generating concrete HTML component class javax.faces.component.html.HtmlSelectManyMenu</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateComponents ]</td><td nowrap="no" class="info">Jul 12, 2006 9:50:42 AM com.sun.faces.generate.HtmlComponentGenerator generateClasses</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateComponents ]</td><td nowrap="no" class="info">INFO: Generating concrete HTML component class javax.faces.component.html.HtmlSelectOneListbox</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateComponents ]</td><td nowrap="no" class="info">Jul 12, 2006 9:50:42 AM com.sun.faces.generate.HtmlComponentGenerator generateClasses</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateComponents ]</td><td nowrap="no" class="info">INFO: Generating concrete HTML component class javax.faces.component.html.HtmlSelectOneMenu</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateComponents ]</td><td nowrap="no" class="info">Jul 12, 2006 9:50:42 AM com.sun.faces.generate.HtmlComponentGenerator generateClasses</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateComponents ]</td><td nowrap="no" class="info">INFO: Generating concrete HTML component class javax.faces.component.html.HtmlSelectOneRadio</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ copy ]</td><td nowrap="no" class="info">Copying 1 file to /files/jsf/jsf-head/javaserverfaces-sources/jsf-api/build/generate/javax/faces/component/html</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ touch ]</td><td nowrap="no" class="info">Creating /files/jsf/jsf-head/javaserverfaces-sources/jsf-api/build/generate/last-generation</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ ]</td><td nowrap="no" class="info">copy.template.sources:</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ copy ]</td><td nowrap="no" class="info">Copying 1 file to /files/jsf/jsf-head/javaserverfaces-sources/jsf-api/build/generate/javax/faces/component</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ copy ]</td><td nowrap="no" class="info">Copying 4 files to /files/jsf/jsf-head/javaserverfaces-sources/jsf-api/build/generate/javax/faces/component</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ copy ]</td><td nowrap="no" class="info">Copying 1 file to /files/jsf/jsf-head/javaserverfaces-sources/jsf-api/build/generate/javax/faces/convert</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ copy ]</td><td nowrap="no" class="info">Copying 1 file to /files/jsf/jsf-head/javaserverfaces-sources/jsf-api/build/generate/javax/faces/validator</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ copy ]</td><td nowrap="no" class="info">Copying 1 file to /files/jsf/jsf-head/javaserverfaces-sources/jsf-api/build/generate/javax/faces/webapp</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">compile</td><td width="1%" style="text-align:right" nowrap="yes">[ javac ]</td><td nowrap="no" class="info">Compiling 151 source files to /files/jsf/jsf-head/javaserverfaces-sources/jsf-api/build/classes</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">compile</td><td width="1%" style="text-align:right" nowrap="yes">[ javac ]</td><td nowrap="no" class="info">Note: Some input files use or override a deprecated API.</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">compile</td><td width="1%" style="text-align:right" nowrap="yes">[ javac ]</td><td nowrap="no" class="info">Note: Recompile with -Xlint:deprecation for details.</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">compile</td><td width="1%" style="text-align:right" nowrap="yes">[ javac ]</td><td nowrap="no" class="info">Note: Some input files use unchecked or unsafe operations.</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">compile</td><td width="1%" style="text-align:right" nowrap="yes">[ javac ]</td><td nowrap="no" class="info">Note: Recompile with -Xlint:unchecked for details.</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">build</td><td width="1%" style="text-align:right" nowrap="yes">[ copy ]</td><td nowrap="no" class="info">Copying 17 files to /files/jsf/jsf-head/javaserverfaces-sources/jsf-api/build/classes</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">build</td><td width="1%" style="text-align:right" nowrap="yes">[ copy ]</td><td nowrap="no" class="info">Copying 4 files to /files/jsf/jsf-head/javaserverfaces-sources/jsf-api/build/lib</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">jars</td><td width="1%" style="text-align:right" nowrap="yes">[ jar ]</td><td nowrap="no" class="info">Building jar: /files/jsf/jsf-head/javaserverfaces-sources/jsf-api/build/lib/jsf-api.jar</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">init</td><td width="1%" style="text-align:right" nowrap="yes">[ echo ]</td><td nowrap="no" class="info">-------- Oracle America JavaServer Faces Implementation 1.2_01-NIGHTLY_20060712 --------</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">prepare</td><td width="1%" style="text-align:right" nowrap="yes">[ mkdir ]</td><td nowrap="no" class="info">Created dir: /files/jsf/jsf-head/javaserverfaces-sources/jsf-ri/build</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">prepare</td><td width="1%" style="text-align:right" nowrap="yes">[ mkdir ]</td><td nowrap="no" class="info">Created dir: /files/jsf/jsf-head/javaserverfaces-sources/jsf-ri/build/generate</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">prepare</td><td width="1%" style="text-align:right" nowrap="yes">[ mkdir ]</td><td nowrap="no" class="info">Created dir: /files/jsf/jsf-head/javaserverfaces-sources/jsf-ri/build/generate/conf/share</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">prepare</td><td width="1%" style="text-align:right" nowrap="yes">[ mkdir ]</td><td nowrap="no" class="info">Created dir: /files/jsf/jsf-head/javaserverfaces-sources/jsf-ri/build/classes</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">prepare</td><td width="1%" style="text-align:right" nowrap="yes">[ mkdir ]</td><td nowrap="no" class="info">Created dir: /files/jsf/jsf-head/javaserverfaces-sources/jsf-ri/build/classes/META-INF</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">prepare</td><td width="1%" style="text-align:right" nowrap="yes">[ mkdir ]</td><td nowrap="no" class="info">Created dir: /files/jsf/jsf-head/javaserverfaces-sources/jsf-ri/build/javadocs</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">prepare</td><td width="1%" style="text-align:right" nowrap="yes">[ mkdir ]</td><td nowrap="no" class="info">Created dir: /files/jsf/jsf-head/javaserverfaces-sources/jsf-ri/build/tlddocs</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">prepare</td><td width="1%" style="text-align:right" nowrap="yes">[ mkdir ]</td><td nowrap="no" class="info">Created dir: /files/jsf/jsf-head/javaserverfaces-sources/jsf-ri/build/lib</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">prepare</td><td width="1%" style="text-align:right" nowrap="yes">[ ]</td><td nowrap="no" class="info">check.taglib.generation.necessity:</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ copy ]</td><td nowrap="no" class="info">Copying 2 files to /files/jsf/jsf-head/javaserverfaces-sources/jsf-ri/build</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ delete ]</td><td nowrap="no" class="info">Deleting directory /files/jsf/jsf-head/javaserverfaces-sources/jsf-ri/build/generate</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ mkdir ]</td><td nowrap="no" class="info">Created dir: /files/jsf/jsf-head/javaserverfaces-sources/jsf-ri/build/generate</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateTaglib ]</td><td nowrap="no" class="info">Generating taglibs for JSP version 2.1</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateTaglib ]</td><td nowrap="no" class="info">Jul 12, 2006 9:50:49 AM com.sun.faces.generate.HtmlTaglib12Generator generateTagClasses</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateTaglib ]</td><td nowrap="no" class="info">INFO: Generating CommandButtonTag...</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateTaglib ]</td><td nowrap="no" class="info">Jul 12, 2006 9:50:49 AM com.sun.faces.generate.HtmlTaglib12Generator generateTagClasses</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateTaglib ]</td><td nowrap="no" class="info">INFO: Generating CommandLinkTag...</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateTaglib ]</td><td nowrap="no" class="info">Jul 12, 2006 9:50:49 AM com.sun.faces.generate.HtmlTaglib12Generator generateTagClasses</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateTaglib ]</td><td nowrap="no" class="info">INFO: Generating DataTableTag...</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateTaglib ]</td><td nowrap="no" class="info">Jul 12, 2006 9:50:49 AM com.sun.faces.generate.HtmlTaglib12Generator generateTagClasses</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateTaglib ]</td><td nowrap="no" class="info">INFO: Generating FormTag...</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateTaglib ]</td><td nowrap="no" class="info">Jul 12, 2006 9:50:49 AM com.sun.faces.generate.HtmlTaglib12Generator generateTagClasses</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateTaglib ]</td><td nowrap="no" class="info">INFO: Generating GraphicImageTag...</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateTaglib ]</td><td nowrap="no" class="info">Jul 12, 2006 9:50:49 AM com.sun.faces.generate.HtmlTaglib12Generator generateTagClasses</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateTaglib ]</td><td nowrap="no" class="info">INFO: Generating InputHiddenTag...</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateTaglib ]</td><td nowrap="no" class="info">Jul 12, 2006 9:50:49 AM com.sun.faces.generate.HtmlTaglib12Generator generateTagClasses</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateTaglib ]</td><td nowrap="no" class="info">INFO: Generating InputSecretTag...</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateTaglib ]</td><td nowrap="no" class="info">Jul 12, 2006 9:50:49 AM com.sun.faces.generate.HtmlTaglib12Generator generateTagClasses</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateTaglib ]</td><td nowrap="no" class="info">INFO: Generating InputTextTag...</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateTaglib ]</td><td nowrap="no" class="info">Jul 12, 2006 9:50:49 AM com.sun.faces.generate.HtmlTaglib12Generator generateTagClasses</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateTaglib ]</td><td nowrap="no" class="info">INFO: Generating InputTextareaTag...</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateTaglib ]</td><td nowrap="no" class="info">Jul 12, 2006 9:50:49 AM com.sun.faces.generate.HtmlTaglib12Generator generateTagClasses</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateTaglib ]</td><td nowrap="no" class="info">INFO: Generating MessageTag...</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateTaglib ]</td><td nowrap="no" class="info">Jul 12, 2006 9:50:49 AM com.sun.faces.generate.HtmlTaglib12Generator generateTagClasses</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateTaglib ]</td><td nowrap="no" class="info">INFO: Generating MessagesTag...</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateTaglib ]</td><td nowrap="no" class="info">Jul 12, 2006 9:50:49 AM com.sun.faces.generate.HtmlTaglib12Generator generateTagClasses</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateTaglib ]</td><td nowrap="no" class="info">INFO: Generating OutputFormatTag...</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateTaglib ]</td><td nowrap="no" class="info">Jul 12, 2006 9:50:49 AM com.sun.faces.generate.HtmlTaglib12Generator generateTagClasses</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateTaglib ]</td><td nowrap="no" class="info">INFO: Generating OutputLabelTag...</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateTaglib ]</td><td nowrap="no" class="info">Jul 12, 2006 9:50:49 AM com.sun.faces.generate.HtmlTaglib12Generator generateTagClasses</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateTaglib ]</td><td nowrap="no" class="info">INFO: Generating OutputLinkTag...</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateTaglib ]</td><td nowrap="no" class="info">Jul 12, 2006 9:50:49 AM com.sun.faces.generate.HtmlTaglib12Generator generateTagClasses</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateTaglib ]</td><td nowrap="no" class="info">INFO: Generating OutputTextTag...</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateTaglib ]</td><td nowrap="no" class="info">Jul 12, 2006 9:50:49 AM com.sun.faces.generate.HtmlTaglib12Generator generateTagClasses</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateTaglib ]</td><td nowrap="no" class="info">INFO: Generating PanelGridTag...</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateTaglib ]</td><td nowrap="no" class="info">Jul 12, 2006 9:50:49 AM com.sun.faces.generate.HtmlTaglib12Generator generateTagClasses</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateTaglib ]</td><td nowrap="no" class="info">INFO: Generating PanelGroupTag...</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateTaglib ]</td><td nowrap="no" class="info">Jul 12, 2006 9:50:49 AM com.sun.faces.generate.HtmlTaglib12Generator generateTagClasses</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateTaglib ]</td><td nowrap="no" class="info">INFO: Generating SelectBooleanCheckboxTag...</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateTaglib ]</td><td nowrap="no" class="info">Jul 12, 2006 9:50:49 AM com.sun.faces.generate.HtmlTaglib12Generator generateTagClasses</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateTaglib ]</td><td nowrap="no" class="info">INFO: Generating SelectManyCheckboxTag...</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateTaglib ]</td><td nowrap="no" class="info">Jul 12, 2006 9:50:49 AM com.sun.faces.generate.HtmlTaglib12Generator generateTagClasses</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateTaglib ]</td><td nowrap="no" class="info">INFO: Generating SelectManyListboxTag...</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateTaglib ]</td><td nowrap="no" class="info">Jul 12, 2006 9:50:49 AM com.sun.faces.generate.HtmlTaglib12Generator generateTagClasses</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateTaglib ]</td><td nowrap="no" class="info">INFO: Generating SelectManyMenuTag...</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateTaglib ]</td><td nowrap="no" class="info">Jul 12, 2006 9:50:50 AM com.sun.faces.generate.HtmlTaglib12Generator generateTagClasses</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateTaglib ]</td><td nowrap="no" class="info">INFO: Generating SelectOneListboxTag...</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateTaglib ]</td><td nowrap="no" class="info">Jul 12, 2006 9:50:50 AM com.sun.faces.generate.HtmlTaglib12Generator generateTagClasses</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateTaglib ]</td><td nowrap="no" class="info">INFO: Generating SelectOneMenuTag...</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateTaglib ]</td><td nowrap="no" class="info">Jul 12, 2006 9:50:50 AM com.sun.faces.generate.HtmlTaglib12Generator generateTagClasses</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ generateTaglib ]</td><td nowrap="no" class="info">INFO: Generating SelectOneRadioTag...</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ copy ]</td><td nowrap="no" class="info">Copying 61 files to /files/jsf/jsf-head/javaserverfaces-sources/jsf-ri/build/generate</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ touch ]</td><td nowrap="no" class="info">Creating /files/jsf/jsf-head/javaserverfaces-sources/jsf-ri/build/generate/last-taglib-generation</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ ]</td><td nowrap="no" class="info">copy.template.sources:</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ copy ]</td><td nowrap="no" class="info">Copying 1 file to /files/jsf/jsf-head/javaserverfaces-sources/jsf-ri/build/generate/com/sun/faces/util</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ copy ]</td><td nowrap="no" class="info">Copying 4 files to /files/jsf/jsf-head/javaserverfaces-sources/jsf-ri/build/generate/com/sun/faces/application</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">compile</td><td width="1%" style="text-align:right" nowrap="yes">[ javac ]</td><td nowrap="no" class="info">Compiling 214 source files to /files/jsf/jsf-head/javaserverfaces-sources/jsf-ri/build/classes</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">compile</td><td width="1%" style="text-align:right" nowrap="yes">[ javac ]</td><td nowrap="no" class="info">Note: Some input files use or override a deprecated API.</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">compile</td><td width="1%" style="text-align:right" nowrap="yes">[ javac ]</td><td nowrap="no" class="info">Note: Recompile with -Xlint:deprecation for details.</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">compile</td><td width="1%" style="text-align:right" nowrap="yes">[ javac ]</td><td nowrap="no" class="info">Note: Some input files use unchecked or unsafe operations.</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">compile</td><td width="1%" style="text-align:right" nowrap="yes">[ javac ]</td><td nowrap="no" class="info">Note: Recompile with -Xlint:unchecked for details.</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">compile</td><td width="1%" style="text-align:right" nowrap="yes">[ copy ]</td><td nowrap="no" class="info">Copying 12 files to /files/jsf/jsf-head/javaserverfaces-sources/jsf-ri/build/classes</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">compile</td><td width="1%" style="text-align:right" nowrap="yes">[ copy ]</td><td nowrap="no" class="info">Copying 10 files to /files/jsf/jsf-head/javaserverfaces-sources/jsf-ri/build/classes/com/sun/faces</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">compile</td><td width="1%" style="text-align:right" nowrap="yes">[ copy ]</td><td nowrap="no" class="info">Copying 1 file to /files/jsf/jsf-head/javaserverfaces-sources/jsf-ri/build/classes/META-INF</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">compile</td><td width="1%" style="text-align:right" nowrap="yes">[ copy ]</td><td nowrap="no" class="info">Copying 1 file to /files/jsf/jsf-head/javaserverfaces-sources/jsf-ri/build/classes/META-INF</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">compile</td><td width="1%" style="text-align:right" nowrap="yes">[ ]</td><td nowrap="no" class="info">create.runtime.config:</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">compile</td><td width="1%" style="text-align:right" nowrap="yes">[ xslt ]</td><td nowrap="no" class="info">Processing /files/jsf/jsf-head/javaserverfaces-sources/jsf-ri/build/classes/com/sun/faces/standard-html-renderkit.xml to /files/jsf/jsf-head/javaserverfaces-sources/jsf-ri/merged.xml</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">compile</td><td width="1%" style="text-align:right" nowrap="yes">[ xslt ]</td><td nowrap="no" class="info">Loading stylesheet /files/jsf/jsf-head/javaserverfaces-sources/jsf-ri/conf/xslt/merge-config.xsl</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">compile</td><td width="1%" style="text-align:right" nowrap="yes">[ xslt ]</td><td nowrap="no" class="info">Processing /files/jsf/jsf-head/javaserverfaces-sources/jsf-ri/merged.xml to /files/jsf/jsf-head/javaserverfaces-sources/jsf-ri/build/classes/com/sun/faces/jsf-ri-runtime.xml</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">compile</td><td width="1%" style="text-align:right" nowrap="yes">[ xslt ]</td><td nowrap="no" class="info">Loading stylesheet /files/jsf/jsf-head/javaserverfaces-sources/jsf-ri/conf/xslt/prune-tool-data.xsl</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">compile</td><td width="1%" style="text-align:right" nowrap="yes">[ delete ]</td><td nowrap="no" class="info">Deleting: /files/jsf/jsf-head/javaserverfaces-sources/jsf-ri/merged.xml</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">jars</td><td width="1%" style="text-align:right" nowrap="yes">[ unjar ]</td><td nowrap="no" class="info">Expanding: /files/jsf/jsf-head/javaserverfaces-sources/common/lib/com-sun-commons-beanutils.jar into /files/jsf/jsf-head/javaserverfaces-sources/jsf-ri/build/classes</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">jars</td><td width="1%" style="text-align:right" nowrap="yes">[ unjar ]</td><td nowrap="no" class="info">Expanding: /files/jsf/jsf-head/javaserverfaces-sources/common/lib/com-sun-commons-collections.jar into /files/jsf/jsf-head/javaserverfaces-sources/jsf-ri/build/classes</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">jars</td><td width="1%" style="text-align:right" nowrap="yes">[ unjar ]</td><td nowrap="no" class="info">Expanding: /files/jsf/jsf-head/javaserverfaces-sources/common/lib/com-sun-commons-digester.jar into /files/jsf/jsf-head/javaserverfaces-sources/jsf-ri/build/classes</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">jars</td><td width="1%" style="text-align:right" nowrap="yes">[ unjar ]</td><td nowrap="no" class="info">Expanding: /files/jsf/jsf-head/javaserverfaces-sources/common/lib/com-sun-commons-logging-api.jar into /files/jsf/jsf-head/javaserverfaces-sources/jsf-ri/build/classes</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">jars</td><td width="1%" style="text-align:right" nowrap="yes">[ jar ]</td><td nowrap="no" class="info">Building jar: /files/jsf/jsf-head/javaserverfaces-sources/jsf-ri/build/lib/jsf-impl.jar</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">jars</td><td width="1%" style="text-align:right" nowrap="yes">[ delete ]</td><td nowrap="no" class="info">Deleting directory /files/jsf/jsf-head/javaserverfaces-sources/jsf-ri/build/classes/com/sun/org</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">main</td><td width="1%" style="text-align:right" nowrap="yes">[ ]</td><td nowrap="no" class="info">test.with.container.refresh:</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">main</td><td width="1%" style="text-align:right" nowrap="yes">[ echo ]</td><td nowrap="no" class="info"></td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">main</td><td width="1%" style="text-align:right" nowrap="yes">[ echo ]</td><td nowrap="no" class="info"></td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">main</td><td width="1%" style="text-align:right" nowrap="yes">[ echo ]</td><td nowrap="no" class="info">"------------ Stopping domain1 ------------"</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">main</td><td width="1%" style="text-align:right" nowrap="yes">[ echo ]</td><td nowrap="no" class="info"></td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">main</td><td width="1%" style="text-align:right" nowrap="yes">[ echo ]</td><td nowrap="no" class="info"></td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">main</td><td width="1%" style="text-align:right" nowrap="yes">[ exec ]</td><td nowrap="no" class="info">Domain domain1 stopped.</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">main</td><td width="1%" style="text-align:right" nowrap="yes">[ ]</td><td nowrap="no" class="info">container.deploy:</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">main</td><td width="1%" style="text-align:right" nowrap="yes">[ mkdir ]</td><td nowrap="no" class="info">Created dir: /files/jsf/jsf-head/javaserverfaces-sources/dist</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">main</td><td width="1%" style="text-align:right" nowrap="yes">[ mkdir ]</td><td nowrap="no" class="info">Created dir: /files/jsf/jsf-head/javaserverfaces-sources/dist/tmp</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">main</td><td width="1%" style="text-align:right" nowrap="yes">[ unjar ]</td><td nowrap="no" class="info">Expanding: /files/jsf/jsf-head/javaserverfaces-sources/jsf-ri/build/lib/jsf-impl.jar into /files/jsf/jsf-head/javaserverfaces-sources/dist/tmp</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">main</td><td width="1%" style="text-align:right" nowrap="yes">[ delete ]</td><td nowrap="no" class="info">Deleting directory /files/jsf/jsf-head/javaserverfaces-sources/dist/tmp/com/sun/org/apache</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">main</td><td width="1%" style="text-align:right" nowrap="yes">[ jar ]</td><td nowrap="no" class="info">Building jar: /files/jsf/jsf-head/javaserverfaces-sources/dist/jsf-impl.jar</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">main</td><td width="1%" style="text-align:right" nowrap="yes">[ delete ]</td><td nowrap="no" class="info">Deleting 1 files from /files/jsf/containers/appserv9/lib</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">main</td><td width="1%" style="text-align:right" nowrap="yes">[ jar ]</td><td nowrap="no" class="info">Updating jar: /files/jsf/containers/appserv9/lib/javaee.jar</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">main</td><td width="1%" style="text-align:right" nowrap="yes">[ copy ]</td><td nowrap="no" class="info">Copying 1 file to /files/jsf/containers/appserv9/lib</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">main</td><td width="1%" style="text-align:right" nowrap="yes">[ delete ]</td><td nowrap="no" class="info">Deleting directory /files/jsf/jsf-head/javaserverfaces-sources/dist/tmp</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">main</td><td width="1%" style="text-align:right" nowrap="yes">[ delete ]</td><td nowrap="no" class="info">Deleting: /files/jsf/jsf-head/javaserverfaces-sources/dist/jsf-impl.jar</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">main</td><td width="1%" style="text-align:right" nowrap="yes">[ echo ]</td><td nowrap="no" class="info"></td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">main</td><td width="1%" style="text-align:right" nowrap="yes">[ echo ]</td><td nowrap="no" class="info"></td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">main</td><td width="1%" style="text-align:right" nowrap="yes">[ echo ]</td><td nowrap="no" class="info">"------------ Starting domain1 ------------"</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">main</td><td width="1%" style="text-align:right" nowrap="yes">[ echo ]</td><td nowrap="no" class="info"></td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">main</td><td width="1%" style="text-align:right" nowrap="yes">[ echo ]</td><td nowrap="no" class="info"></td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">main</td><td width="1%" style="text-align:right" nowrap="yes">[ exec ]</td><td nowrap="no" class="info">Starting Domain domain1, please wait.</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">main</td><td width="1%" style="text-align:right" nowrap="yes">[ exec ]</td><td nowrap="no" class="info">Log redirected to /files/jsf/containers/appserv9/domains/domain1/logs/server.log.</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">main</td><td width="1%" style="text-align:right" nowrap="yes">[ exec ]</td><td nowrap="no" class="info">Domain domain1 is ready to receive client requests. Additional services are being started in background. </td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">main</td><td width="1%" style="text-align:right" nowrap="yes">[ exec ]</td><td nowrap="no" class="info">Domain [domain1] is running [Sun Java System Application Server Platform Edition 9.1 (build b04)] with its configuration and logs at: [/files/jsf/containers/appserv9/domains].</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">main</td><td width="1%" style="text-align:right" nowrap="yes">[ exec ]</td><td nowrap="no" class="info">Admin Console is available at [http://localhost:4848].</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">main</td><td width="1%" style="text-align:right" nowrap="yes">[ exec ]</td><td nowrap="no" class="info">Use the same port [4848] for "asadmin" commands.</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">main</td><td width="1%" style="text-align:right" nowrap="yes">[ exec ]</td><td nowrap="no" class="info">User web applications are available at these URLs:</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">main</td><td width="1%" style="text-align:right" nowrap="yes">[ exec ]</td><td nowrap="no" class="info">[http://localhost:8080 https://localhost:8181 ].</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">main</td><td width="1%" style="text-align:right" nowrap="yes">[ exec ]</td><td nowrap="no" class="info">Following web-contexts are available:</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">main</td><td width="1%" style="text-align:right" nowrap="yes">[ exec ]</td><td nowrap="no" class="info">[/web1 /asadmin ].</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">main</td><td width="1%" style="text-align:right" nowrap="yes">[ exec ]</td><td nowrap="no" class="info">Standard JMX Clients (like JConsole) can connect to JMXServiceURL:</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">main</td><td width="1%" style="text-align:right" nowrap="yes">[ exec ]</td><td nowrap="no" class="info">[service:jmx:rmi:///jndi/rmi://jsfci:8686/jmxrmi] for domain management purposes.</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">main</td><td width="1%" style="text-align:right" nowrap="yes">[ exec ]</td><td nowrap="no" class="info">Domain listens on at least following ports for connections:</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">main</td><td width="1%" style="text-align:right" nowrap="yes">[ exec ]</td><td nowrap="no" class="info">[8080 8181 4848 3700 3820 3920 8686 ].</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">prepare</td><td width="1%" style="text-align:right" nowrap="yes">[ ]</td><td nowrap="no" class="info">check.generation.necessity:</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">generate</td><td width="1%" style="text-align:right" nowrap="yes">[ ]</td><td nowrap="no" class="info">copy.template.sources:</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">build</td><td width="1%" style="text-align:right" nowrap="yes">[ ]</td><td nowrap="no" class="info">prepare.test:</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">build</td><td width="1%" style="text-align:right" nowrap="yes">[ mkdir ]</td><td nowrap="no" class="info">Created dir: /files/jsf/jsf-head/javaserverfaces-sources/jsf-api/testresults</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">build</td><td width="1%" style="text-align:right" nowrap="yes">[ ]</td><td nowrap="no" class="info">build.test.dir:</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">build</td><td width="1%" style="text-align:right" nowrap="yes">[ mkdir ]</td><td nowrap="no" class="info">Created dir: /files/jsf/jsf-head/javaserverfaces-sources/jsf-api/build/test</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">build</td><td width="1%" style="text-align:right" nowrap="yes">[ javac ]</td><td nowrap="no" class="info">Compiling 77 source files to /files/jsf/jsf-head/javaserverfaces-sources/jsf-api/build/test</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">build</td><td width="1%" style="text-align:right" nowrap="yes">[ javac ]</td><td nowrap="no" class="info">Note: Some input files use or override a deprecated API.</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">build</td><td width="1%" style="text-align:right" nowrap="yes">[ javac ]</td><td nowrap="no" class="info">Note: Recompile with -Xlint:deprecation for details.</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">build</td><td width="1%" style="text-align:right" nowrap="yes">[ javac ]</td><td nowrap="no" class="info">Note: Some input files use unchecked or unsafe operations.</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">build</td><td width="1%" style="text-align:right" nowrap="yes">[ javac ]</td><td nowrap="no" class="info">Note: Recompile with -Xlint:unchecked for details.</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">build</td><td width="1%" style="text-align:right" nowrap="yes">[ copy ]</td><td nowrap="no" class="info">Copying 1 file to /files/jsf/jsf-head/javaserverfaces-sources/jsf-api/build/test</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">build</td><td width="1%" style="text-align:right" nowrap="yes">[ copy ]</td><td nowrap="no" class="info">Copying 12 files to /files/jsf/jsf-head/javaserverfaces-sources/jsf-api/build/test</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">build</td><td width="1%" style="text-align:right" nowrap="yes">[ ]</td><td nowrap="no" class="info">test.FactoryFinder:</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">build</td><td width="1%" style="text-align:right" nowrap="yes">[ echo ]</td><td nowrap="no" class="info">Running FactoryFinder tests ...</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">build</td><td width="1%" style="text-align:right" nowrap="yes">[ mkdir ]</td><td nowrap="no" class="info">Created dir: /files/jsf/jsf-head/javaserverfaces-sources/jsf-api/build/classes/META-INF/services</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">build</td><td width="1%" style="text-align:right" nowrap="yes">[ junit ]</td><td nowrap="no" class="info">Running javax.faces.FactoryFinderTestCase</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">build</td><td width="1%" style="text-align:right" nowrap="yes">[ junit ]</td><td nowrap="no" class="info">Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.072 sec</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">build</td><td width="1%" style="text-align:right" nowrap="yes">[ junit ]</td><td nowrap="no" class="info">Testsuite: javax.faces.FactoryFinderTestCase</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">build</td><td width="1%" style="text-align:right" nowrap="yes">[ junit ]</td><td nowrap="no" class="info">Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.072 sec</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">build</td><td width="1%" style="text-align:right" nowrap="yes">[ junit ]</td><td nowrap="no" class="info">Testcase: testFacesConfigCase took 0.027 sec</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">build</td><td width="1%" style="text-align:right" nowrap="yes">[ junit ]</td><td nowrap="no" class="info">Testcase: testServicesCase took 0.003 sec</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">build</td><td width="1%" style="text-align:right" nowrap="yes">[ delete ]</td><td nowrap="no" class="info">Deleting directory /files/jsf/jsf-head/javaserverfaces-sources/jsf-api/build/classes/META-INF</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">build</td><td width="1%" style="text-align:right" nowrap="yes">[ ]</td><td nowrap="no" class="info">test.FactoryFinder2:</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">build</td><td width="1%" style="text-align:right" nowrap="yes">[ echo ]</td><td nowrap="no" class="info">Running FactoryFinder tests ...</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">build</td><td width="1%" style="text-align:right" nowrap="yes">[ junit ]</td><td nowrap="no" class="info">Running javax.faces.FactoryFinderTestCase2</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">build</td><td width="1%" style="text-align:right" nowrap="yes">[ junit ]</td><td nowrap="no" class="info">Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.069 sec</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">build</td><td width="1%" style="text-align:right" nowrap="yes">[ junit ]</td><td nowrap="no" class="info">Testsuite: javax.faces.FactoryFinderTestCase2</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">build</td><td width="1%" style="text-align:right" nowrap="yes">[ junit ]</td><td nowrap="no" class="info">Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.069 sec</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">build</td><td width="1%" style="text-align:right" nowrap="yes">[ junit ]</td><td nowrap="no" class="info">Testcase: testJSFImplCase took 0.024 sec</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">build</td><td width="1%" style="text-align:right" nowrap="yes">[ ]</td><td nowrap="no" class="info">test.PhaseId:</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">build</td><td width="1%" style="text-align:right" nowrap="yes">[ echo ]</td><td nowrap="no" class="info">Running PhaseId tests ...</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">build</td><td width="1%" style="text-align:right" nowrap="yes">[ junit ]</td><td nowrap="no" class="info">Running javax.faces.event.PhaseIdTest</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">build</td><td width="1%" style="text-align:right" nowrap="yes">[ junit ]</td><td nowrap="no" class="info">Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.05 sec</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">build</td><td width="1%" style="text-align:right" nowrap="yes">[ junit ]</td><td nowrap="no" class="info">Testsuite: javax.faces.event.PhaseIdTest</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">build</td><td width="1%" style="text-align:right" nowrap="yes">[ junit ]</td><td nowrap="no" class="info">Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.05 sec</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">build</td><td width="1%" style="text-align:right" nowrap="yes">[ junit ]</td><td nowrap="no" class="info">------------- Standard Output ---------------</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">build</td><td width="1%" style="text-align:right" nowrap="yes">[ junit ]</td><td nowrap="no" class="info">ANY 0</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">build</td><td width="1%" style="text-align:right" nowrap="yes">[ junit ]</td><td nowrap="no" class="info">RESTORE_VIEW 1</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">build</td><td width="1%" style="text-align:right" nowrap="yes">[ junit ]</td><td nowrap="no" class="info">APPLY_REQUEST_VALUES 2</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">build</td><td width="1%" style="text-align:right" nowrap="yes">[ junit ]</td><td nowrap="no" class="info">PROCESS_VALIDATIONS 3</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">build</td><td width="1%" style="text-align:right" nowrap="yes">[ junit ]</td><td nowrap="no" class="info">UPDATE_MODEL_VALUES 4</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">build</td><td width="1%" style="text-align:right" nowrap="yes">[ junit ]</td><td nowrap="no" class="info">INVOKE_APPLICATION 5</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">build</td><td width="1%" style="text-align:right" nowrap="yes">[ junit ]</td><td nowrap="no" class="info">RENDER_RESPONSE 6</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">build</td><td width="1%" style="text-align:right" nowrap="yes">[ junit ]</td><td nowrap="no" class="info">------------- ---------------- ---------------</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">build</td><td width="1%" style="text-align:right" nowrap="yes">[ junit ]</td><td nowrap="no" class="info">Testcase: testToString took 0.005 sec</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">build</td><td width="1%" style="text-align:right" nowrap="yes">[ ]</td><td nowrap="no" class="info">test.component:</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">build</td><td width="1%" style="text-align:right" nowrap="yes">[ echo ]</td><td nowrap="no" class="info">Running javax.faces.component tests ...</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">build</td><td width="1%" style="text-align:right" nowrap="yes">[ junit ]</td><td nowrap="no" class="info">Running javax.faces.component.NamingContainerTestCase</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">build</td><td width="1%" style="text-align:right" nowrap="yes">[ junit ]</td><td nowrap="no" class="info">Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 0.175 sec</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">build</td><td width="1%" style="text-align:right" nowrap="yes">[ junit ]</td><td nowrap="no" class="info">Testsuite: javax.faces.component.NamingContainerTestCase</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">build</td><td width="1%" style="text-align:right" nowrap="yes">[ junit ]</td><td nowrap="no" class="info">Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 0.175 sec</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">build</td><td width="1%" style="text-align:right" nowrap="yes">[ junit ]</td><td nowrap="no" class="info">Testcase: testNested took 0.117 sec</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">build</td><td width="1%" style="text-align:right" nowrap="yes">[ junit ]</td><td nowrap="no" class="info">Testcase: testNested2 took 0 sec</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">build</td><td width="1%" style="text-align:right" nowrap="yes">[ junit ]</td><td nowrap="no" class="info">Testcase: testStandard took 0.012 sec</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">build</td><td width="1%" style="text-align:right" nowrap="yes">[ junit ]</td><td nowrap="no" class="info">Running javax.faces.component.StateHolderSaverTestCase</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">build</td><td width="1%" style="text-align:right" nowrap="yes">[ junit ]</td><td nowrap="no" class="info">Tests run: 34, Failures: 0, Errors: 0, Time elapsed: 0.313 sec</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">build</td><td width="1%" style="text-align:right" nowrap="yes">[ junit ]</td><td nowrap="no" class="info">Testsuite: javax.faces.component.StateHolderSaverTestCase</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">build</td><td width="1%" style="text-align:right" nowrap="yes">[ junit ]</td><td nowrap="no" class="info">Tests run: 34, Failures: 0, Errors: 0, Time elapsed: 0.313 sec</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">build</td><td width="1%" style="text-align:right" nowrap="yes">[ junit ]</td><td nowrap="no" class="info">Testcase: testLifecycleManagement took 0.114 sec</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">build</td><td width="1%" style="text-align:right" nowrap="yes">[ junit ]</td><td nowrap="no" class="info">Testcase: testChildrenRecursive took 0 sec</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">build</td><td width="1%" style="text-align:right" nowrap="yes">[ junit ]</td><td nowrap="no" class="info">Testcase: testComponentReconnect took 0 sec</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">build</td><td width="1%" style="text-align:right" nowrap="yes">[ junit ]</td><td nowrap="no" class="info">Testcase: testComponentRemoval took 0 sec</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">build</td><td width="1%" style="text-align:right" nowrap="yes">[ junit ]</td><td nowrap="no" class="info">Testcase: testStateHolder took 0 sec</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">build</td><td width="1%" style="text-align:right" nowrap="yes">[ junit ]</td><td nowrap="no" class="info">Testcase: testValueBindings took 0 sec</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">build</td><td width="1%" style="text-align:right" nowrap="yes">[ junit ]</td><td nowrap="no" class="info">Testcase: testImplementsStateHolder took 0.014 sec</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">build</td><td width="1%" style="text-align:right" nowrap="yes">[ junit ]</td><td nowrap="no" class="info">Testcase: testImplementsSerializable took 0 sec</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">build</td><td width="1%" style="text-align:right" nowrap="yes">[ junit ]</td><td nowrap="no" class="info">Testcase: testImplementsNeither took 0.002 sec</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">build</td><td width="1%" style="text-align:right" nowrap="yes">[ junit ]</td><td nowrap="no" class="info">Testcase: testChildrenAndFacetsWithNullGetParent took 0.01 sec</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">build</td><td width="1%" style="text-align:right" nowrap="yes">[ junit ]</td><td nowrap="no" class="info">Testcase: testValueExpressions took 0.055 sec</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">build</td><td width="1%" style="text-align:right" nowrap="yes">[ junit ]</td><td nowrap="no" class="info">Testcase: testValueExpressionValueBindingIdempotency took 0.002 sec</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">build</td><td width="1%" style="text-align:right" nowrap="yes">[ junit ]</td><td nowrap="no" class="info">Testcase: testMethodBindingAdapterBaseException took 0.005 sec</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">build</td><td width="1%" style="text-align:right" nowrap="yes">[ junit ]</td><td nowrap="no" class="info">Testcase: testGetFacetsAndChildren took 0.003 sec</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">build</td><td width="1%" style="text-align:right" nowrap="yes">[ junit ]</td><td nowrap="no" class="info">Testcase: testInvokeOnComponentPositive took 0.01 sec</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">build</td><td width="1%" style="text-align:right" nowrap="yes">[ junit ]</td><td nowrap="no" class="info">Testcase: testInvokeOnComponentNegative took 0.004 sec</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">build</td><td width="1%" style="text-align:right" nowrap="yes">[ junit ]</td><td nowrap="no" class="info">Testcase: testInvokeOnComponentWithPrependId took 0.008 sec</td>
</tr>
<tr valign="top" class="b">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">build</td><td width="1%" style="text-align:right" nowrap="yes">[ junit ]</td><td nowrap="no" class="info">Testcase: testAttributesMap took 0.001 sec</td>
</tr>
<tr valign="top" class="a">
<td width="1%" nowrap="yes">JSF 1.2-GlassFish</td><td width="1%" nowrap="yes">build</td><td width="1%" style="text-align:right" nowrap="yes">[ junit ]</td><td nowrap="no" class="info">Testcase: testAttributesNegative took 0 sec</td>
</tr>