forked from apache/flink
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdep.txt
902 lines (901 loc) · 45.5 KB
/
dep.txt
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
[INFO] Scanning for projects...
[INFO] Reactor build order:
[INFO] stratosphere
[INFO] build-tools
[INFO] nephele
[INFO] nephele-common
[INFO] nephele-management
[INFO] nephele-hdfs
[INFO] nephele-server
[INFO] nephele-profiling
[INFO] nephele-queuescheduler
[INFO] nephele-ec2cloudmanager
[INFO] nephele-clustermanager
[INFO] nephele-visualization
[INFO] nephele-examples
[INFO] pact
[INFO] pact-common
[INFO] pact-runtime
[INFO] pact-compiler
[INFO] pact-clients
[INFO] pact-examples
[INFO] pact-tests
[INFO] stratosphere-dist
[INFO] Searching repository for plugin with prefix: 'dependency'.
[INFO] ------------------------------------------------------------------------
[INFO] Building stratosphere
[INFO] task-segment: [dependency:list]
[INFO] ------------------------------------------------------------------------
[INFO] [dependency:list {execution: default-cli}]
[INFO]
[INFO] The following files have been resolved:
[INFO] commons-logging:commons-logging:jar:1.1.1:compile
[INFO] junit:junit:jar:4.7:test
[INFO] log4j:log4j:jar:1.2.16:compile
[INFO] org.hamcrest:hamcrest-all:jar:1.1:test
[INFO] org.javassist:javassist:jar:3.14.0-GA:test
[INFO] org.mockito:mockito-all:jar:1.8.5:test
[INFO] org.objenesis:objenesis:jar:1.2:test
[INFO] org.powermock:powermock-api-mockito:jar:1.4.7:test
[INFO] org.powermock:powermock-api-support:jar:1.4.7:test
[INFO] org.powermock:powermock-core:jar:1.4.7:test
[INFO] org.powermock:powermock-module-junit4:jar:1.4.7:test
[INFO] org.powermock:powermock-module-junit4-common:jar:1.4.7:test
[INFO] org.powermock:powermock-reflect:jar:1.4.7:test
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building build-tools
[INFO] task-segment: [dependency:list]
[INFO] ------------------------------------------------------------------------
[INFO] [dependency:list {execution: default-cli}]
[INFO]
[INFO] The following files have been resolved:
[INFO] commons-logging:commons-logging:jar:1.1.1:compile
[INFO] junit:junit:jar:4.7:test
[INFO] log4j:log4j:jar:1.2.16:compile
[INFO] org.hamcrest:hamcrest-all:jar:1.1:test
[INFO] org.javassist:javassist:jar:3.14.0-GA:test
[INFO] org.mockito:mockito-all:jar:1.8.5:test
[INFO] org.objenesis:objenesis:jar:1.2:test
[INFO] org.powermock:powermock-api-mockito:jar:1.4.7:test
[INFO] org.powermock:powermock-api-support:jar:1.4.7:test
[INFO] org.powermock:powermock-core:jar:1.4.7:test
[INFO] org.powermock:powermock-module-junit4:jar:1.4.7:test
[INFO] org.powermock:powermock-module-junit4-common:jar:1.4.7:test
[INFO] org.powermock:powermock-reflect:jar:1.4.7:test
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building nephele
[INFO] task-segment: [dependency:list]
[INFO] ------------------------------------------------------------------------
[INFO] [dependency:list {execution: default-cli}]
[INFO]
[INFO] The following files have been resolved:
[INFO] commons-logging:commons-logging:jar:1.1.1:compile
[INFO] junit:junit:jar:4.7:test
[INFO] log4j:log4j:jar:1.2.16:compile
[INFO] org.hamcrest:hamcrest-all:jar:1.1:test
[INFO] org.javassist:javassist:jar:3.14.0-GA:test
[INFO] org.mockito:mockito-all:jar:1.8.5:test
[INFO] org.objenesis:objenesis:jar:1.2:test
[INFO] org.powermock:powermock-api-mockito:jar:1.4.7:test
[INFO] org.powermock:powermock-api-support:jar:1.4.7:test
[INFO] org.powermock:powermock-core:jar:1.4.7:test
[INFO] org.powermock:powermock-module-junit4:jar:1.4.7:test
[INFO] org.powermock:powermock-module-junit4-common:jar:1.4.7:test
[INFO] org.powermock:powermock-reflect:jar:1.4.7:test
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building nephele-common
[INFO] task-segment: [dependency:list]
[INFO] ------------------------------------------------------------------------
[INFO] [dependency:list {execution: default-cli}]
[INFO]
[INFO] The following files have been resolved:
[INFO] commons-logging:commons-logging:jar:1.1.1:compile
[INFO] junit:junit:jar:4.7:test
[INFO] log4j:log4j:jar:1.2.16:compile
[INFO] org.hamcrest:hamcrest-all:jar:1.1:test
[INFO] org.javassist:javassist:jar:3.14.0-GA:test
[INFO] org.mockito:mockito-all:jar:1.8.5:test
[INFO] org.objenesis:objenesis:jar:1.2:test
[INFO] org.powermock:powermock-api-mockito:jar:1.4.7:test
[INFO] org.powermock:powermock-api-support:jar:1.4.7:test
[INFO] org.powermock:powermock-core:jar:1.4.7:test
[INFO] org.powermock:powermock-module-junit4:jar:1.4.7:test
[INFO] org.powermock:powermock-module-junit4-common:jar:1.4.7:test
[INFO] org.powermock:powermock-reflect:jar:1.4.7:test
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building nephele-management
[INFO] task-segment: [dependency:list]
[INFO] ------------------------------------------------------------------------
[INFO] [dependency:list {execution: default-cli}]
[INFO]
[INFO] The following files have been resolved:
[INFO] commons-logging:commons-logging:jar:1.1.1:compile
[INFO] eu.stratosphere:nephele-common:jar:0.1:compile
[INFO] junit:junit:jar:4.7:test
[INFO] log4j:log4j:jar:1.2.16:compile
[INFO] org.hamcrest:hamcrest-all:jar:1.1:test
[INFO] org.javassist:javassist:jar:3.14.0-GA:test
[INFO] org.mockito:mockito-all:jar:1.8.5:test
[INFO] org.objenesis:objenesis:jar:1.2:test
[INFO] org.powermock:powermock-api-mockito:jar:1.4.7:test
[INFO] org.powermock:powermock-api-support:jar:1.4.7:test
[INFO] org.powermock:powermock-core:jar:1.4.7:test
[INFO] org.powermock:powermock-module-junit4:jar:1.4.7:test
[INFO] org.powermock:powermock-module-junit4-common:jar:1.4.7:test
[INFO] org.powermock:powermock-reflect:jar:1.4.7:test
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building nephele-hdfs
[INFO] task-segment: [dependency:list]
[INFO] ------------------------------------------------------------------------
[INFO] [dependency:list {execution: default-cli}]
[INFO]
[INFO] The following files have been resolved:
[INFO] ant:ant:jar:1.6.5:compile
[INFO] commons-cli:commons-cli:jar:1.2:compile
[INFO] commons-codec:commons-codec:jar:1.3:compile
[INFO] commons-el:commons-el:jar:1.0:compile
[INFO] commons-httpclient:commons-httpclient:jar:3.0.1:compile
[INFO] commons-logging:commons-logging:jar:1.1.1:compile
[INFO] commons-net:commons-net:jar:1.4.1:compile
[INFO] eu.stratosphere:nephele-common:jar:0.1:compile
[INFO] hsqldb:hsqldb:jar:1.8.0.10:compile
[INFO] junit:junit:jar:4.7:test
[INFO] log4j:log4j:jar:1.2.16:compile
[INFO] net.java.dev.jets3t:jets3t:jar:0.7.1:compile
[INFO] net.sf.kosmosfs:kfs:jar:0.3:compile
[INFO] org.apache.hadoop:hadoop-core:jar:0.20.2:compile
[INFO] org.eclipse.jdt:core:jar:3.1.1:compile
[INFO] org.hamcrest:hamcrest-all:jar:1.1:test
[INFO] org.javassist:javassist:jar:3.14.0-GA:test
[INFO] org.mockito:mockito-all:jar:1.8.5:test
[INFO] org.mortbay.jetty:jetty:jar:6.1.14:compile
[INFO] org.mortbay.jetty:jetty-util:jar:6.1.14:compile
[INFO] org.mortbay.jetty:jsp-2.1:jar:6.1.14:compile
[INFO] org.mortbay.jetty:jsp-api-2.1:jar:6.1.14:compile
[INFO] org.mortbay.jetty:servlet-api-2.5:jar:6.1.14:compile
[INFO] org.objenesis:objenesis:jar:1.2:test
[INFO] org.powermock:powermock-api-mockito:jar:1.4.7:test
[INFO] org.powermock:powermock-api-support:jar:1.4.7:test
[INFO] org.powermock:powermock-core:jar:1.4.7:test
[INFO] org.powermock:powermock-module-junit4:jar:1.4.7:test
[INFO] org.powermock:powermock-module-junit4-common:jar:1.4.7:test
[INFO] org.powermock:powermock-reflect:jar:1.4.7:test
[INFO] oro:oro:jar:2.0.8:compile
[INFO] tomcat:jasper-compiler:jar:5.5.12:compile
[INFO] tomcat:jasper-runtime:jar:5.5.12:compile
[INFO] xmlenc:xmlenc:jar:0.52:compile
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building nephele-server
[INFO] task-segment: [dependency:list]
[INFO] ------------------------------------------------------------------------
[INFO] [dependency:list {execution: default-cli}]
[INFO]
[INFO] The following files have been resolved:
[INFO] ant:ant:jar:1.6.5:compile
[INFO] commons-cli:commons-cli:jar:1.2:compile
[INFO] commons-codec:commons-codec:jar:1.3:compile
[INFO] commons-el:commons-el:jar:1.0:compile
[INFO] commons-httpclient:commons-httpclient:jar:3.0.1:compile
[INFO] commons-logging:commons-logging:jar:1.1.1:compile
[INFO] commons-net:commons-net:jar:1.4.1:compile
[INFO] eu.stratosphere:nephele-common:jar:0.1:compile
[INFO] eu.stratosphere:nephele-hdfs:jar:0.1:compile
[INFO] eu.stratosphere:nephele-management:jar:0.1:compile
[INFO] hsqldb:hsqldb:jar:1.8.0.10:compile
[INFO] junit:junit:jar:4.7:test
[INFO] log4j:log4j:jar:1.2.16:compile
[INFO] net.java.dev.jets3t:jets3t:jar:0.7.1:compile
[INFO] net.sf.kosmosfs:kfs:jar:0.3:compile
[INFO] org.apache.hadoop:hadoop-core:jar:0.20.2:compile
[INFO] org.eclipse.jdt:core:jar:3.1.1:compile
[INFO] org.hamcrest:hamcrest-all:jar:1.1:test
[INFO] org.javassist:javassist:jar:3.14.0-GA:test
[INFO] org.mockito:mockito-all:jar:1.8.5:test
[INFO] org.mortbay.jetty:jetty:jar:6.1.14:compile
[INFO] org.mortbay.jetty:jetty-util:jar:6.1.14:compile
[INFO] org.mortbay.jetty:jsp-2.1:jar:6.1.14:compile
[INFO] org.mortbay.jetty:jsp-api-2.1:jar:6.1.14:compile
[INFO] org.mortbay.jetty:servlet-api-2.5:jar:6.1.14:compile
[INFO] org.objenesis:objenesis:jar:1.2:test
[INFO] org.powermock:powermock-api-mockito:jar:1.4.7:test
[INFO] org.powermock:powermock-api-support:jar:1.4.7:test
[INFO] org.powermock:powermock-core:jar:1.4.7:test
[INFO] org.powermock:powermock-module-junit4:jar:1.4.7:test
[INFO] org.powermock:powermock-module-junit4-common:jar:1.4.7:test
[INFO] org.powermock:powermock-reflect:jar:1.4.7:test
[INFO] oro:oro:jar:2.0.8:compile
[INFO] tomcat:jasper-compiler:jar:5.5.12:compile
[INFO] tomcat:jasper-runtime:jar:5.5.12:compile
[INFO] xmlenc:xmlenc:jar:0.52:compile
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building nephele-profiling
[INFO] task-segment: [dependency:list]
[INFO] ------------------------------------------------------------------------
[INFO] [dependency:list {execution: default-cli}]
[INFO]
[INFO] The following files have been resolved:
[INFO] ant:ant:jar:1.6.5:compile
[INFO] antlr:antlr:jar:2.7.6:compile
[INFO] commons-cli:commons-cli:jar:1.2:compile
[INFO] commons-codec:commons-codec:jar:1.3:compile
[INFO] commons-collections:commons-collections:jar:3.1:compile
[INFO] commons-el:commons-el:jar:1.0:compile
[INFO] commons-httpclient:commons-httpclient:jar:3.0.1:compile
[INFO] commons-logging:commons-logging:jar:1.1.1:compile
[INFO] commons-net:commons-net:jar:1.4.1:compile
[INFO] dom4j:dom4j:jar:1.6.1:compile
[INFO] eu.stratosphere:nephele-common:jar:0.1:compile
[INFO] eu.stratosphere:nephele-hdfs:jar:0.1:compile
[INFO] eu.stratosphere:nephele-management:jar:0.1:compile
[INFO] eu.stratosphere:nephele-server:jar:0.1:compile
[INFO] hsqldb:hsqldb:jar:1.8.0.10:compile
[INFO] javassist:javassist:jar:3.8.0.GA:compile
[INFO] javax.transaction:jta:jar:1.1:compile
[INFO] junit:junit:jar:4.7:test
[INFO] log4j:log4j:jar:1.2.16:compile
[INFO] mysql:mysql-connector-java:jar:5.0.8:compile
[INFO] net.java.dev.jets3t:jets3t:jar:0.7.1:compile
[INFO] net.sf.kosmosfs:kfs:jar:0.3:compile
[INFO] org.apache.hadoop:hadoop-core:jar:0.20.2:compile
[INFO] org.eclipse.jdt:core:jar:3.1.1:compile
[INFO] org.hamcrest:hamcrest-all:jar:1.1:test
[INFO] org.hibernate:hibernate-core:jar:3.3.2.GA:compile
[INFO] org.javassist:javassist:jar:3.14.0-GA:test
[INFO] org.mockito:mockito-all:jar:1.8.5:test
[INFO] org.mortbay.jetty:jetty:jar:6.1.14:compile
[INFO] org.mortbay.jetty:jetty-util:jar:6.1.14:compile
[INFO] org.mortbay.jetty:jsp-2.1:jar:6.1.14:compile
[INFO] org.mortbay.jetty:jsp-api-2.1:jar:6.1.14:compile
[INFO] org.mortbay.jetty:servlet-api-2.5:jar:6.1.14:compile
[INFO] org.objenesis:objenesis:jar:1.2:test
[INFO] org.powermock:powermock-api-mockito:jar:1.4.7:test
[INFO] org.powermock:powermock-api-support:jar:1.4.7:test
[INFO] org.powermock:powermock-core:jar:1.4.7:test
[INFO] org.powermock:powermock-module-junit4:jar:1.4.7:test
[INFO] org.powermock:powermock-module-junit4-common:jar:1.4.7:test
[INFO] org.powermock:powermock-reflect:jar:1.4.7:test
[INFO] org.slf4j:slf4j-api:jar:1.5.10:compile
[INFO] org.slf4j:slf4j-log4j12:jar:1.5.10:compile
[INFO] oro:oro:jar:2.0.8:compile
[INFO] tomcat:jasper-compiler:jar:5.5.12:compile
[INFO] tomcat:jasper-runtime:jar:5.5.12:compile
[INFO] xml-apis:xml-apis:jar:1.0.b2:compile
[INFO] xmlenc:xmlenc:jar:0.52:compile
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building nephele-queuescheduler
[INFO] task-segment: [dependency:list]
[INFO] ------------------------------------------------------------------------
[INFO] [dependency:list {execution: default-cli}]
[INFO]
[INFO] The following files have been resolved:
[INFO] ant:ant:jar:1.6.5:compile
[INFO] commons-cli:commons-cli:jar:1.2:compile
[INFO] commons-codec:commons-codec:jar:1.3:compile
[INFO] commons-el:commons-el:jar:1.0:compile
[INFO] commons-httpclient:commons-httpclient:jar:3.0.1:compile
[INFO] commons-logging:commons-logging:jar:1.1.1:compile
[INFO] commons-net:commons-net:jar:1.4.1:compile
[INFO] eu.stratosphere:nephele-common:jar:0.1:compile
[INFO] eu.stratosphere:nephele-hdfs:jar:0.1:compile
[INFO] eu.stratosphere:nephele-management:jar:0.1:compile
[INFO] eu.stratosphere:nephele-server:jar:0.1:compile
[INFO] hsqldb:hsqldb:jar:1.8.0.10:compile
[INFO] junit:junit:jar:4.7:test
[INFO] log4j:log4j:jar:1.2.16:compile
[INFO] net.java.dev.jets3t:jets3t:jar:0.7.1:compile
[INFO] net.sf.kosmosfs:kfs:jar:0.3:compile
[INFO] org.apache.hadoop:hadoop-core:jar:0.20.2:compile
[INFO] org.eclipse.jdt:core:jar:3.1.1:compile
[INFO] org.hamcrest:hamcrest-all:jar:1.1:test
[INFO] org.javassist:javassist:jar:3.14.0-GA:test
[INFO] org.mockito:mockito-all:jar:1.8.5:test
[INFO] org.mortbay.jetty:jetty:jar:6.1.14:compile
[INFO] org.mortbay.jetty:jetty-util:jar:6.1.14:compile
[INFO] org.mortbay.jetty:jsp-2.1:jar:6.1.14:compile
[INFO] org.mortbay.jetty:jsp-api-2.1:jar:6.1.14:compile
[INFO] org.mortbay.jetty:servlet-api-2.5:jar:6.1.14:compile
[INFO] org.objenesis:objenesis:jar:1.2:test
[INFO] org.powermock:powermock-api-mockito:jar:1.4.7:test
[INFO] org.powermock:powermock-api-support:jar:1.4.7:test
[INFO] org.powermock:powermock-core:jar:1.4.7:test
[INFO] org.powermock:powermock-module-junit4:jar:1.4.7:test
[INFO] org.powermock:powermock-module-junit4-common:jar:1.4.7:test
[INFO] org.powermock:powermock-reflect:jar:1.4.7:test
[INFO] oro:oro:jar:2.0.8:compile
[INFO] tomcat:jasper-compiler:jar:5.5.12:compile
[INFO] tomcat:jasper-runtime:jar:5.5.12:compile
[INFO] xmlenc:xmlenc:jar:0.52:compile
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building nephele-ec2cloudmanager
[INFO] task-segment: [dependency:list]
[INFO] ------------------------------------------------------------------------
[INFO] [dependency:list {execution: default-cli}]
[INFO]
[INFO] The following files have been resolved:
[INFO] ant:ant:jar:1.6.5:compile
[INFO] com.google.code.typica:typica:jar:1.6:compile
[INFO] commons-cli:commons-cli:jar:1.2:compile
[INFO] commons-codec:commons-codec:jar:1.3:compile
[INFO] commons-el:commons-el:jar:1.0:compile
[INFO] commons-httpclient:commons-httpclient:jar:3.0:compile
[INFO] commons-logging:commons-logging:jar:1.1.1:compile
[INFO] commons-net:commons-net:jar:1.4.1:compile
[INFO] eu.stratosphere:nephele-common:jar:0.1:compile
[INFO] eu.stratosphere:nephele-hdfs:jar:0.1:compile
[INFO] eu.stratosphere:nephele-management:jar:0.1:compile
[INFO] eu.stratosphere:nephele-server:jar:0.1:compile
[INFO] hsqldb:hsqldb:jar:1.8.0.10:compile
[INFO] junit:junit:jar:4.7:test
[INFO] log4j:log4j:jar:1.2.16:compile
[INFO] net.java.dev.jets3t:jets3t:jar:0.7.1:compile
[INFO] net.sf.kosmosfs:kfs:jar:0.3:compile
[INFO] org.apache.hadoop:hadoop-core:jar:0.20.2:compile
[INFO] org.eclipse.jdt:core:jar:3.1.1:compile
[INFO] org.hamcrest:hamcrest-all:jar:1.1:test
[INFO] org.javassist:javassist:jar:3.14.0-GA:test
[INFO] org.mockito:mockito-all:jar:1.8.5:test
[INFO] org.mortbay.jetty:jetty:jar:6.1.14:compile
[INFO] org.mortbay.jetty:jetty-util:jar:6.1.14:compile
[INFO] org.mortbay.jetty:jsp-2.1:jar:6.1.14:compile
[INFO] org.mortbay.jetty:jsp-api-2.1:jar:6.1.14:compile
[INFO] org.mortbay.jetty:servlet-api-2.5:jar:6.1.14:compile
[INFO] org.objenesis:objenesis:jar:1.2:test
[INFO] org.powermock:powermock-api-mockito:jar:1.4.7:test
[INFO] org.powermock:powermock-api-support:jar:1.4.7:test
[INFO] org.powermock:powermock-core:jar:1.4.7:test
[INFO] org.powermock:powermock-module-junit4:jar:1.4.7:test
[INFO] org.powermock:powermock-module-junit4-common:jar:1.4.7:test
[INFO] org.powermock:powermock-reflect:jar:1.4.7:test
[INFO] oro:oro:jar:2.0.8:compile
[INFO] tomcat:jasper-compiler:jar:5.5.12:compile
[INFO] tomcat:jasper-runtime:jar:5.5.12:compile
[INFO] xmlenc:xmlenc:jar:0.52:compile
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building nephele-clustermanager
[INFO] task-segment: [dependency:list]
[INFO] ------------------------------------------------------------------------
[INFO] [dependency:list {execution: default-cli}]
[INFO]
[INFO] The following files have been resolved:
[INFO] ant:ant:jar:1.6.5:compile
[INFO] commons-cli:commons-cli:jar:1.2:compile
[INFO] commons-codec:commons-codec:jar:1.3:compile
[INFO] commons-el:commons-el:jar:1.0:compile
[INFO] commons-httpclient:commons-httpclient:jar:3.0.1:compile
[INFO] commons-logging:commons-logging:jar:1.1.1:compile
[INFO] commons-net:commons-net:jar:1.4.1:compile
[INFO] eu.stratosphere:nephele-common:jar:0.1:compile
[INFO] eu.stratosphere:nephele-hdfs:jar:0.1:compile
[INFO] eu.stratosphere:nephele-management:jar:0.1:compile
[INFO] eu.stratosphere:nephele-server:jar:0.1:compile
[INFO] hsqldb:hsqldb:jar:1.8.0.10:compile
[INFO] junit:junit:jar:4.7:test
[INFO] log4j:log4j:jar:1.2.16:compile
[INFO] net.java.dev.jets3t:jets3t:jar:0.7.1:compile
[INFO] net.sf.kosmosfs:kfs:jar:0.3:compile
[INFO] org.apache.hadoop:hadoop-core:jar:0.20.2:compile
[INFO] org.eclipse.jdt:core:jar:3.1.1:compile
[INFO] org.hamcrest:hamcrest-all:jar:1.1:test
[INFO] org.javassist:javassist:jar:3.14.0-GA:test
[INFO] org.mockito:mockito-all:jar:1.8.5:test
[INFO] org.mortbay.jetty:jetty:jar:6.1.14:compile
[INFO] org.mortbay.jetty:jetty-util:jar:6.1.14:compile
[INFO] org.mortbay.jetty:jsp-2.1:jar:6.1.14:compile
[INFO] org.mortbay.jetty:jsp-api-2.1:jar:6.1.14:compile
[INFO] org.mortbay.jetty:servlet-api-2.5:jar:6.1.14:compile
[INFO] org.objenesis:objenesis:jar:1.2:test
[INFO] org.powermock:powermock-api-mockito:jar:1.4.7:test
[INFO] org.powermock:powermock-api-support:jar:1.4.7:test
[INFO] org.powermock:powermock-core:jar:1.4.7:test
[INFO] org.powermock:powermock-module-junit4:jar:1.4.7:test
[INFO] org.powermock:powermock-module-junit4-common:jar:1.4.7:test
[INFO] org.powermock:powermock-reflect:jar:1.4.7:test
[INFO] oro:oro:jar:2.0.8:compile
[INFO] tomcat:jasper-compiler:jar:5.5.12:compile
[INFO] tomcat:jasper-runtime:jar:5.5.12:compile
[INFO] xmlenc:xmlenc:jar:0.52:compile
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building nephele-visualization
[INFO] task-segment: [dependency:list]
[INFO] ------------------------------------------------------------------------
[WARNING] POM for 'jfree:jfreechart-swt:pom:1.0.9:compile' is invalid.
Its dependencies (if any) will NOT be available to the current build.
[INFO] [dependency:list {execution: default-cli}]
[INFO]
[INFO] The following files have been resolved:
[INFO] commons-logging:commons-logging:jar:1.1.1:compile
[INFO] eu.stratosphere:nephele-common:jar:0.1:compile
[INFO] eu.stratosphere:nephele-management:jar:0.1:compile
[INFO] jfree:jcommon:jar:1.0.12:compile
[INFO] jfree:jfreechart:jar:1.0.9:compile
[INFO] jfree:jfreechart-swt:jar:1.0.9:compile
[INFO] junit:junit:jar:4.7:test
[INFO] log4j:log4j:jar:1.2.16:compile
[INFO] org.eclipse.swt.gtk.linux:x86_64:jar:3.3.0-v3346:compile
[INFO] org.hamcrest:hamcrest-all:jar:1.1:test
[INFO] org.javassist:javassist:jar:3.14.0-GA:test
[INFO] org.mockito:mockito-all:jar:1.8.5:test
[INFO] org.objenesis:objenesis:jar:1.2:test
[INFO] org.powermock:powermock-api-mockito:jar:1.4.7:test
[INFO] org.powermock:powermock-api-support:jar:1.4.7:test
[INFO] org.powermock:powermock-core:jar:1.4.7:test
[INFO] org.powermock:powermock-module-junit4:jar:1.4.7:test
[INFO] org.powermock:powermock-module-junit4-common:jar:1.4.7:test
[INFO] org.powermock:powermock-reflect:jar:1.4.7:test
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building nephele-examples
[INFO] task-segment: [dependency:list]
[INFO] ------------------------------------------------------------------------
[INFO] [dependency:list {execution: default-cli}]
[INFO]
[INFO] The following files have been resolved:
[INFO] commons-logging:commons-logging:jar:1.1.1:compile
[INFO] eu.stratosphere:nephele-common:jar:0.1:compile
[INFO] junit:junit:jar:4.7:test
[INFO] log4j:log4j:jar:1.2.16:compile
[INFO] org.hamcrest:hamcrest-all:jar:1.1:test
[INFO] org.javassist:javassist:jar:3.14.0-GA:test
[INFO] org.mockito:mockito-all:jar:1.8.5:test
[INFO] org.objenesis:objenesis:jar:1.2:test
[INFO] org.powermock:powermock-api-mockito:jar:1.4.7:test
[INFO] org.powermock:powermock-api-support:jar:1.4.7:test
[INFO] org.powermock:powermock-core:jar:1.4.7:test
[INFO] org.powermock:powermock-module-junit4:jar:1.4.7:test
[INFO] org.powermock:powermock-module-junit4-common:jar:1.4.7:test
[INFO] org.powermock:powermock-reflect:jar:1.4.7:test
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building pact
[INFO] task-segment: [dependency:list]
[INFO] ------------------------------------------------------------------------
[INFO] [dependency:list {execution: default-cli}]
[INFO]
[INFO] The following files have been resolved:
[INFO] commons-logging:commons-logging:jar:1.1.1:compile
[INFO] junit:junit:jar:4.7:test
[INFO] log4j:log4j:jar:1.2.16:compile
[INFO] org.hamcrest:hamcrest-all:jar:1.1:test
[INFO] org.javassist:javassist:jar:3.14.0-GA:test
[INFO] org.mockito:mockito-all:jar:1.8.5:test
[INFO] org.objenesis:objenesis:jar:1.2:test
[INFO] org.powermock:powermock-api-mockito:jar:1.4.7:test
[INFO] org.powermock:powermock-api-support:jar:1.4.7:test
[INFO] org.powermock:powermock-core:jar:1.4.7:test
[INFO] org.powermock:powermock-module-junit4:jar:1.4.7:test
[INFO] org.powermock:powermock-module-junit4-common:jar:1.4.7:test
[INFO] org.powermock:powermock-reflect:jar:1.4.7:test
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building pact-common
[INFO] task-segment: [dependency:list]
[INFO] ------------------------------------------------------------------------
[INFO] [dependency:list {execution: default-cli}]
[INFO]
[INFO] The following files have been resolved:
[INFO] ant:ant:jar:1.6.5:compile
[INFO] commons-cli:commons-cli:jar:1.2:compile
[INFO] commons-codec:commons-codec:jar:1.3:compile
[INFO] commons-el:commons-el:jar:1.0:compile
[INFO] commons-httpclient:commons-httpclient:jar:3.0.1:compile
[INFO] commons-logging:commons-logging:jar:1.1.1:compile
[INFO] commons-net:commons-net:jar:1.4.1:compile
[INFO] eu.stratosphere:nephele-common:jar:0.1:compile
[INFO] eu.stratosphere:nephele-hdfs:jar:0.1:compile
[INFO] hsqldb:hsqldb:jar:1.8.0.10:compile
[INFO] junit:junit:jar:4.7:test
[INFO] log4j:log4j:jar:1.2.16:compile
[INFO] net.java.dev.jets3t:jets3t:jar:0.7.1:compile
[INFO] net.sf.kosmosfs:kfs:jar:0.3:compile
[INFO] org.apache.hadoop:hadoop-core:jar:0.20.2:compile
[INFO] org.codehaus.jackson:jackson-core-asl:jar:1.7.1:compile
[INFO] org.codehaus.jackson:jackson-mapper-asl:jar:1.7.1:compile
[INFO] org.eclipse.jdt:core:jar:3.1.1:compile
[INFO] org.hamcrest:hamcrest-all:jar:1.1:test
[INFO] org.javassist:javassist:jar:3.14.0-GA:test
[INFO] org.mockito:mockito-all:jar:1.8.5:test
[INFO] org.mortbay.jetty:jetty:jar:6.1.14:compile
[INFO] org.mortbay.jetty:jetty-util:jar:6.1.14:compile
[INFO] org.mortbay.jetty:jsp-2.1:jar:6.1.14:compile
[INFO] org.mortbay.jetty:jsp-api-2.1:jar:6.1.14:compile
[INFO] org.mortbay.jetty:servlet-api-2.5:jar:6.1.14:compile
[INFO] org.objenesis:objenesis:jar:1.2:test
[INFO] org.powermock:powermock-api-mockito:jar:1.4.7:test
[INFO] org.powermock:powermock-api-support:jar:1.4.7:test
[INFO] org.powermock:powermock-core:jar:1.4.7:test
[INFO] org.powermock:powermock-module-junit4:jar:1.4.7:test
[INFO] org.powermock:powermock-module-junit4-common:jar:1.4.7:test
[INFO] org.powermock:powermock-reflect:jar:1.4.7:test
[INFO] oro:oro:jar:2.0.8:compile
[INFO] tomcat:jasper-compiler:jar:5.5.12:compile
[INFO] tomcat:jasper-runtime:jar:5.5.12:compile
[INFO] xmlenc:xmlenc:jar:0.52:compile
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building pact-runtime
[INFO] task-segment: [dependency:list]
[INFO] ------------------------------------------------------------------------
[INFO] [dependency:list {execution: default-cli}]
[INFO]
[INFO] The following files have been resolved:
[INFO] ant:ant:jar:1.6.5:compile
[INFO] commons-cli:commons-cli:jar:1.2:compile
[INFO] commons-codec:commons-codec:jar:1.3:compile
[INFO] commons-el:commons-el:jar:1.0:compile
[INFO] commons-httpclient:commons-httpclient:jar:3.0.1:compile
[INFO] commons-logging:commons-logging:jar:1.1.1:compile
[INFO] commons-net:commons-net:jar:1.4.1:compile
[INFO] eu.stratosphere:nephele-common:jar:0.1:compile
[INFO] eu.stratosphere:nephele-hdfs:jar:0.1:compile
[INFO] eu.stratosphere:nephele-management:jar:0.1:compile
[INFO] eu.stratosphere:nephele-server:jar:0.1:compile
[INFO] eu.stratosphere:pact-common:jar:0.1:compile
[INFO] hsqldb:hsqldb:jar:1.8.0.10:compile
[INFO] junit:junit:jar:4.7:test
[INFO] log4j:log4j:jar:1.2.16:compile
[INFO] net.java.dev.jets3t:jets3t:jar:0.7.1:compile
[INFO] net.sf.kosmosfs:kfs:jar:0.3:compile
[INFO] org.apache.hadoop:hadoop-core:jar:0.20.2:compile
[INFO] org.codehaus.jackson:jackson-core-asl:jar:1.7.1:compile
[INFO] org.codehaus.jackson:jackson-mapper-asl:jar:1.7.1:compile
[INFO] org.eclipse.jdt:core:jar:3.1.1:compile
[INFO] org.hamcrest:hamcrest-all:jar:1.1:test
[INFO] org.javassist:javassist:jar:3.14.0-GA:test
[INFO] org.mockito:mockito-all:jar:1.8.5:test
[INFO] org.mortbay.jetty:jetty:jar:6.1.14:compile
[INFO] org.mortbay.jetty:jetty-util:jar:6.1.14:compile
[INFO] org.mortbay.jetty:jsp-2.1:jar:6.1.14:compile
[INFO] org.mortbay.jetty:jsp-api-2.1:jar:6.1.14:compile
[INFO] org.mortbay.jetty:servlet-api-2.5:jar:6.1.14:compile
[INFO] org.objenesis:objenesis:jar:1.2:test
[INFO] org.powermock:powermock-api-mockito:jar:1.4.7:test
[INFO] org.powermock:powermock-api-support:jar:1.4.7:test
[INFO] org.powermock:powermock-core:jar:1.4.7:test
[INFO] org.powermock:powermock-module-junit4:jar:1.4.7:test
[INFO] org.powermock:powermock-module-junit4-common:jar:1.4.7:test
[INFO] org.powermock:powermock-reflect:jar:1.4.7:test
[INFO] oro:oro:jar:2.0.8:compile
[INFO] tomcat:jasper-compiler:jar:5.5.12:compile
[INFO] tomcat:jasper-runtime:jar:5.5.12:compile
[INFO] xmlenc:xmlenc:jar:0.52:compile
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building pact-compiler
[INFO] task-segment: [dependency:list]
[INFO] ------------------------------------------------------------------------
[INFO] [dependency:list {execution: default-cli}]
[INFO]
[INFO] The following files have been resolved:
[INFO] ant:ant:jar:1.6.5:compile
[INFO] commons-cli:commons-cli:jar:1.2:compile
[INFO] commons-codec:commons-codec:jar:1.3:compile
[INFO] commons-el:commons-el:jar:1.0:compile
[INFO] commons-httpclient:commons-httpclient:jar:3.0.1:compile
[INFO] commons-logging:commons-logging:jar:1.1.1:compile
[INFO] commons-net:commons-net:jar:1.4.1:compile
[INFO] eu.stratosphere:nephele-common:jar:0.1:compile
[INFO] eu.stratosphere:nephele-hdfs:jar:0.1:compile
[INFO] eu.stratosphere:nephele-management:jar:0.1:compile
[INFO] eu.stratosphere:nephele-server:jar:0.1:compile
[INFO] eu.stratosphere:pact-common:jar:0.1:compile
[INFO] eu.stratosphere:pact-runtime:jar:0.1:compile
[INFO] hsqldb:hsqldb:jar:1.8.0.10:compile
[INFO] junit:junit:jar:4.7:test
[INFO] log4j:log4j:jar:1.2.16:compile
[INFO] net.java.dev.jets3t:jets3t:jar:0.7.1:compile
[INFO] net.sf.kosmosfs:kfs:jar:0.3:compile
[INFO] org.apache.hadoop:hadoop-core:jar:0.20.2:compile
[INFO] org.codehaus.jackson:jackson-core-asl:jar:1.7.1:compile
[INFO] org.codehaus.jackson:jackson-mapper-asl:jar:1.7.1:compile
[INFO] org.eclipse.jdt:core:jar:3.1.1:compile
[INFO] org.hamcrest:hamcrest-all:jar:1.1:test
[INFO] org.javassist:javassist:jar:3.14.0-GA:test
[INFO] org.mockito:mockito-all:jar:1.8.5:test
[INFO] org.mortbay.jetty:jetty:jar:6.1.14:compile
[INFO] org.mortbay.jetty:jetty-util:jar:6.1.14:compile
[INFO] org.mortbay.jetty:jsp-2.1:jar:6.1.14:compile
[INFO] org.mortbay.jetty:jsp-api-2.1:jar:6.1.14:compile
[INFO] org.mortbay.jetty:servlet-api-2.5:jar:6.1.14:compile
[INFO] org.objenesis:objenesis:jar:1.2:test
[INFO] org.powermock:powermock-api-mockito:jar:1.4.7:test
[INFO] org.powermock:powermock-api-support:jar:1.4.7:test
[INFO] org.powermock:powermock-core:jar:1.4.7:test
[INFO] org.powermock:powermock-module-junit4:jar:1.4.7:test
[INFO] org.powermock:powermock-module-junit4-common:jar:1.4.7:test
[INFO] org.powermock:powermock-reflect:jar:1.4.7:test
[INFO] oro:oro:jar:2.0.8:compile
[INFO] tomcat:jasper-compiler:jar:5.5.12:compile
[INFO] tomcat:jasper-runtime:jar:5.5.12:compile
[INFO] xmlenc:xmlenc:jar:0.52:compile
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building pact-clients
[INFO] task-segment: [dependency:list]
[INFO] ------------------------------------------------------------------------
[INFO] [dependency:list {execution: default-cli}]
[INFO]
[INFO] The following files have been resolved:
[INFO] ant:ant:jar:1.6.5:compile
[INFO] commons-cli:commons-cli:jar:1.2:compile
[INFO] commons-codec:commons-codec:jar:1.3:compile
[INFO] commons-el:commons-el:jar:1.0:compile
[INFO] commons-fileupload:commons-fileupload:jar:1.2.2:compile
[INFO] commons-httpclient:commons-httpclient:jar:3.0.1:compile
[INFO] commons-logging:commons-logging:jar:1.1.1:compile
[INFO] commons-net:commons-net:jar:1.4.1:compile
[INFO] eu.stratosphere:nephele-common:jar:0.1:compile
[INFO] eu.stratosphere:nephele-hdfs:jar:0.1:compile
[INFO] eu.stratosphere:nephele-management:jar:0.1:compile
[INFO] eu.stratosphere:nephele-server:jar:0.1:compile
[INFO] eu.stratosphere:pact-common:jar:0.1:compile
[INFO] eu.stratosphere:pact-compiler:jar:0.1:compile
[INFO] eu.stratosphere:pact-runtime:jar:0.1:compile
[INFO] hsqldb:hsqldb:jar:1.8.0.10:compile
[INFO] junit:junit:jar:4.7:test
[INFO] log4j:log4j:jar:1.2.16:compile
[INFO] net.java.dev.jets3t:jets3t:jar:0.7.1:compile
[INFO] net.sf.kosmosfs:kfs:jar:0.3:compile
[INFO] org.apache.commons:commons-io:jar:1.3.2:compile
[INFO] org.apache.hadoop:hadoop-core:jar:0.20.2:compile
[INFO] org.codehaus.jackson:jackson-core-asl:jar:1.7.1:compile
[INFO] org.codehaus.jackson:jackson-mapper-asl:jar:1.7.1:compile
[INFO] org.eclipse.jdt:core:jar:3.1.1:compile
[INFO] org.eclipse.jetty:jetty-continuation:jar:8.0.0.M1:compile
[INFO] org.eclipse.jetty:jetty-http:jar:8.0.0.M1:compile
[INFO] org.eclipse.jetty:jetty-io:jar:8.0.0.M1:compile
[INFO] org.eclipse.jetty:jetty-security:jar:8.0.0.M1:compile
[INFO] org.eclipse.jetty:jetty-server:jar:8.0.0.M1:compile
[INFO] org.eclipse.jetty:jetty-servlet:jar:8.0.0.M1:compile
[INFO] org.eclipse.jetty:jetty-util:jar:8.0.0.M1:compile
[INFO] org.hamcrest:hamcrest-all:jar:1.1:test
[INFO] org.javassist:javassist:jar:3.14.0-GA:test
[INFO] org.mockito:mockito-all:jar:1.8.5:test
[INFO] org.mortbay.jetty:jetty:jar:6.1.14:compile
[INFO] org.mortbay.jetty:jetty-util:jar:6.1.14:compile
[INFO] org.mortbay.jetty:jsp-2.1:jar:6.1.14:compile
[INFO] org.mortbay.jetty:jsp-api-2.1:jar:6.1.14:compile
[INFO] org.mortbay.jetty:servlet-api:jar:3.0.20100224:compile
[INFO] org.mortbay.jetty:servlet-api-2.5:jar:6.1.14:compile
[INFO] org.objenesis:objenesis:jar:1.2:test
[INFO] org.powermock:powermock-api-mockito:jar:1.4.7:test
[INFO] org.powermock:powermock-api-support:jar:1.4.7:test
[INFO] org.powermock:powermock-core:jar:1.4.7:test
[INFO] org.powermock:powermock-module-junit4:jar:1.4.7:test
[INFO] org.powermock:powermock-module-junit4-common:jar:1.4.7:test
[INFO] org.powermock:powermock-reflect:jar:1.4.7:test
[INFO] oro:oro:jar:2.0.8:compile
[INFO] tomcat:jasper-compiler:jar:5.5.12:compile
[INFO] tomcat:jasper-runtime:jar:5.5.12:compile
[INFO] xmlenc:xmlenc:jar:0.52:compile
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building pact-examples
[INFO] task-segment: [dependency:list]
[INFO] ------------------------------------------------------------------------
[INFO] [dependency:list {execution: default-cli}]
[INFO]
[INFO] The following files have been resolved:
[INFO] ant:ant:jar:1.6.5:compile
[INFO] commons-cli:commons-cli:jar:1.2:compile
[INFO] commons-codec:commons-codec:jar:1.3:compile
[INFO] commons-el:commons-el:jar:1.0:compile
[INFO] commons-httpclient:commons-httpclient:jar:3.0.1:compile
[INFO] commons-logging:commons-logging:jar:1.1.1:compile
[INFO] commons-net:commons-net:jar:1.4.1:compile
[INFO] eu.stratosphere:nephele-common:jar:0.1:compile
[INFO] eu.stratosphere:nephele-hdfs:jar:0.1:compile
[INFO] eu.stratosphere:nephele-management:jar:0.1:compile
[INFO] eu.stratosphere:nephele-server:jar:0.1:compile
[INFO] eu.stratosphere:pact-common:jar:0.1:compile
[INFO] eu.stratosphere:pact-compiler:jar:0.1:compile
[INFO] eu.stratosphere:pact-runtime:jar:0.1:compile
[INFO] hsqldb:hsqldb:jar:1.8.0.10:compile
[INFO] junit:junit:jar:4.7:test
[INFO] log4j:log4j:jar:1.2.16:compile
[INFO] net.java.dev.jets3t:jets3t:jar:0.7.1:compile
[INFO] net.sf.kosmosfs:kfs:jar:0.3:compile
[INFO] org.apache.hadoop:hadoop-core:jar:0.20.2:compile
[INFO] org.codehaus.jackson:jackson-core-asl:jar:1.7.1:compile
[INFO] org.codehaus.jackson:jackson-mapper-asl:jar:1.7.1:compile
[INFO] org.eclipse.jdt:core:jar:3.1.1:compile
[INFO] org.hamcrest:hamcrest-all:jar:1.1:test
[INFO] org.javassist:javassist:jar:3.14.0-GA:test
[INFO] org.mockito:mockito-all:jar:1.8.5:test
[INFO] org.mortbay.jetty:jetty:jar:6.1.14:compile
[INFO] org.mortbay.jetty:jetty-util:jar:6.1.14:compile
[INFO] org.mortbay.jetty:jsp-2.1:jar:6.1.14:compile
[INFO] org.mortbay.jetty:jsp-api-2.1:jar:6.1.14:compile
[INFO] org.mortbay.jetty:servlet-api-2.5:jar:6.1.14:compile
[INFO] org.objenesis:objenesis:jar:1.2:test
[INFO] org.powermock:powermock-api-mockito:jar:1.4.7:test
[INFO] org.powermock:powermock-api-support:jar:1.4.7:test
[INFO] org.powermock:powermock-core:jar:1.4.7:test
[INFO] org.powermock:powermock-module-junit4:jar:1.4.7:test
[INFO] org.powermock:powermock-module-junit4-common:jar:1.4.7:test
[INFO] org.powermock:powermock-reflect:jar:1.4.7:test
[INFO] oro:oro:jar:2.0.8:compile
[INFO] tomcat:jasper-compiler:jar:5.5.12:compile
[INFO] tomcat:jasper-runtime:jar:5.5.12:compile
[INFO] xmlenc:xmlenc:jar:0.52:compile
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building pact-tests
[INFO] task-segment: [dependency:list]
[INFO] ------------------------------------------------------------------------
[INFO] [dependency:list {execution: default-cli}]
[INFO]
[INFO] The following files have been resolved:
[INFO] ant:ant:jar:1.6.5:compile
[INFO] commons-cli:commons-cli:jar:1.2:compile
[INFO] commons-codec:commons-codec:jar:1.3:compile
[INFO] commons-el:commons-el:jar:1.0:compile
[INFO] commons-httpclient:commons-httpclient:jar:3.0.1:compile
[INFO] commons-logging:commons-logging:jar:1.1.1:compile
[INFO] commons-net:commons-net:jar:1.4.1:compile
[INFO] eu.stratosphere:nephele-common:jar:0.1:compile
[INFO] eu.stratosphere:nephele-hdfs:jar:0.1:compile
[INFO] eu.stratosphere:nephele-management:jar:0.1:compile
[INFO] eu.stratosphere:nephele-server:jar:0.1:compile
[INFO] eu.stratosphere:pact-common:jar:0.1:compile
[INFO] eu.stratosphere:pact-compiler:jar:0.1:compile
[INFO] eu.stratosphere:pact-examples:jar:0.1:compile
[INFO] eu.stratosphere:pact-runtime:jar:0.1:compile
[INFO] hsqldb:hsqldb:jar:1.8.0.10:compile
[INFO] junit:junit:jar:4.7:compile
[INFO] log4j:log4j:jar:1.2.16:compile
[INFO] net.java.dev.jets3t:jets3t:jar:0.7.1:compile
[INFO] net.sf.kosmosfs:kfs:jar:0.3:compile
[INFO] org.apache.hadoop:hadoop-core:jar:0.20.2:compile
[INFO] org.codehaus.jackson:jackson-core-asl:jar:1.7.1:compile
[INFO] org.codehaus.jackson:jackson-mapper-asl:jar:1.7.1:compile
[INFO] org.eclipse.jdt:core:jar:3.1.1:compile
[INFO] org.hamcrest:hamcrest-all:jar:1.1:compile
[INFO] org.javassist:javassist:jar:3.14.0-GA:compile
[INFO] org.mockito:mockito-all:jar:1.8.5:compile
[INFO] org.mortbay.jetty:jetty:jar:6.1.14:compile
[INFO] org.mortbay.jetty:jetty-util:jar:6.1.14:compile
[INFO] org.mortbay.jetty:jsp-2.1:jar:6.1.14:compile
[INFO] org.mortbay.jetty:jsp-api-2.1:jar:6.1.14:compile
[INFO] org.mortbay.jetty:servlet-api-2.5:jar:6.1.14:compile
[INFO] org.objenesis:objenesis:jar:1.2:compile
[INFO] org.powermock:powermock-api-mockito:jar:1.4.7:compile
[INFO] org.powermock:powermock-api-support:jar:1.4.7:compile
[INFO] org.powermock:powermock-core:jar:1.4.7:compile
[INFO] org.powermock:powermock-module-junit4:jar:1.4.7:compile
[INFO] org.powermock:powermock-module-junit4-common:jar:1.4.7:compile
[INFO] org.powermock:powermock-reflect:jar:1.4.7:compile
[INFO] oro:oro:jar:2.0.8:compile
[INFO] tomcat:jasper-compiler:jar:5.5.12:compile
[INFO] tomcat:jasper-runtime:jar:5.5.12:compile
[INFO] xmlenc:xmlenc:jar:0.52:compile
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building stratosphere-dist
[INFO] task-segment: [dependency:list]
[INFO] ------------------------------------------------------------------------
[INFO] [dependency:list {execution: default-cli}]
[INFO]
[INFO] The following files have been resolved:
[INFO] ant:ant:jar:1.6.5:compile
[INFO] antlr:antlr:jar:2.7.6:compile
[INFO] com.google.code.typica:typica:jar:1.6:compile
[INFO] commons-cli:commons-cli:jar:1.2:compile
[INFO] commons-codec:commons-codec:jar:1.3:compile
[INFO] commons-collections:commons-collections:jar:3.1:compile
[INFO] commons-el:commons-el:jar:1.0:compile
[INFO] commons-fileupload:commons-fileupload:jar:1.2.2:compile
[INFO] commons-httpclient:commons-httpclient:jar:3.0:compile
[INFO] commons-logging:commons-logging:jar:1.1.1:compile
[INFO] commons-net:commons-net:jar:1.4.1:compile
[INFO] dom4j:dom4j:jar:1.6.1:compile
[INFO] eu.stratosphere:nephele:jar:sources:0.1:compile
[INFO] eu.stratosphere:nephele-clustermanager:jar:0.1:compile
[INFO] eu.stratosphere:nephele-common:jar:0.1:compile
[INFO] eu.stratosphere:nephele-ec2cloudmanager:jar:0.1:compile
[INFO] eu.stratosphere:nephele-examples:jar:0.1:compile
[INFO] eu.stratosphere:nephele-hdfs:jar:0.1:compile
[INFO] eu.stratosphere:nephele-management:jar:0.1:compile
[INFO] eu.stratosphere:nephele-profiling:jar:0.1:compile
[INFO] eu.stratosphere:nephele-queuescheduler:jar:0.1:compile
[INFO] eu.stratosphere:nephele-server:jar:0.1:compile
[INFO] eu.stratosphere:nephele-visualization:jar:0.1:compile
[INFO] eu.stratosphere:pact:jar:sources:0.1:compile
[INFO] eu.stratosphere:pact-clients:jar:0.1:compile
[INFO] eu.stratosphere:pact-common:jar:0.1:compile
[INFO] eu.stratosphere:pact-compiler:jar:0.1:compile
[INFO] eu.stratosphere:pact-examples:jar:0.1:compile
[INFO] eu.stratosphere:pact-runtime:jar:0.1:compile
[INFO] hsqldb:hsqldb:jar:1.8.0.10:compile
[INFO] javassist:javassist:jar:3.8.0.GA:compile
[INFO] javax.transaction:jta:jar:1.1:compile
[INFO] jfree:jcommon:jar:1.0.12:compile
[INFO] jfree:jfreechart:jar:1.0.9:compile
[INFO] jfree:jfreechart-swt:jar:1.0.9:compile
[INFO] junit:junit:jar:4.7:test
[INFO] log4j:log4j:jar:1.2.16:compile
[INFO] mysql:mysql-connector-java:jar:5.0.8:compile
[INFO] net.java.dev.jets3t:jets3t:jar:0.7.1:compile
[INFO] net.sf.kosmosfs:kfs:jar:0.3:compile
[INFO] org.apache.commons:commons-io:jar:1.3.2:compile
[INFO] org.apache.hadoop:hadoop-core:jar:0.20.2:compile
[INFO] org.codehaus.jackson:jackson-core-asl:jar:1.7.1:compile
[INFO] org.codehaus.jackson:jackson-mapper-asl:jar:1.7.1:compile
[INFO] org.eclipse.jdt:core:jar:3.1.1:compile
[INFO] org.eclipse.jetty:jetty-continuation:jar:8.0.0.M1:compile
[INFO] org.eclipse.jetty:jetty-http:jar:8.0.0.M1:compile
[INFO] org.eclipse.jetty:jetty-io:jar:8.0.0.M1:compile
[INFO] org.eclipse.jetty:jetty-security:jar:8.0.0.M1:compile
[INFO] org.eclipse.jetty:jetty-server:jar:8.0.0.M1:compile
[INFO] org.eclipse.jetty:jetty-servlet:jar:8.0.0.M1:compile
[INFO] org.eclipse.jetty:jetty-util:jar:8.0.0.M1:compile
[INFO] org.eclipse.swt.gtk.linux:x86_64:jar:3.3.0-v3346:compile
[INFO] org.hamcrest:hamcrest-all:jar:1.1:test
[INFO] org.hibernate:hibernate-core:jar:3.3.2.GA:compile
[INFO] org.javassist:javassist:jar:3.14.0-GA:test
[INFO] org.mockito:mockito-all:jar:1.8.5:test
[INFO] org.mortbay.jetty:jetty:jar:6.1.14:compile
[INFO] org.mortbay.jetty:jetty-util:jar:6.1.14:compile
[INFO] org.mortbay.jetty:jsp-2.1:jar:6.1.14:compile
[INFO] org.mortbay.jetty:jsp-api-2.1:jar:6.1.14:compile
[INFO] org.mortbay.jetty:servlet-api:jar:3.0.20100224:compile
[INFO] org.mortbay.jetty:servlet-api-2.5:jar:6.1.14:compile
[INFO] org.objenesis:objenesis:jar:1.2:test
[INFO] org.powermock:powermock-api-mockito:jar:1.4.7:test
[INFO] org.powermock:powermock-api-support:jar:1.4.7:test
[INFO] org.powermock:powermock-core:jar:1.4.7:test
[INFO] org.powermock:powermock-module-junit4:jar:1.4.7:test
[INFO] org.powermock:powermock-module-junit4-common:jar:1.4.7:test
[INFO] org.powermock:powermock-reflect:jar:1.4.7:test
[INFO] org.slf4j:slf4j-api:jar:1.5.10:compile
[INFO] org.slf4j:slf4j-log4j12:jar:1.5.10:compile
[INFO] oro:oro:jar:2.0.8:compile
[INFO] tomcat:jasper-compiler:jar:5.5.12:compile
[INFO] tomcat:jasper-runtime:jar:5.5.12:compile
[INFO] xml-apis:xml-apis:jar:1.0.b2:compile
[INFO] xmlenc:xmlenc:jar:0.52:compile
[INFO]
[INFO]
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Reactor Summary:
[INFO] ------------------------------------------------------------------------
[INFO] stratosphere .......................................... SUCCESS [2.572s]
[INFO] build-tools ........................................... SUCCESS [0.011s]
[INFO] nephele ............................................... SUCCESS [0.013s]
[INFO] nephele-common ........................................ SUCCESS [0.012s]
[INFO] nephele-management .................................... SUCCESS [0.013s]
[INFO] nephele-hdfs .......................................... SUCCESS [0.162s]
[INFO] nephele-server ........................................ SUCCESS [0.025s]
[INFO] nephele-profiling ..................................... SUCCESS [0.091s]
[INFO] nephele-queuescheduler ................................ SUCCESS [0.022s]
[INFO] nephele-ec2cloudmanager ............................... SUCCESS [0.030s]
[INFO] nephele-clustermanager ................................ SUCCESS [0.023s]
[INFO] nephele-visualization ................................. SUCCESS [0.026s]
[INFO] nephele-examples ...................................... SUCCESS [0.015s]
[INFO] pact .................................................. SUCCESS [0.011s]
[INFO] pact-common ........................................... SUCCESS [0.035s]
[INFO] pact-runtime .......................................... SUCCESS [0.029s]
[INFO] pact-compiler ......................................... SUCCESS [0.053s]
[INFO] pact-clients .......................................... SUCCESS [0.223s]
[INFO] pact-examples ......................................... SUCCESS [0.036s]
[INFO] pact-tests ............................................ SUCCESS [0.039s]
[INFO] stratosphere-dist ..................................... SUCCESS [0.117s]
[INFO] ------------------------------------------------------------------------
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESSFUL
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 5 seconds
[INFO] Finished at: Fri Feb 04 18:40:59 CET 2011
[INFO] Final Memory: 49M/380M
[INFO] ------------------------------------------------------------------------