forked from danatcaret/open-experiments
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.log
15498 lines (15213 loc) · 431 KB
/
build.log
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
[INFO] Scanning for projects...
[WARNING]
Profile with id: 'local-offline-deactivated' has not been activated.
[INFO] Reactor build order:
[INFO] Sakai Nakamura Project OSGi Experiments
[INFO] Sakai Sling Resource Extensione Bundle
[INFO] Sakai Nakamura Utilities
[INFO] Sakai Nakamura Test Utilities
[INFO] Sakai Nakamura Memory Bundle
[INFO] org.sakaiproject.nakamura.doc
[INFO] Sakai proxy service
[INFO] Sakai Nakamura ActiveMQ Bundle
[INFO] Sakai Cluster Tracking
[INFO] Sakai Nakamura Trusted Authentication Bundle
[INFO] Sakai Nakamura Form Auth Bundle
[INFO] Sakai Nakamura Configuration Bundle
[INFO] Sakai Nakamura Server Extension Bundle
[INFO] Sakai Nakamura User Extension Bundle
[INFO] Sakai Nakamura Security Loader Bundle
[INFO] Sakai JPA Provider
[INFO] Sakai Database Bundle
[INFO] Sakai Personal Space Bundle
[INFO] Sakai Search Support Bundle
[INFO] Sakai Locking Bundle
[INFO] Sakai Connections Management Bundle
[INFO] Sakai Sling Version Extension Bundle
[INFO] Jaxb Bundle
[INFO] JAXP API Bundle
[INFO] JSON Lib Bundle
[INFO] EclipseLink JPA Bundle
[INFO] EclipseLink Core Bundle
[INFO] Jetty Configuration
[INFO] Sakai JCR Bundle
[INFO] Sakai Me Service Bundle
[INFO] Sakai Site Service Bundle
[INFO] Sakai Messaging Bundle
[INFO] Sakai Nakamura Files Bundle
[INFO] Sakai Nakamura Presence Bundle
[INFO] Sakai image service
[INFO] Sakai Discussion Management Bundle
[INFO] Sakai Nakamura SMTP Server
[INFO] Sakai OSGi-to-JMS Events Bridge Bundle
[INFO] Sakai Batch Bundle
[INFO] Javax Activation and Mail Bundle
[INFO] Sakai Nakamura Outgoing Email Sender
[INFO] commons-email bundle
[INFO] commons-pool bundle
[INFO] commons-httpclient bundle
[INFO] commons-codec bundle
[INFO] Sakai Java Messaging Service (JMS) Bundle
[INFO] Sakai Java Management Extension (JMX) Bundle
[INFO] Sakai Enterprise Java Bean (EJB) Bundle
[INFO] Sakai Nakamura Activity Bundle
[INFO] Sakai chat services
[INFO] Sakai Nakamura Default Content Loader
[INFO] Sakai Document Proxy
[INFO] Sakai Google Collections
[INFO] Woodstox/StAX
[INFO] Calendar based events
[INFO] Sakai Sling Anti XSS Extension Bundle
[INFO] Sakai Nakamura Authorization Bundle
[INFO] Sakai Nakamura Launchpad Standalone Java Application
[INFO] ------------------------------------------------------------------------
[INFO] Building Sakai Nakamura Project OSGi Experiments
[INFO] task-segment: [clean, install]
[INFO] ------------------------------------------------------------------------
[INFO] [clean:clean {execution: default-clean}]
[INFO] [site:attach-descriptor {execution: default-attach-descriptor}]
[INFO] Preparing source:jar
[WARNING] Removing: jar from forked lifecycle, to prevent recursive invocation.
[INFO] No goals needed for project - skipping
[INFO] [source:jar {execution: attach-sources}]
[INFO] [ianal:verify-legal-files {execution: default}]
[INFO] [install:install {execution: default-install}]
[INFO] Installing /Users/ieb/timefields/open-experiments/pom.xml to /Users/ieb/.m2/repository/org/sakaiproject/nakamura/base/0.5/base-0.5.pom
[INFO] ------------------------------------------------------------------------
[INFO] Building Sakai Sling Resource Extensione Bundle
[INFO] task-segment: [clean, install]
[INFO] ------------------------------------------------------------------------
[INFO] [clean:clean {execution: default-clean}]
[INFO] Deleting directory /Users/ieb/timefields/open-experiments/bundles/resource/target
[INFO] [resources:resources {execution: default-resources}]
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 2 resources
[INFO] [compiler:compile {execution: default-compile}]
[INFO] Compiling 1 source file to /Users/ieb/timefields/open-experiments/bundles/resource/target/classes
[INFO] [scr:scr {execution: generate-scr-scrdescriptor}]
[INFO] [resources:testResources {execution: default-testResources}]
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /Users/ieb/timefields/open-experiments/bundles/resource/src/test/resources
[INFO] [compiler:testCompile {execution: default-testCompile}]
[INFO] No sources to compile
[INFO] [surefire:test {execution: default-test}]
[INFO] No tests to run.
[INFO] [bundle:bundle {execution: default-bundle}]
[INFO] Preparing source:jar
[WARNING] Removing: jar from forked lifecycle, to prevent recursive invocation.
[INFO] No goals needed for project - skipping
[INFO] [source:jar {execution: attach-sources}]
[INFO] Building jar: /Users/ieb/timefields/open-experiments/bundles/resource/target/org.sakaiproject.nakamura.resource-0.5-sources.jar
[INFO] [ianal:verify-legal-files {execution: default}]
[INFO] Checking legal files in: org.sakaiproject.nakamura.resource-0.5.jar
[INFO] Checking legal files in: org.sakaiproject.nakamura.resource-0.5-sources.jar
[WARNING] Artifact does not contain any legal files: org.sakaiproject.nakamura.resource-0.5-sources.jar
[INFO] [install:install {execution: default-install}]
[INFO] Installing /Users/ieb/timefields/open-experiments/bundles/resource/target/org.sakaiproject.nakamura.resource-0.5.jar to /Users/ieb/.m2/repository/org/sakaiproject/nakamura/org.sakaiproject.nakamura.resource/0.5/org.sakaiproject.nakamura.resource-0.5.jar
[INFO] Installing /Users/ieb/timefields/open-experiments/bundles/resource/target/org.sakaiproject.nakamura.resource-0.5-sources.jar to /Users/ieb/.m2/repository/org/sakaiproject/nakamura/org.sakaiproject.nakamura.resource/0.5/org.sakaiproject.nakamura.resource-0.5-sources.jar
[INFO] [bundle:install {execution: default-install}]
[INFO] Parsing file:/Users/ieb/.m2/repository/repository.xml
[INFO] Installing org/sakaiproject/nakamura/org.sakaiproject.nakamura.resource/0.5/org.sakaiproject.nakamura.resource-0.5.jar
[INFO] Writing OBR metadata
[INFO] ------------------------------------------------------------------------
[INFO] Building Sakai Nakamura Utilities
[INFO] task-segment: [clean, install]
[INFO] ------------------------------------------------------------------------
[INFO] [clean:clean {execution: default-clean}]
[INFO] [resources:resources {execution: default-resources}]
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 2 resources
Downloading: http://repo1.maven.org/maven2//org/apache/sling/org.apache.sling.api/2.0.4-incubator/org.apache.sling.api-2.0.4-incubator.pom
829/?2112/?3874/?
Downloading: http://repo1.maven.org/maven2//org/apache/sling/sling/5-incubator/sling-5-incubator.pom
757/?2205/?5652/?8996/?13092/?13892/?17988/?18144/?22240/?22357/?24107/?
Downloading: http://repo1.maven.org/maven2//org/apache/sling/org.apache.sling.commons.json/2.0.4-incubator/org.apache.sling.commons.json-2.0.4-incubator.pom
809/?2625/?3019/?
Downloading: http://repo1.maven.org/maven2//org/apache/sling/org.apache.sling.jcr.base/2.0.7-20100524/org.apache.sling.jcr.base-2.0.7-20100524.pom
[INFO] Unable to find resource 'org.apache.sling:org.apache.sling.jcr.base:pom:2.0.7-20100524' in repository maven repo (http://repo1.maven.org/maven2/)
Downloading: https://source.sakaiproject.org/maven2//org/apache/sling/org.apache.sling.jcr.base/2.0.7-20100524/org.apache.sling.jcr.base-2.0.7-20100524.pom
[INFO] Unable to find resource 'org.apache.sling:org.apache.sling.jcr.base:pom:2.0.7-20100524' in repository sakai-releases (https://source.sakaiproject.org/maven2/)
Downloading: http://repo1.maven.org/maven2/org/apache/sling/org.apache.sling.jcr.base/2.0.7-20100524/org.apache.sling.jcr.base-2.0.7-20100524.pom
[INFO] Unable to find resource 'org.apache.sling:org.apache.sling.jcr.base:pom:2.0.7-20100524' in repository central (http://repo1.maven.org/maven2)
Downloading: http://repo1.maven.org/maven2//org/apache/sling/org.apache.sling.jcr.resource/2.0.7-20100524/org.apache.sling.jcr.resource-2.0.7-20100524.pom
[INFO] Unable to find resource 'org.apache.sling:org.apache.sling.jcr.resource:pom:2.0.7-20100524' in repository maven repo (http://repo1.maven.org/maven2/)
Downloading: https://source.sakaiproject.org/maven2//org/apache/sling/org.apache.sling.jcr.resource/2.0.7-20100524/org.apache.sling.jcr.resource-2.0.7-20100524.pom
[INFO] Unable to find resource 'org.apache.sling:org.apache.sling.jcr.resource:pom:2.0.7-20100524' in repository sakai-releases (https://source.sakaiproject.org/maven2/)
Downloading: http://repo1.maven.org/maven2/org/apache/sling/org.apache.sling.jcr.resource/2.0.7-20100524/org.apache.sling.jcr.resource-2.0.7-20100524.pom
[INFO] Unable to find resource 'org.apache.sling:org.apache.sling.jcr.resource:pom:2.0.7-20100524' in repository central (http://repo1.maven.org/maven2)
Downloading: http://repo1.maven.org/maven2//org/apache/sling/org.apache.sling.api/2.0.4-incubator/org.apache.sling.api-2.0.4-incubator.jar
461/?1036/?1583/?2095/?2606/?3118/?3629/?3892/?4403/?4914/?5461/?6330/?6841/?7351/?8122/?8694/?9261/?9910/?10495/?11200/?11921/?12501/?13013/?13590/?13606/?14262/?14920/?15561/?16216/?16800/?17378/?17960/?18472/?18704/?19235/?19818/?20404/?20984/?21496/?22006/?22584/?23095/?23675/?24186/?24770/?25417/?26005/?26584/?27095/?27391/?27976/?28639/?29284/?29795/?30307/?30818/?31329/?31841/?32353/?32930/?33507/?34088/?34743/?35255/?35840/?36437/?37046/?37557/?38078/?38586/?39096/?39604/?40113/?40623/?41286/?41794/?42392/?42973/?43547/?44061/?44569/?45076/?45585/?47103/?49174/?52060/?
Downloading: http://repo1.maven.org/maven2//org/apache/sling/org.apache.sling.commons.json/2.0.4-incubator/org.apache.sling.commons.json-2.0.4-incubator.jar
468/?1079/?1590/?2102/?2614/?3125/?3637/?3901/?4413/?4924/?5436/?6264/?6868/?7380/?8231/?8743/?9255/?9766/?10278/?10796/?11308/?11819/?12331/?12968/?12984/?13568/?14148/?14659/?15170/?15682/?16193/?16705/?17216/?17448/?17903/?18415/?18932/?19444/?19956/?20533/?21109/?21621/?22133/?22645/?23157/?23800/?24314/?24826/?25337/?25919/?26431/?27010/?27521/?28108/?28580/?29232/?29812/?30324/?30836/?31347/?32000/?32512/?33024/?33536/?34047/?34627/?35083/?35580/?36090/?36601/?37251/?37763/?38273/?38848/?39359/?39870/?40520/?41030/?41541/?42050/?42561/?43072/?43655/?44166/?44676/?45196/?46565/?48696/?
Downloading: http://repo1.maven.org/maven2//org/apache/sling/org.apache.sling.jcr.base/2.0.7-20100524/org.apache.sling.jcr.base-2.0.7-20100524.jar
[INFO] Unable to find resource 'org.apache.sling:org.apache.sling.jcr.base:jar:2.0.7-20100524' in repository maven repo (http://repo1.maven.org/maven2/)
Downloading: https://source.sakaiproject.org/maven2//org/apache/sling/org.apache.sling.jcr.base/2.0.7-20100524/org.apache.sling.jcr.base-2.0.7-20100524.jar
4/36K8/36K12/36K16/36K20/36K24/36K28/36K32/36K36/36K36/36K36K downloaded (org.apache.sling.jcr.base-2.0.7-20100524.jar)
Downloading: http://repo1.maven.org/maven2//org/apache/sling/org.apache.sling.jcr.resource/2.0.7-20100524/org.apache.sling.jcr.resource-2.0.7-20100524.jar
[INFO] Unable to find resource 'org.apache.sling:org.apache.sling.jcr.resource:jar:2.0.7-20100524' in repository maven repo (http://repo1.maven.org/maven2/)
Downloading: https://source.sakaiproject.org/maven2//org/apache/sling/org.apache.sling.jcr.resource/2.0.7-20100524/org.apache.sling.jcr.resource-2.0.7-20100524.jar
4/157K8/157K12/157K16/157K20/157K24/157K28/157K32/157K36/157K40/157K44/157K48/157K52/157K56/157K60/157K64/157K68/157K72/157K76/157K80/157K84/157K88/157K92/157K96/157K100/157K104/157K108/157K112/157K116/157K120/157K124/157K128/157K132/157K136/157K140/157K144/157K148/157K152/157K156/157K157/157K157K downloaded (org.apache.sling.jcr.resource-2.0.7-20100524.jar)
[INFO] [compiler:compile {execution: default-compile}]
[INFO] Compiling 27 source files to /Users/ieb/timefields/open-experiments/libraries/utils/target/classes
[INFO] [scr:scr {execution: generate-scr-scrdescriptor}]
[INFO] [resources:testResources {execution: default-testResources}]
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 2 resources
[INFO] [compiler:testCompile {execution: default-testCompile}]
[INFO] Compiling 18 source files to /Users/ieb/timefields/open-experiments/libraries/utils/target/test-classes
[WARNING] /Users/ieb/timefields/open-experiments/libraries/utils/src/test/java/org/sakaiproject/nakamura/util/PathUtilsTest.java:[28,41] [deprecation] getUserPrefix(java.lang.String,int) in org.sakaiproject.nakamura.util.PathUtils has been deprecated
[WARNING] /Users/ieb/timefields/open-experiments/libraries/utils/src/test/java/org/sakaiproject/nakamura/util/PathUtilsTest.java:[29,24] [deprecation] getUserPrefix(java.lang.String,int) in org.sakaiproject.nakamura.util.PathUtils has been deprecated
[WARNING] /Users/ieb/timefields/open-experiments/libraries/utils/src/test/java/org/sakaiproject/nakamura/util/PathUtilsTest.java:[30,42] [deprecation] getUserPrefix(java.lang.String,int) in org.sakaiproject.nakamura.util.PathUtils has been deprecated
[WARNING] /Users/ieb/timefields/open-experiments/libraries/utils/src/test/java/org/sakaiproject/nakamura/util/PathUtilsTest.java:[31,42] [deprecation] getUserPrefix(java.lang.String,int) in org.sakaiproject.nakamura.util.PathUtils has been deprecated
[WARNING] /Users/ieb/timefields/open-experiments/libraries/utils/src/test/java/org/sakaiproject/nakamura/util/PathUtilsTest.java:[32,42] [deprecation] getUserPrefix(java.lang.String,int) in org.sakaiproject.nakamura.util.PathUtils has been deprecated
[WARNING] /Users/ieb/timefields/open-experiments/libraries/utils/src/test/java/org/sakaiproject/nakamura/util/PathUtilsTest.java:[38,45] [deprecation] getMessagePath() in org.sakaiproject.nakamura.util.PathUtils has been deprecated
[WARNING] /Users/ieb/timefields/open-experiments/libraries/utils/src/test/java/org/sakaiproject/nakamura/util/PathUtilsTest.java:[58,27] [deprecation] getDatePath(java.lang.String,int) in org.sakaiproject.nakamura.util.PathUtils has been deprecated
[INFO] [surefire:test {execution: default-test}]
[INFO] Surefire report directory: /Users/ieb/timefields/open-experiments/libraries/utils/target/surefire-reports
-------------------------------------------------------
T E S T S
-------------------------------------------------------
Running org.sakaiproject.nakamura.util.MapUtilsTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.036 sec
Running org.sakaiproject.nakamura.util.RowUtilsTest
Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.109 sec
Running org.sakaiproject.nakamura.util.PathUtilsTest
Tests run: 14, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.189 sec
Running org.sakaiproject.nakamura.util.parameters.ContainerRequestParameterTest
Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.008 sec
Running org.sakaiproject.nakamura.util.XmlUtilsTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.005 sec
Running org.sakaiproject.nakamura.util.parameters.UtilTest
Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.007 sec
Running org.sakaiproject.nakamura.util.StringUtilsTest
Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.018 sec
Running org.sakaiproject.nakamura.util.ResponseWrapperTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.032 sec
Running org.sakaiproject.nakamura.util.parameters.ParameterMapTest
Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.012 sec
Running org.sakaiproject.nakamura.util.RequestWrapperTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.024 sec
Running org.sakaiproject.nakamura.util.ArrayUtilsTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.004 sec
Running org.sakaiproject.nakamura.util.DateUtilsTest
Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.026 sec
Running org.sakaiproject.nakamura.util.RequestInfoTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.008 sec
Running org.sakaiproject.nakamura.util.MultiValueInputStreamTest
Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.027 sec
Running org.sakaiproject.nakamura.util.ExtendedJSONWriterTest
Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.026 sec
Running org.sakaiproject.nakamura.util.JcrUtilsTest
Tests run: 12, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.044 sec
Running org.sakaiproject.nakamura.util.IOUtilsTest
Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.018 sec
Running org.sakaiproject.nakamura.util.UrlEnumerationTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.007 sec
Results :
Tests run: 69, Failures: 0, Errors: 0, Skipped: 0
[INFO] [bundle:bundle {execution: default-bundle}]
[WARNING] Warning building bundle org.sakaiproject.nakamura:org.sakaiproject.nakamura.utils:bundle:0.5 : Instructions in Export-Package that are never used: org\.sakaiproject\.nakamura\.simple
[WARNING] Warning building bundle org.sakaiproject.nakamura:org.sakaiproject.nakamura.utils:bundle:0.5 : Superfluous export-package instructions: [org.sakaiproject.nakamura.simple]
[INFO] Preparing source:jar
[WARNING] Removing: jar from forked lifecycle, to prevent recursive invocation.
[INFO] No goals needed for project - skipping
[INFO] [source:jar {execution: attach-sources}]
[INFO] Building jar: /Users/ieb/timefields/open-experiments/libraries/utils/target/org.sakaiproject.nakamura.utils-0.5-sources.jar
[INFO] [ianal:verify-legal-files {execution: default}]
[INFO] Checking legal files in: org.sakaiproject.nakamura.utils-0.5.jar
[INFO] Checking legal files in: org.sakaiproject.nakamura.utils-0.5-sources.jar
[WARNING] Artifact does not contain any legal files: org.sakaiproject.nakamura.utils-0.5-sources.jar
[INFO] [install:install {execution: default-install}]
[INFO] Installing /Users/ieb/timefields/open-experiments/libraries/utils/target/org.sakaiproject.nakamura.utils-0.5.jar to /Users/ieb/.m2/repository/org/sakaiproject/nakamura/org.sakaiproject.nakamura.utils/0.5/org.sakaiproject.nakamura.utils-0.5.jar
[INFO] Installing /Users/ieb/timefields/open-experiments/libraries/utils/target/org.sakaiproject.nakamura.utils-0.5-sources.jar to /Users/ieb/.m2/repository/org/sakaiproject/nakamura/org.sakaiproject.nakamura.utils/0.5/org.sakaiproject.nakamura.utils-0.5-sources.jar
[INFO] [bundle:install {execution: default-install}]
[INFO] Parsing file:/Users/ieb/.m2/repository/repository.xml
[INFO] Installing org/sakaiproject/nakamura/org.sakaiproject.nakamura.utils/0.5/org.sakaiproject.nakamura.utils-0.5.jar
[INFO] Writing OBR metadata
[INFO] ------------------------------------------------------------------------
[INFO] Building Sakai Nakamura Test Utilities
[INFO] task-segment: [clean, install]
[INFO] ------------------------------------------------------------------------
[INFO] [clean:clean {execution: default-clean}]
[INFO] Deleting directory /Users/ieb/timefields/open-experiments/libraries/testutils/target
[INFO] [resources:resources {execution: default-resources}]
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 4 resources
Downloading: http://powermock.googlecode.com/svn/repo//org/apache/sling/org.apache.sling.commons.testing/2.0.5-20100524/org.apache.sling.commons.testing-2.0.5-20100524.pom
[INFO] Unable to find resource 'org.apache.sling:org.apache.sling.commons.testing:pom:2.0.5-20100524' in repository powermock-repo (http://powermock.googlecode.com/svn/repo/)
Downloading: http://repo1.maven.org/maven2//org/apache/sling/org.apache.sling.commons.testing/2.0.5-20100524/org.apache.sling.commons.testing-2.0.5-20100524.pom
[INFO] Unable to find resource 'org.apache.sling:org.apache.sling.commons.testing:pom:2.0.5-20100524' in repository maven repo (http://repo1.maven.org/maven2/)
Downloading: https://source.sakaiproject.org/maven2//org/apache/sling/org.apache.sling.commons.testing/2.0.5-20100524/org.apache.sling.commons.testing-2.0.5-20100524.pom
[INFO] Unable to find resource 'org.apache.sling:org.apache.sling.commons.testing:pom:2.0.5-20100524' in repository sakai-releases (https://source.sakaiproject.org/maven2/)
Downloading: http://repo1.maven.org/maven2/org/apache/sling/org.apache.sling.commons.testing/2.0.5-20100524/org.apache.sling.commons.testing-2.0.5-20100524.pom
[INFO] Unable to find resource 'org.apache.sling:org.apache.sling.commons.testing:pom:2.0.5-20100524' in repository central (http://repo1.maven.org/maven2)
Downloading: http://powermock.googlecode.com/svn/repo//org/apache/sling/org.apache.sling.commons.testing/2.0.5-20100524/org.apache.sling.commons.testing-2.0.5-20100524.jar
[INFO] Unable to find resource 'org.apache.sling:org.apache.sling.commons.testing:jar:2.0.5-20100524' in repository powermock-repo (http://powermock.googlecode.com/svn/repo/)
Downloading: http://repo1.maven.org/maven2//org/apache/sling/org.apache.sling.commons.testing/2.0.5-20100524/org.apache.sling.commons.testing-2.0.5-20100524.jar
[INFO] Unable to find resource 'org.apache.sling:org.apache.sling.commons.testing:jar:2.0.5-20100524' in repository maven repo (http://repo1.maven.org/maven2/)
Downloading: https://source.sakaiproject.org/maven2//org/apache/sling/org.apache.sling.commons.testing/2.0.5-20100524/org.apache.sling.commons.testing-2.0.5-20100524.jar
4/63K8/63K12/63K16/63K20/63K24/63K28/63K32/63K36/63K40/63K44/63K48/63K52/63K56/63K60/63K63/63K63K downloaded (org.apache.sling.commons.testing-2.0.5-20100524.jar)
[INFO] [compiler:compile {execution: default-compile}]
[INFO] Compiling 9 source files to /Users/ieb/timefields/open-experiments/libraries/testutils/target/classes
[INFO] [resources:testResources {execution: default-testResources}]
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /Users/ieb/timefields/open-experiments/libraries/testutils/src/test/resources
[INFO] [compiler:testCompile {execution: default-testCompile}]
[INFO] No sources to compile
[INFO] [surefire:test {execution: default-test}]
[INFO] No tests to run.
[INFO] [jar:jar {execution: default-jar}]
[INFO] Building jar: /Users/ieb/timefields/open-experiments/libraries/testutils/target/org.sakaiproject.nakamura.testutils-0.5.jar
[INFO] Preparing source:jar
[WARNING] Removing: jar from forked lifecycle, to prevent recursive invocation.
[INFO] No goals needed for project - skipping
[INFO] [source:jar {execution: attach-sources}]
[INFO] Building jar: /Users/ieb/timefields/open-experiments/libraries/testutils/target/org.sakaiproject.nakamura.testutils-0.5-sources.jar
[INFO] [ianal:verify-legal-files {execution: default}]
[INFO] Checking legal files in: org.sakaiproject.nakamura.testutils-0.5.jar
[INFO] Checking legal files in: org.sakaiproject.nakamura.testutils-0.5-sources.jar
[WARNING] Artifact does not contain any legal files: org.sakaiproject.nakamura.testutils-0.5-sources.jar
[INFO] [install:install {execution: default-install}]
[INFO] Installing /Users/ieb/timefields/open-experiments/libraries/testutils/target/org.sakaiproject.nakamura.testutils-0.5.jar to /Users/ieb/.m2/repository/org/sakaiproject/nakamura/org.sakaiproject.nakamura.testutils/0.5/org.sakaiproject.nakamura.testutils-0.5.jar
[INFO] Installing /Users/ieb/timefields/open-experiments/libraries/testutils/target/org.sakaiproject.nakamura.testutils-0.5-sources.jar to /Users/ieb/.m2/repository/org/sakaiproject/nakamura/org.sakaiproject.nakamura.testutils/0.5/org.sakaiproject.nakamura.testutils-0.5-sources.jar
[INFO] ------------------------------------------------------------------------
[INFO] Building Sakai Nakamura Memory Bundle
[INFO] task-segment: [clean, install]
[INFO] ------------------------------------------------------------------------
[INFO] [clean:clean {execution: default-clean}]
[INFO] Deleting directory /Users/ieb/timefields/open-experiments/bundles/memory/target
[INFO] [dependency:copy-dependencies {execution: embed-dependencies}]
[INFO] Copying backport-util-concurrent-3.1.jar to /Users/ieb/timefields/open-experiments/bundles/memory/target/classes/backport-util-concurrent-3.1.jar
[INFO] Copying ehcache-1.5.0.jar to /Users/ieb/timefields/open-experiments/bundles/memory/target/classes/ehcache-1.5.0.jar
[INFO] Copying jsr107cache-1.0.jar to /Users/ieb/timefields/open-experiments/bundles/memory/target/classes/jsr107cache-1.0.jar
[INFO] [resources:resources {execution: default-resources}]
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 3 resources
[INFO] [compiler:compile {execution: default-compile}]
[INFO] Compiling 8 source files to /Users/ieb/timefields/open-experiments/bundles/memory/target/classes
[INFO] [scr:scr {execution: generate-scr-scrdescriptor}]
[INFO] Writing abstract service descriptor /Users/ieb/timefields/open-experiments/bundles/memory/target/scr-plugin-generated/OSGI-INF/scr-plugin/scrinfo.xml with 1 entries.
[INFO] Generating 1 Service Component Descriptors to /Users/ieb/timefields/open-experiments/bundles/memory/target/scr-plugin-generated/OSGI-INF/serviceComponents.xml
[INFO] [resources:testResources {execution: default-testResources}]
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 1 resource
[INFO] [compiler:testCompile {execution: default-testCompile}]
[INFO] Compiling 1 source file to /Users/ieb/timefields/open-experiments/bundles/memory/target/test-classes
[INFO] [surefire:test {execution: default-test}]
[INFO] Surefire report directory: /Users/ieb/timefields/open-experiments/bundles/memory/target/surefire-reports
-------------------------------------------------------
T E S T S
-------------------------------------------------------
Running org.sakaiproject.nakamura.osgi.memory.TestCache
Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.473 sec
Results :
Tests run: 4, Failures: 0, Errors: 0, Skipped: 0
[INFO] [bundle:bundle {execution: default-bundle}]
[INFO] Preparing source:jar
[WARNING] Removing: jar from forked lifecycle, to prevent recursive invocation.
[INFO] No goals needed for project - skipping
[INFO] [source:jar {execution: attach-sources}]
[INFO] Building jar: /Users/ieb/timefields/open-experiments/bundles/memory/target/org.sakaiproject.nakamura.memory-0.5-sources.jar
[INFO] [ianal:verify-legal-files {execution: default}]
[INFO] Checking legal files in: org.sakaiproject.nakamura.memory-0.5.jar
[INFO] Checking legal files in: org.sakaiproject.nakamura.memory-0.5-sources.jar
[WARNING] Artifact does not contain any legal files: org.sakaiproject.nakamura.memory-0.5-sources.jar
[INFO] [install:install {execution: default-install}]
[INFO] Installing /Users/ieb/timefields/open-experiments/bundles/memory/target/org.sakaiproject.nakamura.memory-0.5.jar to /Users/ieb/.m2/repository/org/sakaiproject/nakamura/org.sakaiproject.nakamura.memory/0.5/org.sakaiproject.nakamura.memory-0.5.jar
[INFO] Installing /Users/ieb/timefields/open-experiments/bundles/memory/target/org.sakaiproject.nakamura.memory-0.5-sources.jar to /Users/ieb/.m2/repository/org/sakaiproject/nakamura/org.sakaiproject.nakamura.memory/0.5/org.sakaiproject.nakamura.memory-0.5-sources.jar
[INFO] [bundle:install {execution: default-install}]
[INFO] Parsing file:/Users/ieb/.m2/repository/repository.xml
[INFO] Installing org/sakaiproject/nakamura/org.sakaiproject.nakamura.memory/0.5/org.sakaiproject.nakamura.memory-0.5.jar
[INFO] Writing OBR metadata
[INFO] ------------------------------------------------------------------------
[INFO] Building org.sakaiproject.nakamura.doc
[INFO] task-segment: [clean, install]
[INFO] ------------------------------------------------------------------------
[INFO] [clean:clean {execution: default-clean}]
[INFO] Deleting directory /Users/ieb/timefields/open-experiments/bundles/doc/target
[INFO] [resources:resources {execution: default-resources}]
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 3 resources
Downloading: http://repo1.maven.org/maven2//org/apache/sling/org.apache.sling.api/2.0.6/org.apache.sling.api-2.0.6.pom
829/?2116/?3938/?
Downloading: http://repo1.maven.org/maven2//org/apache/sling/sling/6/sling-6.pom
736/?2088/?5380/?8824/?12783/?15864/?19960/?20408/?22495/?23415/?
Downloading: http://repo1.maven.org/maven2//org/apache/sling/org.apache.sling.api/2.0.6/org.apache.sling.api-2.0.6.jar
464/?1042/?1589/?2100/?2611/?3122/?3633/?3896/?4407/?4918/?5739/?6332/?6843/?7426/?8122/?8693/?9260/?9840/?10491/?11196/?11778/?12501/?13082/?13593/?13609/?14266/?14920/?15503/?16145/?16802/?17385/?17964/?18546/?18777/?19298/?19846/?20478/?21060/?21571/?22152/?22664/?23175/?23686/?24198/?24779/?25360/?25871/?26382/?26965/?27612/?28201/?28779/?28907/?29418/?30002/?30596/?31180/?31902/?32414/?32925/?33436/?33947/?34458/?34970/?35547/?36058/?36637/?37350/?37806/?38316/?38991/?39499/?40107/?40616/?41207/?41716/?42227/?42736/?43246/?43757/?44413/?44920/?45519/?46101/?46672/?47187/?47696/?48204/?48712/?50224/?52098/?55185/?55475/?
[INFO] [compiler:compile {execution: default-compile}]
[INFO] Compiling 37 source files to /Users/ieb/timefields/open-experiments/bundles/doc/target/classes
[WARNING] /Users/ieb/timefields/open-experiments/bundles/doc/src/main/java/org/sakaiproject/nakamura/doc/DocumentationWriter.java:[44,41] [deprecation] XPATH in javax.jcr.query.Query has been deprecated
[INFO] [scr:scr {execution: generate-scr-scrdescriptor}]
[INFO] Generating 8 MetaType Descriptors to /Users/ieb/timefields/open-experiments/bundles/doc/target/scr-plugin-generated/OSGI-INF/metatype/metatype.xml
[INFO] Writing abstract service descriptor /Users/ieb/timefields/open-experiments/bundles/doc/target/scr-plugin-generated/OSGI-INF/scr-plugin/scrinfo.xml with 5 entries.
[INFO] Generating 5 Service Component Descriptors to /Users/ieb/timefields/open-experiments/bundles/doc/target/scr-plugin-generated/OSGI-INF/serviceComponents.xml
[INFO] [resources:testResources {execution: default-testResources}]
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /Users/ieb/timefields/open-experiments/bundles/doc/src/test/resources
[INFO] [compiler:testCompile {execution: default-testCompile}]
[INFO] Compiling 4 source files to /Users/ieb/timefields/open-experiments/bundles/doc/target/test-classes
[WARNING] /Users/ieb/timefields/open-experiments/bundles/doc/src/test/java/org/sakaiproject/nakamura/doc/DocumentationWriterTest.java:[109,42] [deprecation] XPATH in javax.jcr.query.Query has been deprecated
[INFO] [surefire:test {execution: default-test}]
[INFO] Surefire report directory: /Users/ieb/timefields/open-experiments/bundles/doc/target/surefire-reports
-------------------------------------------------------
T E S T S
-------------------------------------------------------
Running org.sakaiproject.nakamura.doc.DocumentationWriterTest
Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.325 sec
Running org.sakaiproject.nakamura.doc.servlet.DocumentationServletTest
Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.189 sec
Running org.sakaiproject.nakamura.doc.GeneralDocumentationServletTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.01 sec
Results :
Tests run: 6, Failures: 0, Errors: 0, Skipped: 0
[INFO] [bundle:bundle {execution: default-bundle}]
[INFO] Preparing source:jar
[WARNING] Removing: jar from forked lifecycle, to prevent recursive invocation.
[INFO] No goals needed for project - skipping
[INFO] [source:jar {execution: attach-sources}]
[INFO] Building jar: /Users/ieb/timefields/open-experiments/bundles/doc/target/org.sakaiproject.nakamura.doc-0.5-sources.jar
[INFO] [ianal:verify-legal-files {execution: default}]
[INFO] Checking legal files in: org.sakaiproject.nakamura.doc-0.5.jar
[INFO] Checking legal files in: org.sakaiproject.nakamura.doc-0.5-sources.jar
[WARNING] Artifact does not contain any legal files: org.sakaiproject.nakamura.doc-0.5-sources.jar
[INFO] [install:install {execution: default-install}]
[INFO] Installing /Users/ieb/timefields/open-experiments/bundles/doc/target/org.sakaiproject.nakamura.doc-0.5.jar to /Users/ieb/.m2/repository/org/sakaiproject/nakamura/org.sakaiproject.nakamura.doc/0.5/org.sakaiproject.nakamura.doc-0.5.jar
[INFO] Installing /Users/ieb/timefields/open-experiments/bundles/doc/target/org.sakaiproject.nakamura.doc-0.5-sources.jar to /Users/ieb/.m2/repository/org/sakaiproject/nakamura/org.sakaiproject.nakamura.doc/0.5/org.sakaiproject.nakamura.doc-0.5-sources.jar
[INFO] [bundle:install {execution: default-install}]
[INFO] Parsing file:/Users/ieb/.m2/repository/repository.xml
[INFO] Installing org/sakaiproject/nakamura/org.sakaiproject.nakamura.doc/0.5/org.sakaiproject.nakamura.doc-0.5.jar
[INFO] Writing OBR metadata
[INFO] ------------------------------------------------------------------------
[INFO] Building Sakai proxy service
[INFO] task-segment: [clean, install]
[INFO] ------------------------------------------------------------------------
[INFO] [clean:clean {execution: default-clean}]
[INFO] Deleting directory /Users/ieb/timefields/open-experiments/bundles/proxy/target
Downloading: http://repo1.maven.org/maven2//org/apache/sling/org.apache.sling.jcr.api/2.0.7-20100524/org.apache.sling.jcr.api-2.0.7-20100524.pom
[INFO] Unable to find resource 'org.apache.sling:org.apache.sling.jcr.api:pom:2.0.7-20100524' in repository maven repo (http://repo1.maven.org/maven2/)
Downloading: https://source.sakaiproject.org/maven2//org/apache/sling/org.apache.sling.jcr.api/2.0.7-20100524/org.apache.sling.jcr.api-2.0.7-20100524.pom
[INFO] Unable to find resource 'org.apache.sling:org.apache.sling.jcr.api:pom:2.0.7-20100524' in repository sakai-releases (https://source.sakaiproject.org/maven2/)
Downloading: http://repo1.maven.org/maven2/org/apache/sling/org.apache.sling.jcr.api/2.0.7-20100524/org.apache.sling.jcr.api-2.0.7-20100524.pom
[INFO] Unable to find resource 'org.apache.sling:org.apache.sling.jcr.api:pom:2.0.7-20100524' in repository central (http://repo1.maven.org/maven2)
Downloading: http://repo1.maven.org/maven2//org/apache/sling/org.apache.sling.jcr.api/2.0.7-20100524/org.apache.sling.jcr.api-2.0.7-20100524.jar
[INFO] Unable to find resource 'org.apache.sling:org.apache.sling.jcr.api:jar:2.0.7-20100524' in repository maven repo (http://repo1.maven.org/maven2/)
Downloading: https://source.sakaiproject.org/maven2//org/apache/sling/org.apache.sling.jcr.api/2.0.7-20100524/org.apache.sling.jcr.api-2.0.7-20100524.jar
4/12K8/12K12/12K12/12K12K downloaded (org.apache.sling.jcr.api-2.0.7-20100524.jar)
[INFO] [dependency:copy-dependencies {execution: embed-dependencies}]
[INFO] Copying ant-1.6.jar to /Users/ieb/timefields/open-experiments/bundles/proxy/target/classes/ant-1.6.jar
[INFO] Copying antlr-2.7.7.jar to /Users/ieb/timefields/open-experiments/bundles/proxy/target/classes/antlr-2.7.7.jar
[INFO] Copying commons-logging-1.1.jar to /Users/ieb/timefields/open-experiments/bundles/proxy/target/classes/commons-logging-1.1.jar
[INFO] Copying ical4j-0.9.20.jar to /Users/ieb/timefields/open-experiments/bundles/proxy/target/classes/ical4j-0.9.20.jar
[INFO] Copying log4j-1.2.12.jar to /Users/ieb/timefields/open-experiments/bundles/proxy/target/classes/log4j-1.2.12.jar
[INFO] Copying logkit-2.0.jar to /Users/ieb/timefields/open-experiments/bundles/proxy/target/classes/logkit-2.0.jar
[INFO] Copying velocity-1.6.2.jar to /Users/ieb/timefields/open-experiments/bundles/proxy/target/classes/velocity-1.6.2.jar
[INFO] Copying oro-2.0.8.jar to /Users/ieb/timefields/open-experiments/bundles/proxy/target/classes/oro-2.0.8.jar
[INFO] Copying werken-xpath-0.9.4.jar to /Users/ieb/timefields/open-experiments/bundles/proxy/target/classes/werken-xpath-0.9.4.jar
[INFO] Copying xml-resolver-1.2.jar to /Users/ieb/timefields/open-experiments/bundles/proxy/target/classes/xml-resolver-1.2.jar
[INFO] [resources:resources {execution: default-resources}]
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 13 resources
[INFO] [compiler:compile {execution: default-compile}]
[INFO] Compiling 17 source files to /Users/ieb/timefields/open-experiments/bundles/proxy/target/classes
[INFO] [scr:scr {execution: generate-scr-scrdescriptor}]
[INFO] Generating 4 MetaType Descriptors to /Users/ieb/timefields/open-experiments/bundles/proxy/target/scr-plugin-generated/OSGI-INF/metatype/metatype.xml
[INFO] Writing abstract service descriptor /Users/ieb/timefields/open-experiments/bundles/proxy/target/scr-plugin-generated/OSGI-INF/scr-plugin/scrinfo.xml with 6 entries.
[INFO] Generating 6 Service Component Descriptors to /Users/ieb/timefields/open-experiments/bundles/proxy/target/scr-plugin-generated/OSGI-INF/serviceComponents.xml
[INFO] [resources:testResources {execution: default-testResources}]
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 3 resources
[INFO] [compiler:testCompile {execution: default-testCompile}]
[INFO] Compiling 7 source files to /Users/ieb/timefields/open-experiments/bundles/proxy/target/test-classes
[INFO] [surefire:test {execution: default-test}]
[INFO] Surefire report directory: /Users/ieb/timefields/open-experiments/bundles/proxy/target/surefire-reports
-------------------------------------------------------
T E S T S
-------------------------------------------------------
Running org.sakaiproject.nakamura.proxy.DefaultProxyPostProcessorImplTest
Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.255 sec
Running org.sakaiproject.nakamura.proxy.ProxyResponseImplTest
Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.128 sec
Running org.sakaiproject.nakamura.proxy.ProxyClientServiceImplTest
Tests run: 10, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.978 sec
Running org.sakaiproject.nakamura.proxy.RSSProxyPreProcessorTest
Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.006 sec
Running org.sakaiproject.nakamura.proxy.TrustedLoginTokenProxyPreProcessorTest
Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.442 sec
Running org.sakaiproject.nakamura.proxy.ResourceProxyServletTest
Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.305 sec
Running org.sakaiproject.nakamura.proxy.RSSProxyPostProcessorTest
Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.156 sec
Results :
Tests run: 36, Failures: 0, Errors: 0, Skipped: 0
[INFO] [bundle:bundle {execution: default-bundle}]
[WARNING] Embed-Dependency: clause "oro~" did not match any dependencies
[INFO] Preparing source:jar
[WARNING] Removing: jar from forked lifecycle, to prevent recursive invocation.
[INFO] No goals needed for project - skipping
[INFO] [source:jar {execution: attach-sources}]
[INFO] Building jar: /Users/ieb/timefields/open-experiments/bundles/proxy/target/org.sakaiproject.nakamura.proxy-0.5-sources.jar
[INFO] [ianal:verify-legal-files {execution: default}]
[INFO] Checking legal files in: org.sakaiproject.nakamura.proxy-0.5.jar
[INFO] Checking legal files in: org.sakaiproject.nakamura.proxy-0.5-sources.jar
[WARNING] Artifact does not contain any legal files: org.sakaiproject.nakamura.proxy-0.5-sources.jar
[INFO] [install:install {execution: default-install}]
[INFO] Installing /Users/ieb/timefields/open-experiments/bundles/proxy/target/org.sakaiproject.nakamura.proxy-0.5.jar to /Users/ieb/.m2/repository/org/sakaiproject/nakamura/org.sakaiproject.nakamura.proxy/0.5/org.sakaiproject.nakamura.proxy-0.5.jar
[INFO] Installing /Users/ieb/timefields/open-experiments/bundles/proxy/target/org.sakaiproject.nakamura.proxy-0.5-sources.jar to /Users/ieb/.m2/repository/org/sakaiproject/nakamura/org.sakaiproject.nakamura.proxy/0.5/org.sakaiproject.nakamura.proxy-0.5-sources.jar
[INFO] [bundle:install {execution: default-install}]
[INFO] Parsing file:/Users/ieb/.m2/repository/repository.xml
[INFO] Installing org/sakaiproject/nakamura/org.sakaiproject.nakamura.proxy/0.5/org.sakaiproject.nakamura.proxy-0.5.jar
[INFO] Writing OBR metadata
[INFO] ------------------------------------------------------------------------
[INFO] Building Sakai Nakamura ActiveMQ Bundle
[INFO] task-segment: [clean, install]
[INFO] ------------------------------------------------------------------------
[INFO] [clean:clean {execution: default-clean}]
[INFO] Deleting directory /Users/ieb/timefields/open-experiments/bundles/activemq/target
[INFO] [resources:resources {execution: default-resources}]
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 2 resources
[INFO] [compiler:compile {execution: default-compile}]
[INFO] Compiling 3 source files to /Users/ieb/timefields/open-experiments/bundles/activemq/target/classes
[INFO] [scr:scr {execution: generate-scr-scrdescriptor}]
[INFO] Writing abstract service descriptor /Users/ieb/timefields/open-experiments/bundles/activemq/target/scr-plugin-generated/OSGI-INF/scr-plugin/scrinfo.xml with 1 entries.
[INFO] Generating 1 Service Component Descriptors to /Users/ieb/timefields/open-experiments/bundles/activemq/target/scr-plugin-generated/OSGI-INF/serviceComponents.xml
[INFO] [resources:testResources {execution: default-testResources}]
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /Users/ieb/timefields/open-experiments/bundles/activemq/src/test/resources
[INFO] [compiler:testCompile {execution: default-testCompile}]
[INFO] Compiling 1 source file to /Users/ieb/timefields/open-experiments/bundles/activemq/target/test-classes
[INFO] [surefire:test {execution: default-test}]
[INFO] Surefire report directory: /Users/ieb/timefields/open-experiments/bundles/activemq/target/surefire-reports
-------------------------------------------------------
T E S T S
-------------------------------------------------------
Running org.sakaiproject.nakamura.activemq.ActivateTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 3.328 sec
Results :
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0
[INFO] [bundle:bundle {execution: default-bundle}]
[WARNING] Warning building bundle org.sakaiproject.nakamura:org.sakaiproject.nakamura.activemq:bundle:5.3.0-0.5 : Did not find matching referal for org.apache.camel*
[INFO] Preparing source:jar
[WARNING] Removing: jar from forked lifecycle, to prevent recursive invocation.
[INFO] No goals needed for project - skipping
[INFO] [source:jar {execution: attach-sources}]
[INFO] Building jar: /Users/ieb/timefields/open-experiments/bundles/activemq/target/org.sakaiproject.nakamura.activemq-5.3.0-0.5-sources.jar
[INFO] [ianal:verify-legal-files {execution: default}]
[INFO] Checking legal files in: org.sakaiproject.nakamura.activemq-5.3.0-0.5.jar
[INFO] Checking legal files in: org.sakaiproject.nakamura.activemq-5.3.0-0.5-sources.jar
[WARNING] Artifact does not contain any legal files: org.sakaiproject.nakamura.activemq-5.3.0-0.5-sources.jar
[INFO] [install:install {execution: default-install}]
[INFO] Installing /Users/ieb/timefields/open-experiments/bundles/activemq/target/org.sakaiproject.nakamura.activemq-5.3.0-0.5.jar to /Users/ieb/.m2/repository/org/sakaiproject/nakamura/org.sakaiproject.nakamura.activemq/5.3.0-0.5/org.sakaiproject.nakamura.activemq-5.3.0-0.5.jar
[INFO] Installing /Users/ieb/timefields/open-experiments/bundles/activemq/target/org.sakaiproject.nakamura.activemq-5.3.0-0.5-sources.jar to /Users/ieb/.m2/repository/org/sakaiproject/nakamura/org.sakaiproject.nakamura.activemq/5.3.0-0.5/org.sakaiproject.nakamura.activemq-5.3.0-0.5-sources.jar
[INFO] [bundle:install {execution: default-install}]
[INFO] Parsing file:/Users/ieb/.m2/repository/repository.xml
[INFO] Installing org/sakaiproject/nakamura/org.sakaiproject.nakamura.activemq/5.3.0-0.5/org.sakaiproject.nakamura.activemq-5.3.0-0.5.jar
[INFO] Writing OBR metadata
[INFO] ------------------------------------------------------------------------
[INFO] Building Sakai Cluster Tracking
[INFO] task-segment: [clean, install]
[INFO] ------------------------------------------------------------------------
[INFO] [clean:clean {execution: default-clean}]
[INFO] Deleting directory /Users/ieb/timefields/open-experiments/bundles/cluster/target
[INFO] [resources:resources {execution: default-resources}]
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 4 resources
Downloading: http://repo1.maven.org/maven2//org/apache/sling/org.apache.sling.commons.scheduler/2.0.4-incubator/org.apache.sling.commons.scheduler-2.0.4-incubator.pom
793/?2685/?6013/?
Downloading: http://repo1.maven.org/maven2//org/apache/sling/org.apache.sling.commons.threads/2.0.2-incubator/org.apache.sling.commons.threads-2.0.2-incubator.pom
808/?2725/?3641/?
Downloading: http://repo1.maven.org/maven2//org/apache/sling/sling/3-incubator/sling-3-incubator.pom
770/?2293/?4843/?8501/?12270/?16366/?17261/?21357/?22213/?24898/?25769/?
[WARNING] POM for 'opensymphony:quartz:pom:1.6.0:compile' is invalid.
Its dependencies (if any) will NOT be available to the current build.
Downloading: http://repo1.maven.org/maven2//org/apache/sling/org.apache.sling.commons.scheduler/2.0.4-incubator/org.apache.sling.commons.scheduler-2.0.4-incubator.jar
463/?975/?1552/?2098/?2610/?3122/?3634/?3898/?4409/?4921/?5432/?6263/?6871/?7383/?7894/?8551/?9143/?9658/?10169/?10681/?11193/?11704/?12216/?12727/?12743/?13255/?13766/?14278/?14789/?15301/?15813/?16325/?16837/?17069/?17576/?18088/?18600/?19112/?19624/?20136/?20648/?21160/?21672/?22184/?22696/?23208/?23720/?24232/?24744/?25040/?25552/?26064/?26576/?27088/?27600/?28112/?28624/?29136/?29648/?30160/?30672/?31184/?31696/?32208/?32720/?33232/?33739/?34251/?34763/?35275/?35787/?36299/?36811/?37323/?37835/?38347/?38859/?39371/?39883/?40395/?40907/?41419/?41931/?42443/?42955/?43467/?43979/?44491/?45003/?45515/?46027/?46539/?47051/?47563/?48075/?48291/?48803/?49315/?49827/?50334/?50846/?51358/?51870/?52382/?52894/?53406/?53918/?54430/?54942/?55454/?55966/?56478/?56990/?57502/?58014/?58526/?59038/?59550/?60062/?60574/?61086/?61598/?62110/?62622/?63134/?63646/?64158/?64670/?65182/?65694/?66206/?66713/?67225/?67737/?68249/?68761/?69273/?69785/?70297/?70809/?71321/?71833/?72345/?72857/?73369/?73881/?74393/?74905/?75417/?75929/?76441/?76953/?77465/?77977/?78489/?79001/?79513/?80025/?80537/?81049/?81561/?82073/?82585/?83092/?83604/?84116/?84628/?85140/?85652/?86164/?86676/?87188/?87700/?88212/?88724/?89236/?89748/?90260/?90772/?91284/?91796/?92308/?92820/?93332/?93844/?94356/?94772/?95284/?95796/?96308/?96820/?97332/?97844/?98356/?98868/?99375/?99887/?100399/?100911/?101423/?101935/?102447/?102959/?103471/?103983/?104495/?105007/?105519/?106031/?106543/?107055/?107567/?108079/?108591/?109103/?109615/?110127/?110639/?111151/?111663/?112175/?112687/?113199/?113711/?114223/?114735/?115247/?115343/?115850/?116362/?116874/?117386/?117898/?118410/?118922/?119434/?119946/?120458/?120970/?121482/?121994/?122506/?123018/?123530/?124042/?124554/?125066/?125578/?126090/?126602/?127114/?127626/?128138/?128650/?129162/?129674/?130186/?130698/?131210/?131722/?132229/?132741/?133253/?133765/?134277/?134789/?135301/?135813/?136325/?136837/?137349/?137861/?138373/?138885/?139397/?139909/?140421/?140933/?141445/?141957/?142469/?142981/?143493/?144005/?144517/?145029/?145541/?146053/?146565/?147077/?147589/?148093/?148600/?149112/?149624/?150136/?150648/?151160/?151672/?152184/?152696/?153208/?153720/?154232/?154744/?155256/?155768/?156280/?156288/?156800/?157312/?157824/?158336/?158848/?159360/?159872/?160384/?160896/?161408/?161920/?162432/?162944/?163456/?163968/?164480/?164987/?165499/?166011/?166523/?167035/?167547/?168059/?168571/?168595/?169107/?169619/?170131/?170643/?171155/?171667/?172179/?172667/?173179/?173691/?174203/?174715/?175227/?175739/?176251/?176763/?177275/?177787/?178299/?178811/?179323/?179835/?180347/?180859/?181366/?181878/?182390/?182902/?183414/?183926/?184438/?184950/?185462/?185974/?186486/?186998/?187510/?188022/?188534/?189046/?189558/?190070/?190582/?191094/?191606/?192118/?192630/?193142/?193654/?194166/?194678/?195190/?195702/?196214/?196726/?197238/?197745/?198257/?198769/?199281/?199793/?200305/?200817/?201329/?201841/?202353/?202865/?203377/?203889/?204401/?204913/?205425/?205937/?206449/?206961/?207473/?207985/?208497/?209009/?209521/?210033/?210545/?211057/?211569/?212081/?212593/?213105/?213617/?214124/?214636/?215148/?215660/?216172/?216684/?217196/?217708/?218220/?218732/?219180/?219692/?220204/?220716/?221228/?221740/?222252/?222764/?223276/?223788/?224300/?224812/?225324/?225836/?226348/?226860/?227372/?227884/?228396/?228908/?229420/?229932/?230444/?230951/?231463/?231975/?232487/?232999/?233511/?234023/?234087/?234599/?235111/?235623/?236135/?236647/?237159/?237671/?238183/?238695/?239207/?239719/?240231/?240743/?241255/?241767/?242279/?242791/?243303/?243815/?244327/?244839/?245351/?245863/?246375/?246887/?247394/?247906/?248418/?248930/?249442/?249954/?250466/?250626/?251138/?251650/?252162/?252674/?253186/?253698/?254210/?254722/?255234/?255746/?256258/?256770/?257282/?257794/?258306/?258818/?259330/?259842/?260354/?260866/?261378/?261890/?262402/?262914/?263421/?263933/?264445/?264957/?265469/?265981/?266493/?267005/?267517/?268029/?268541/?269053/?269565/?270077/?270589/?271101/?271613/?272125/?272637/?273149/?273661/?274173/?274685/?275037/?275549/?276061/?276573/?277085/?277597/?278109/?278621/?279133/?279645/?280152/?280664/?281176/?281688/?282200/?282712/?283224/?283736/?284248/?284760/?285272/?285784/?286296/?286808/?287320/?287832/?288344/?288856/?289368/?289880/?290392/?290904/?291416/?291928/?292440/?292952/?293464/?293976/?294488/?295000/?295512/?296024/?296531/?297043/?297555/?298067/?298579/?299091/?299603/?300115/?300627/?301139/?301651/?302163/?302675/?303187/?303699/?304211/?304723/?305235/?305747/?306259/?306771/?307283/?307795/?308307/?308819/?309331/?309843/?310355/?310867/?311379/?311891/?312403/?312910/?313422/?313934/?314446/?314958/?315470/?315982/?316494/?317006/?317518/?318030/?318542/?319054/?319566/?320078/?320590/?321102/?321614/?322126/?322638/?323150/?323662/?324174/?324686/?325198/?325710/?326222/?326734/?327246/?327758/?328270/?328782/?329289/?329801/?330313/?330825/?331337/?331849/?332361/?332873/?333385/?333897/?334409/?334921/?335433/?335945/?336457/?336969/?337481/?337993/?338505/?339017/?339529/?340041/?340553/?341065/?341577/?342089/?342601/?343113/?343601/?344113/?344625/?345137/?345644/?346156/?346668/?347180/?347692/?348204/?348716/?348740/?349252/?349764/?350276/?350788/?351300/?351812/?352324/?352836/?353348/?353860/?354372/?354884/?355396/?355908/?356420/?356932/?357444/?357956/?358468/?358980/?359492/?360004/?360516/?361028/?361540/?362047/?362559/?363071/?363583/?364095/?364607/?365119/?365631/?366143/?366655/?367167/?367679/?368191/?368703/?369215/?369727/?370239/?370751/?371263/?371775/?372287/?372799/?373311/?373823/?374335/?374847/?375047/?375559/?376071/?376583/?377095/?377607/?378114/?378626/?379138/?379650/?380162/?380514/?381026/?381498/?382010/?382522/?383034/?383546/?384058/?384570/?385082/?385594/?386106/?386618/?387130/?387642/?388154/?388666/?389178/?389690/?390202/?390714/?391226/?391738/?392250/?392762/?393274/?393786/?394298/?394805/?395317/?395829/?396341/?396853/?397365/?397877/?398389/?398901/?399413/?399925/?400437/?400949/?401461/?401973/?402485/?402997/?403509/?404021/?404533/?405045/?405557/?406069/?406581/?407093/?407605/?408117/?408629/?409141/?409653/?410165/?410677/?411184/?411696/?412208/?412720/?413232/?413744/?414256/?414768/?415280/?415792/?416304/?416816/?417328/?417840/?418352/?418864/?419376/?419888/?420400/?420912/?421424/?421936/?422448/?422904/?423416/?423928/?424440/?424952/?425464/?425976/?426488/?427000/?427507/?428019/?428531/?429043/?429555/?430067/?430579/?431091/?431603/?432115/?432627/?433139/?433651/?434163/?434675/?435187/?435699/?436211/?436723/?437235/?437747/?438259/?438771/?439283/?439795/?440307/?440819/?441331/?441843/?442355/?442867/?442923/?443435/?443942/?444454/?444966/?445478/?445990/?446502/?447014/?447526/?448038/?448550/?449062/?449574/?450086/?450598/?451110/?451622/?452134/?452646/?453158/?453670/?454182/?454694/?455206/?455718/?456230/?456742/?457254/?457766/?458278/?458790/?459302/?459814/?460279/?460791/?461303/?461815/?462327/?462839/?463350/?463862/?464374/?464886/?465398/?465909/?466421/?466933/?467444/?467956/?468468/?468980/?469493/?470005/?470516/?471028/?471540/?472052/?472564/?473076/?473588/?474323/?474835/?475347/?475861/?476373/?476886/?477398/?477973/?478555/?479066/?479577/?480089/?480601/?481112/?481625/?482137/?482649/?483161/?483674/?484187/?484698/?485211/?485723/?486236/?486747/?487259/?487827/?488343/?488931/?489443/?489955/?490467/?491062/?491636/?492147/?492661/?493232/?493807/?494349/?494861/?495429/?495941/?496453/?496965/?497477/?498045/?498556/?499131/?499643/?500155/?500667/?501179/?501690/?502202/?502714/?503297/?503808/?504390/?504902/?505414/?505926/?506501/?507013/?507583/?508095/?508607/?509119/?509630/?510142/?510654/?511112/?511624/?512136/?512647/?513159/?513671/?514183/?514695/?515207/?515719/?516415/?516928/?517201/?517712/?518286/?518801/?519312/?519824/?520336/?520850/?521361/?521873/?522385/?523031/?523542/?524055/?524567/?525079/?525591/?526190/?526702/?527217/?527730/?528185/?528786/?529298/?529810/?530325/?530837/?531437/?531950/?532462/?532974/?533489/?534000/?534511/?535023/?535535/?536047/?536560/?537163/?537677/?538189/?538701/?539286/?539875/?540387/?540900/?541412/?541924/?542436/?542948/?543188/?543700/?544212/?544685/?545257/?545844/?546355/?546995/?547577/?548088/?548600/?549114/?549626/?550138/?550649/?551051/?551735/?552330/?552842/?553353/?553864/?554376/?554888/?555399/?555910/?556094/?556605/?557118/?557629/?558141/?558652/?559163/?559675/?560187/?560698/?561211/?562038/?562564/?563228/?563829/?564342/?564853/?565539/?566051/?566648/?567161/?567672/?568184/?568696/?569207/?569719/?570231/?570745/?571256/?571790/?572301/?572813/?573325/?573836/?574347/?574859/?575370/?575882/?576394/?576906/?577418/?577930/?578442/?578953/?579459/?579971/?580483/?580995/?581507/?582019/?582531/?583043/?583555/?584067/?584579/?585091/?585603/?586115/?586627/?587139/?587651/?588163/?588675/?589187/?589699/?590211/?590723/?591235/?591747/?592259/?592771/?593283/?593795/?594307/?594819/?595331/?595838/?596350/?596862/?597374/?597886/?598398/?598910/?599422/?599934/?600446/?600958/?601374/?601886/?602398/?602910/?603422/?603934/?604446/?604958/?605470/?605982/?606494/?607006/?607518/?608030/?608542/?609054/?609566/?610078/?610174/?610686/?611198/?611710/?612217/?612729/?613241/?613753/?614265/?614777/?615289/?615801/?616313/?616825/?617337/?617849/?618361/?618873/?619385/?619897/?620409/?620921/?621433/?621945/?622457/?622969/?623481/?623993/?624505/?625017/?625529/?626041/?626553/?627065/?627577/?628089/?628596/?629108/?629620/?630132/?630644/?631156/?631668/?632180/?632692/?632820/?633332/?633844/?634356/?634868/?635380/?635892/?636404/?636916/?637428/?637940/?638452/?638964/?639476/?639988/?640500/?641012/?641524/?642036/?642548/?642932/?643444/?643956/?644468/?644975/?645487/?645999/?646511/?647023/?647535/?648047/?648559/?649071/?649583/?650095/?650607/?651119/?651631/?652143/?652655/?653167/?653679/?654191/?654703/?655215/?655727/?656239/?656751/?657263/?657775/?658287/?658799/?659311/?659823/?660335/?660847/?661354/?661866/?662378/?662890/?663402/?663914/?664426/?664938/?665450/?665962/?666474/?666986/?667498/?668010/?668522/?669034/?669546/?670058/?670570/?671082/?671594/?672106/?672618/?673130/?673642/?674154/?674666/?675178/?675690/?676202/?676714/?677226/?677733/?678245/?678757/?679269/?679781/?680293/?680805/?681317/?681829/?682341/?682853/?683365/?683877/?684389/?684901/?685413/?685925/?686437/?686949/?687461/?687973/?688485/?688997/?689509/?690021/?690533/?691045/?691557/?692069/?692581/?693093/?693605/?694112/?694336/?694848/?695360/?695872/?696384/?696896/?697408/?697920/?698432/?698944/?699456/?699968/?700480/?700992/?701504/?702016/?702528/?703040/?703552/?704064/?704576/?705088/?705600/?706112/?706624/?707136/?707648/?708160/?708672/?709184/?709696/?710208/?710715/?711227/?711739/?712251/?712763/?713275/?713787/?714299/?714811/?715323/?715835/?716347/?716859/?717371/?717883/?718395/?718907/?719419/?719931/?720443/?720955/?721467/?721979/?722491/?723003/?723515/?724027/?724539/?725051/?725563/?725795/?726307/?726819/?727326/?727838/?728350/?728862/?728918/?729430/?729942/?730454/?730966/?731478/?731990/?732502/?733014/?733526/?734038/?734550/?735062/?735574/?736086/?736598/?737110/?737622/?738134/?738646/?739158/?739670/?740182/?740694/?741206/?741718/?742230/?742742/?743254/?743761/?744273/?744785/?745297/?745809/?746321/?746833/?747345/?747857/?748369/?748881/?749393/?749905/?750417/?750929/?751441/?751953/?752465/?752977/?753489/?754001/?754513/?755025/?755537/?756049/?756561/?757073/?757585/?758097/?758609/?759121/?759633/?760140/?760652/?761164/?761676/?762188/?762700/?763212/?763724/?764068/?764580/?765092/?765604/?766116/?766628/?767140/?767652/?768164/?768676/?769188/?769700/?770212/?770724/?771236/?771748/?772260/?772772/?773284/?773796/?774308/?774820/?775332/?775844/?776351/?776863/?777375/?777887/?778399/?778911/?779423/?779935/?780447/?780959/?781471/?781983/?782495/?783007/?783519/?784031/?784543/?785055/?785567/?786079/?786591/?787103/?787615/?788127/?788639/?789151/?789663/?790175/?790687/?791199/?791711/?792223/?792730/?793242/?793754/?794266/?794778/?795290/?795522/?796034/?796546/?797058/?797570/?798082/?798594/?799106/?799618/?800130/?800642/?801154/?801666/?802178/?802690/?803202/?803714/?804226/?804738/?805250/?805762/?806274/?806722/?807234/?807746/?808258/?808770/?809277/?809789/?810301/?810813/?811325/?811837/?812349/?812861/?813373/?813885/?814397/?814909/?815421/?815933/?816445/?816957/?817469/?817981/?818493/?819005/?819517/?820029/?820541/?821053/?821565/?822077/?822589/?823101/?823613/?824125/?824637/?825149/?825656/?826168/?826680/?827192/?827704/?828216/?828328/?828840/?829352/?829864/?830376/?830888/?831400/?831912/?832424/?832936/?833448/?833960/?834472/?834984/?835496/?836008/?836520/?837032/?837544/?838056/?838568/?839080/?839592/?840104/?840616/?841128/?841640/?842147/?842659/?843171/?843683/?844195/?844707/?845219/?845731/?846243/?846755/?847267/?847779/?848291/?848803/?849315/?849827/?850339/?850851/?851363/?851875/?852387/?852899/?853411/?853923/?854435/?854947/?855459/?855859/?856371/?856883/?857395/?857907/?858414/?858926/?859438/?859950/?860462/?860974/?861142/?861654/?862166/?862678/?863190/?863702/?864214/?864726/?865238/?865750/?866262/?866774/?867286/?867798/?868310/?868822/?869334/?869846/?870358/?870870/?871382/?871894/?872406/?872918/?873430/?873942/?874454/?874961/?875473/?875985/?876497/?877009/?877521/?878033/?878545/?879057/?879569/?880081/?880593/?881105/?881617/?882129/?882641/?883153/?883665/?884177/?884689/?885201/?885713/?886225/?886737/?887249/?887761/?888273/?888785/?889297/?889809/?890321/?890833/?891340/?891852/?892364/?892596/?892708/?893220/?893732/?894244/?894756/?895268/?895780/?896292/?896804/?897316/?897828/?898340/?898852/?899364/?899876/?900388/?900900/?901412/?901924/?902436/?902948/?903460/?903972/?904484/?904996/?905508/?906020/?906532/?907044/?907551/?908063/?908575/?909087/?909599/?910111/?910623/?911135/?911647/?912159/?912671/?913183/?913695/?914207/?914719/?915231/?915743/?916255/?916767/?917279/?917791/?918303/?918815/?919327/?919839/?920351/?920863/?921375/?921887/?922399/?922911/?923423/?923930/?924042/?924554/?925066/?925466/?925978/?926490/?927002/?927514/?928026/?928538/?929050/?929562/?930074/?930586/?931098/?931610/?932122/?932634/?933146/?933658/?934170/?934682/?935194/?935706/?936218/?936730/?937242/?937754/?938266/?938778/?939290/?939802/?940309/?940821/?941333/?941845/?942357/?942869/?943381/?943893/?944405/?944917/?945429/?945941/?946453/?946965/?947477/?947989/?948501/?949013/?949525/?950037/?950549/?951061/?951573/?952085/?952597/?953109/?953621/?954133/?954645/?955157/?955669/?956181/?956611/?957118/?957624/?958131/?958638/?959144/?959478/?959989/?960497/?961008/?961517/?962028/?962561/?963069/?963577/?964085/?964596/?965171/?966712/?968525/?970682/?971763/?
Downloading: http://repo1.maven.org/maven2//org/apache/sling/org.apache.sling.commons.threads/2.0.2-incubator/org.apache.sling.commons.threads-2.0.2-incubator.jar
463/?1074/?1585/?2097/?2608/?3120/?3631/?3894/?4405/?4917/?5844/?6355/?6867/?7188/?7740/?8680/?9274/?9792/?10385/?10897/?11409/?12145/?12661/?13255/?13607/?14119/?14630/?15141/?15743/?16254/?16766/?17277/?17865/?18465/?19167/?21478/?
[INFO] [compiler:compile {execution: default-compile}]
[INFO] Compiling 10 source files to /Users/ieb/timefields/open-experiments/bundles/cluster/target/classes
[INFO] [scr:scr {execution: generate-scr-scrdescriptor}]
[INFO] Generating 2 MetaType Descriptors to /Users/ieb/timefields/open-experiments/bundles/cluster/target/scr-plugin-generated/OSGI-INF/metatype/metatype.xml
[INFO] Writing abstract service descriptor /Users/ieb/timefields/open-experiments/bundles/cluster/target/scr-plugin-generated/OSGI-INF/scr-plugin/scrinfo.xml with 4 entries.
[INFO] Generating 4 Service Component Descriptors to /Users/ieb/timefields/open-experiments/bundles/cluster/target/scr-plugin-generated/OSGI-INF/serviceComponents.xml
[INFO] [resources:testResources {execution: default-testResources}]
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /Users/ieb/timefields/open-experiments/bundles/cluster/src/test/resources
[INFO] [compiler:testCompile {execution: default-testCompile}]
[INFO] Compiling 5 source files to /Users/ieb/timefields/open-experiments/bundles/cluster/target/test-classes
[INFO] [surefire:test {execution: default-test}]
[INFO] Surefire report directory: /Users/ieb/timefields/open-experiments/bundles/cluster/target/surefire-reports
-------------------------------------------------------
T E S T S
-------------------------------------------------------
Running org.sakaiproject.nakamura.cluster.ClusterTrackingServiceImplTest
Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 7.394 sec
Running org.sakaiproject.nakamura.cluster.ClusterTrackingFilterTest
Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 2.058 sec
Running org.sakaiproject.nakamura.cluster.IDTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.105 sec
Running org.sakaiproject.nakamura.cluster.ClusterUserServletTest
Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 3.071 sec
Running org.sakaiproject.nakamura.cluster.ClusterUserMessageListenerTest
Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 2.051 sec
Results :
Tests run: 16, Failures: 0, Errors: 0, Skipped: 0
[INFO] [bundle:bundle {execution: default-bundle}]
[INFO] Preparing source:jar
[WARNING] Removing: jar from forked lifecycle, to prevent recursive invocation.
[INFO] No goals needed for project - skipping
[INFO] [source:jar {execution: attach-sources}]
[INFO] Building jar: /Users/ieb/timefields/open-experiments/bundles/cluster/target/org.sakaiproject.nakamura.cluster-0.5-sources.jar
[INFO] [ianal:verify-legal-files {execution: default}]
[INFO] Checking legal files in: org.sakaiproject.nakamura.cluster-0.5.jar
[INFO] Checking legal files in: org.sakaiproject.nakamura.cluster-0.5-sources.jar
[WARNING] Artifact does not contain any legal files: org.sakaiproject.nakamura.cluster-0.5-sources.jar
[INFO] [install:install {execution: default-install}]
[INFO] Installing /Users/ieb/timefields/open-experiments/bundles/cluster/target/org.sakaiproject.nakamura.cluster-0.5.jar to /Users/ieb/.m2/repository/org/sakaiproject/nakamura/org.sakaiproject.nakamura.cluster/0.5/org.sakaiproject.nakamura.cluster-0.5.jar
[INFO] Installing /Users/ieb/timefields/open-experiments/bundles/cluster/target/org.sakaiproject.nakamura.cluster-0.5-sources.jar to /Users/ieb/.m2/repository/org/sakaiproject/nakamura/org.sakaiproject.nakamura.cluster/0.5/org.sakaiproject.nakamura.cluster-0.5-sources.jar
[INFO] [bundle:install {execution: default-install}]
[INFO] Parsing file:/Users/ieb/.m2/repository/repository.xml
[INFO] Installing org/sakaiproject/nakamura/org.sakaiproject.nakamura.cluster/0.5/org.sakaiproject.nakamura.cluster-0.5.jar
[INFO] Writing OBR metadata
[INFO] ------------------------------------------------------------------------
[INFO] Building Sakai Nakamura Trusted Authentication Bundle
[INFO] task-segment: [clean, install]
[INFO] ------------------------------------------------------------------------
[INFO] [clean:clean {execution: default-clean}]
[INFO] Deleting directory /Users/ieb/timefields/open-experiments/bundles/trustedauth/target
[INFO] [resources:resources {execution: default-resources}]
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 2 resources
Downloading: http://repository.ops4j.org/maven2/org/apache/sling/org.apache.sling.api/2.0.8/org.apache.sling.api-2.0.8.pom
[INFO] Unable to find resource 'org.apache.sling:org.apache.sling.api:pom:2.0.8' in repository OPS4J (http://repository.ops4j.org/maven2)
Downloading: http://repo1.maven.org/maven2//org/apache/sling/org.apache.sling.api/2.0.8/org.apache.sling.api-2.0.8.pom
829/?2116/?3938/?
Downloading: http://repository.ops4j.org/maven2/org/apache/sling/sling/7/sling-7.pom
[INFO] Unable to find resource 'org.apache.sling:sling:pom:7' in repository OPS4J (http://repository.ops4j.org/maven2)
Downloading: http://repo1.maven.org/maven2//org/apache/sling/sling/7/sling-7.pom
768/?2130/?5538/?8869/?12745/?15889/?19201/?19848/?
Downloading: http://repository.ops4j.org/maven2/org/apache/sling/org.apache.sling.engine/2.0.7-20100524/org.apache.sling.engine-2.0.7-20100524.pom
[INFO] Unable to find resource 'org.apache.sling:org.apache.sling.engine:pom:2.0.7-20100524' in repository OPS4J (http://repository.ops4j.org/maven2)
Downloading: http://repo1.maven.org/maven2//org/apache/sling/org.apache.sling.engine/2.0.7-20100524/org.apache.sling.engine-2.0.7-20100524.pom
[INFO] Unable to find resource 'org.apache.sling:org.apache.sling.engine:pom:2.0.7-20100524' in repository maven repo (http://repo1.maven.org/maven2/)
Downloading: https://source.sakaiproject.org/maven2//org/apache/sling/org.apache.sling.engine/2.0.7-20100524/org.apache.sling.engine-2.0.7-20100524.pom
[INFO] Unable to find resource 'org.apache.sling:org.apache.sling.engine:pom:2.0.7-20100524' in repository sakai-releases (https://source.sakaiproject.org/maven2/)
Downloading: http://repo1.maven.org/maven2/org/apache/sling/org.apache.sling.engine/2.0.7-20100524/org.apache.sling.engine-2.0.7-20100524.pom
[INFO] Unable to find resource 'org.apache.sling:org.apache.sling.engine:pom:2.0.7-20100524' in repository central (http://repo1.maven.org/maven2)
Downloading: http://repository.ops4j.org/maven2/org/apache/sling/org.apache.sling.commons.auth/0.9.0-20100524/org.apache.sling.commons.auth-0.9.0-20100524.pom
[INFO] Unable to find resource 'org.apache.sling:org.apache.sling.commons.auth:pom:0.9.0-20100524' in repository OPS4J (http://repository.ops4j.org/maven2)
Downloading: http://repo1.maven.org/maven2//org/apache/sling/org.apache.sling.commons.auth/0.9.0-20100524/org.apache.sling.commons.auth-0.9.0-20100524.pom
[INFO] Unable to find resource 'org.apache.sling:org.apache.sling.commons.auth:pom:0.9.0-20100524' in repository maven repo (http://repo1.maven.org/maven2/)
Downloading: https://source.sakaiproject.org/maven2//org/apache/sling/org.apache.sling.commons.auth/0.9.0-20100524/org.apache.sling.commons.auth-0.9.0-20100524.pom
[INFO] Unable to find resource 'org.apache.sling:org.apache.sling.commons.auth:pom:0.9.0-20100524' in repository sakai-releases (https://source.sakaiproject.org/maven2/)
Downloading: http://repo1.maven.org/maven2/org/apache/sling/org.apache.sling.commons.auth/0.9.0-20100524/org.apache.sling.commons.auth-0.9.0-20100524.pom
[INFO] Unable to find resource 'org.apache.sling:org.apache.sling.commons.auth:pom:0.9.0-20100524' in repository central (http://repo1.maven.org/maven2)
Downloading: http://repository.ops4j.org/maven2/org/apache/sling/org.apache.sling.jcr.jackrabbit.server/2.0.7-20100524/org.apache.sling.jcr.jackrabbit.server-2.0.7-20100524.pom
[INFO] Unable to find resource 'org.apache.sling:org.apache.sling.jcr.jackrabbit.server:pom:2.0.7-20100524' in repository OPS4J (http://repository.ops4j.org/maven2)
Downloading: http://repo1.maven.org/maven2//org/apache/sling/org.apache.sling.jcr.jackrabbit.server/2.0.7-20100524/org.apache.sling.jcr.jackrabbit.server-2.0.7-20100524.pom
[INFO] Unable to find resource 'org.apache.sling:org.apache.sling.jcr.jackrabbit.server:pom:2.0.7-20100524' in repository maven repo (http://repo1.maven.org/maven2/)
Downloading: https://source.sakaiproject.org/maven2//org/apache/sling/org.apache.sling.jcr.jackrabbit.server/2.0.7-20100524/org.apache.sling.jcr.jackrabbit.server-2.0.7-20100524.pom
[INFO] Unable to find resource 'org.apache.sling:org.apache.sling.jcr.jackrabbit.server:pom:2.0.7-20100524' in repository sakai-releases (https://source.sakaiproject.org/maven2/)
Downloading: http://repo1.maven.org/maven2/org/apache/sling/org.apache.sling.jcr.jackrabbit.server/2.0.7-20100524/org.apache.sling.jcr.jackrabbit.server-2.0.7-20100524.pom
[INFO] Unable to find resource 'org.apache.sling:org.apache.sling.jcr.jackrabbit.server:pom:2.0.7-20100524' in repository central (http://repo1.maven.org/maven2)
Downloading: http://repository.ops4j.org/maven2/org/apache/sling/org.apache.sling.api/2.0.8/org.apache.sling.api-2.0.8.jar
[INFO] Unable to find resource 'org.apache.sling:org.apache.sling.api:jar:2.0.8' in repository OPS4J (http://repository.ops4j.org/maven2)
Downloading: http://repo1.maven.org/maven2//org/apache/sling/org.apache.sling.api/2.0.8/org.apache.sling.api-2.0.8.jar
465/?1043/?1590/?2101/?2612/?3124/?3634/?3898/?4408/?4920/?5740/?6334/?6844/?7616/?8127/?8698/?9266/?9845/?10497/?11202/?11851/?12504/?13086/?13597/?13613/?14268/?14922/?15506/?16148/?16805/?17389/?18039/?18549/?18781/?19312/?19894/?20479/?21061/?21573/?22152/?22664/?23176/?23687/?24199/?24780/?25291/?25872/?26384/?26966/?27616/?28205/?28784/?29295/?29806/?30351/?30945/?31555/?32250/?32762/?33274/?33785/?34296/?34808/?35320/?35897/?36476/?37047/?37643/?38152/?38662/?39336/?39846/?40452/?41045/?41552/?42061/?42572/?43081/?43593/?44249/?44758/?45265/?45863/?46445/?47022/?47531/?48040/?48548/?49079/?50888/?52887/?55696/?
Downloading: http://repository.ops4j.org/maven2/org/apache/sling/org.apache.sling.engine/2.0.7-20100524/org.apache.sling.engine-2.0.7-20100524.jar
[INFO] Unable to find resource 'org.apache.sling:org.apache.sling.engine:jar:2.0.7-20100524' in repository OPS4J (http://repository.ops4j.org/maven2)
Downloading: http://repo1.maven.org/maven2//org/apache/sling/org.apache.sling.engine/2.0.7-20100524/org.apache.sling.engine-2.0.7-20100524.jar
[INFO] Unable to find resource 'org.apache.sling:org.apache.sling.engine:jar:2.0.7-20100524' in repository maven repo (http://repo1.maven.org/maven2/)
Downloading: https://source.sakaiproject.org/maven2//org/apache/sling/org.apache.sling.engine/2.0.7-20100524/org.apache.sling.engine-2.0.7-20100524.jar
4/165K8/165K12/165K16/165K20/165K24/165K28/165K32/165K36/165K40/165K44/165K48/165K52/165K56/165K60/165K64/165K68/165K72/165K76/165K80/165K84/165K88/165K92/165K96/165K100/165K104/165K108/165K112/165K116/165K120/165K124/165K128/165K132/165K136/165K140/165K144/165K148/165K152/165K156/165K160/165K164/165K165/165K165K downloaded (org.apache.sling.engine-2.0.7-20100524.jar)
Downloading: http://repository.ops4j.org/maven2/org/apache/sling/org.apache.sling.commons.auth/0.9.0-20100524/org.apache.sling.commons.auth-0.9.0-20100524.jar
[INFO] Unable to find resource 'org.apache.sling:org.apache.sling.commons.auth:jar:0.9.0-20100524' in repository OPS4J (http://repository.ops4j.org/maven2)
Downloading: http://repo1.maven.org/maven2//org/apache/sling/org.apache.sling.commons.auth/0.9.0-20100524/org.apache.sling.commons.auth-0.9.0-20100524.jar
[INFO] Unable to find resource 'org.apache.sling:org.apache.sling.commons.auth:jar:0.9.0-20100524' in repository maven repo (http://repo1.maven.org/maven2/)
Downloading: https://source.sakaiproject.org/maven2//org/apache/sling/org.apache.sling.commons.auth/0.9.0-20100524/org.apache.sling.commons.auth-0.9.0-20100524.jar
4/69K8/69K12/69K16/69K20/69K24/69K28/69K32/69K36/69K40/69K44/69K48/69K52/69K56/69K60/69K64/69K68/69K69/69K69K downloaded (org.apache.sling.commons.auth-0.9.0-20100524.jar)
Downloading: http://repository.ops4j.org/maven2/org/apache/sling/org.apache.sling.jcr.jackrabbit.server/2.0.7-20100524/org.apache.sling.jcr.jackrabbit.server-2.0.7-20100524.jar
[INFO] Unable to find resource 'org.apache.sling:org.apache.sling.jcr.jackrabbit.server:jar:2.0.7-20100524' in repository OPS4J (http://repository.ops4j.org/maven2)
Downloading: http://repo1.maven.org/maven2//org/apache/sling/org.apache.sling.jcr.jackrabbit.server/2.0.7-20100524/org.apache.sling.jcr.jackrabbit.server-2.0.7-20100524.jar
[INFO] Unable to find resource 'org.apache.sling:org.apache.sling.jcr.jackrabbit.server:jar:2.0.7-20100524' in repository maven repo (http://repo1.maven.org/maven2/)
Downloading: https://source.sakaiproject.org/maven2//org/apache/sling/org.apache.sling.jcr.jackrabbit.server/2.0.7-20100524/org.apache.sling.jcr.jackrabbit.server-2.0.7-20100524.jar
4/2880K8/2880K12/2880K16/2880K20/2880K24/2880K28/2880K32/2880K36/2880K40/2880K44/2880K48/2880K52/2880K56/2880K60/2880K64/2880K68/2880K72/2880K76/2880K80/2880K84/2880K88/2880K92/2880K96/2880K100/2880K104/2880K108/2880K112/2880K116/2880K120/2880K124/2880K128/2880K132/2880K136/2880K140/2880K144/2880K148/2880K152/2880K156/2880K160/2880K164/2880K168/2880K172/2880K176/2880K180/2880K184/2880K188/2880K192/2880K196/2880K200/2880K204/2880K208/2880K212/2880K216/2880K220/2880K224/2880K228/2880K232/2880K236/2880K240/2880K244/2880K248/2880K252/2880K256/2880K260/2880K264/2880K268/2880K272/2880K276/2880K280/2880K284/2880K288/2880K292/2880K296/2880K300/2880K304/2880K308/2880K312/2880K316/2880K320/2880K324/2880K328/2880K332/2880K336/2880K340/2880K344/2880K348/2880K352/2880K356/2880K360/2880K364/2880K368/2880K372/2880K376/2880K380/2880K384/2880K388/2880K392/2880K396/2880K400/2880K404/2880K408/2880K412/2880K416/2880K420/2880K424/2880K428/2880K432/2880K436/2880K440/2880K444/2880K448/2880K452/2880K456/2880K460/2880K464/2880K468/2880K472/2880K476/2880K480/2880K484/2880K488/2880K492/2880K496/2880K500/2880K504/2880K508/2880K512/2880K516/2880K520/2880K524/2880K528/2880K532/2880K536/2880K540/2880K544/2880K548/2880K552/2880K556/2880K560/2880K564/2880K568/2880K572/2880K576/2880K580/2880K584/2880K588/2880K592/2880K596/2880K600/2880K604/2880K608/2880K612/2880K616/2880K620/2880K624/2880K628/2880K632/2880K636/2880K640/2880K644/2880K648/2880K652/2880K656/2880K660/2880K664/2880K668/2880K672/2880K676/2880K680/2880K684/2880K688/2880K692/2880K696/2880K700/2880K704/2880K708/2880K712/2880K716/2880K720/2880K724/2880K728/2880K732/2880K736/2880K740/2880K744/2880K748/2880K752/2880K756/2880K760/2880K764/2880K768/2880K772/2880K776/2880K780/2880K784/2880K788/2880K792/2880K796/2880K800/2880K804/2880K808/2880K812/2880K816/2880K820/2880K824/2880K828/2880K832/2880K836/2880K840/2880K844/2880K848/2880K852/2880K856/2880K860/2880K864/2880K868/2880K872/2880K876/2880K880/2880K884/2880K888/2880K892/2880K896/2880K900/2880K904/2880K908/2880K912/2880K916/2880K920/2880K924/2880K928/2880K932/2880K936/2880K940/2880K944/2880K948/2880K952/2880K956/2880K960/2880K964/2880K968/2880K972/2880K976/2880K980/2880K984/2880K988/2880K992/2880K996/2880K1000/2880K1004/2880K1008/2880K1012/2880K1016/2880K1020/2880K1024/2880K1028/2880K1032/2880K1036/2880K1040/2880K1044/2880K1048/2880K1052/2880K1056/2880K1060/2880K1064/2880K1068/2880K1072/2880K1076/2880K1080/2880K1084/2880K1088/2880K1092/2880K1096/2880K1100/2880K1104/2880K1108/2880K1112/2880K1116/2880K1120/2880K1124/2880K1128/2880K1132/2880K1136/2880K1140/2880K1144/2880K1148/2880K1152/2880K1156/2880K1160/2880K1164/2880K1168/2880K1172/2880K1176/2880K1180/2880K1184/2880K1188/2880K1192/2880K1196/2880K1200/2880K1204/2880K1208/2880K1212/2880K1216/2880K1220/2880K1224/2880K1228/2880K1232/2880K1236/2880K1240/2880K1244/2880K1248/2880K1252/2880K1256/2880K1260/2880K1264/2880K1268/2880K1272/2880K1276/2880K1280/2880K1284/2880K1288/2880K1292/2880K1296/2880K1300/2880K1304/2880K1308/2880K1312/2880K1316/2880K1320/2880K1324/2880K1328/2880K1332/2880K1336/2880K1340/2880K1344/2880K1348/2880K1352/2880K1356/2880K1360/2880K1364/2880K1368/2880K1372/2880K1376/2880K1380/2880K1384/2880K1388/2880K1392/2880K1396/2880K1400/2880K1404/2880K1408/2880K1412/2880K1416/2880K1420/2880K1424/2880K1428/2880K1432/2880K1436/2880K1440/2880K1444/2880K1448/2880K1452/2880K1456/2880K1460/2880K1464/2880K1468/2880K1472/2880K1476/2880K1480/2880K1484/2880K1488/2880K1492/2880K1496/2880K1500/2880K1504/2880K1508/2880K1512/2880K1516/2880K1520/2880K1524/2880K1528/2880K1532/2880K1536/2880K1540/2880K1544/2880K1548/2880K1552/2880K1556/2880K1560/2880K1564/2880K1568/2880K1572/2880K1576/2880K1580/2880K1584/2880K1588/2880K1592/2880K1596/2880K1600/2880K1604/2880K1608/2880K1612/2880K1616/2880K1620/2880K1624/2880K1628/2880K1632/2880K1636/2880K1640/2880K1644/2880K1648/2880K1652/2880K1656/2880K1660/2880K1664/2880K1668/2880K1672/2880K1676/2880K1680/2880K1684/2880K1688/2880K1692/2880K1696/2880K1700/2880K1704/2880K1708/2880K1712/2880K1716/2880K1720/2880K1724/2880K1728/2880K1732/2880K1736/2880K1740/2880K1744/2880K1748/2880K1752/2880K1756/2880K1760/2880K1764/2880K1768/2880K1772/2880K1776/2880K1780/2880K1784/2880K1788/2880K1792/2880K1796/2880K1800/2880K1804/2880K1808/2880K1812/2880K1816/2880K1820/2880K1824/2880K1828/2880K1832/2880K1836/2880K1840/2880K1844/2880K1848/2880K1852/2880K1856/2880K1860/2880K1864/2880K1868/2880K1872/2880K1876/2880K1880/2880K1884/2880K1888/2880K1892/2880K1896/2880K1900/2880K1904/2880K1908/2880K1912/2880K1916/2880K1920/2880K1924/2880K1928/2880K1932/2880K1936/2880K1940/2880K1944/2880K1948/2880K1952/2880K1956/2880K1960/2880K1964/2880K1968/2880K1972/2880K1976/2880K1980/2880K1984/2880K1988/2880K1992/2880K1996/2880K2000/2880K2004/2880K2008/2880K2012/2880K2016/2880K2020/2880K2024/2880K2028/2880K2032/2880K2036/2880K2040/2880K2044/2880K2048/2880K2052/2880K2056/2880K2060/2880K2064/2880K2068/2880K2072/2880K2076/2880K2080/2880K2084/2880K2088/2880K2092/2880K2096/2880K2100/2880K2104/2880K2108/2880K2112/2880K2116/2880K2120/2880K2124/2880K2128/2880K2132/2880K2136/2880K2140/2880K2144/2880K2148/2880K2152/2880K2156/2880K2160/2880K2164/2880K2168/2880K2172/2880K2176/2880K2180/2880K2184/2880K2188/2880K2192/2880K2196/2880K2200/2880K2204/2880K2208/2880K2212/2880K2216/2880K2220/2880K2224/2880K2228/2880K2232/2880K2236/2880K2240/2880K2244/2880K2248/2880K2252/2880K2256/2880K2260/2880K2264/2880K2268/2880K2272/2880K2276/2880K2280/2880K2284/2880K2288/2880K2292/2880K2296/2880K2300/2880K2304/2880K2308/2880K2312/2880K2316/2880K2320/2880K2324/2880K2328/2880K2332/2880K2336/2880K2340/2880K2344/2880K2348/2880K2352/2880K2356/2880K2360/2880K2364/2880K2368/2880K2372/2880K2376/2880K2380/2880K2384/2880K2388/2880K2392/2880K2396/2880K2400/2880K2404/2880K2408/2880K2412/2880K2416/2880K2420/2880K2424/2880K2428/2880K2432/2880K2436/2880K2440/2880K2444/2880K2448/2880K2452/2880K2456/2880K2460/2880K2464/2880K2468/2880K2472/2880K2476/2880K2480/2880K2484/2880K2488/2880K2492/2880K2496/2880K2500/2880K2504/2880K2508/2880K2512/2880K2516/2880K2520/2880K2524/2880K2528/2880K2532/2880K2536/2880K2540/2880K2544/2880K2548/2880K2552/2880K2556/2880K2560/2880K2564/2880K2568/2880K2572/2880K2576/2880K2580/2880K2584/2880K2588/2880K2592/2880K2596/2880K2600/2880K2604/2880K2608/2880K2612/2880K2616/2880K2620/2880K2624/2880K2628/2880K2632/2880K2636/2880K2640/2880K2644/2880K2648/2880K2652/2880K2656/2880K2660/2880K2664/2880K2668/2880K2672/2880K2676/2880K2680/2880K2684/2880K2688/2880K2692/2880K2696/2880K2700/2880K2704/2880K2708/2880K2712/2880K2716/2880K2720/2880K2724/2880K2728/2880K2732/2880K2736/2880K2740/2880K2744/2880K2748/2880K2752/2880K2756/2880K2760/2880K2764/2880K2768/2880K2772/2880K2776/2880K2780/2880K2784/2880K2788/2880K2792/2880K2796/2880K2800/2880K2804/2880K2808/2880K2812/2880K2816/2880K2820/2880K2824/2880K2828/2880K2832/2880K2836/2880K2840/2880K2844/2880K2848/2880K2852/2880K2856/2880K2860/2880K2864/2880K2868/2880K2872/2880K2876/2880K2880/2880K2880/2880K2880K downloaded (org.apache.sling.jcr.jackrabbit.server-2.0.7-20100524.jar)
[INFO] [compiler:compile {execution: default-compile}]
[INFO] Compiling 12 source files to /Users/ieb/timefields/open-experiments/bundles/trustedauth/target/classes
[INFO] [scr:scr {execution: generate-scr-scrdescriptor}]
[INFO] Generating 2 MetaType Descriptors to /Users/ieb/timefields/open-experiments/bundles/trustedauth/target/scr-plugin-generated/OSGI-INF/metatype/metatype.xml
[INFO] Writing abstract service descriptor /Users/ieb/timefields/open-experiments/bundles/trustedauth/target/scr-plugin-generated/OSGI-INF/scr-plugin/scrinfo.xml with 4 entries.
[INFO] Generating 4 Service Component Descriptors to /Users/ieb/timefields/open-experiments/bundles/trustedauth/target/scr-plugin-generated/OSGI-INF/serviceComponents.xml
[INFO] [resources:testResources {execution: default-testResources}]
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /Users/ieb/timefields/open-experiments/bundles/trustedauth/src/test/resources
[INFO] [compiler:testCompile {execution: default-testCompile}]
[INFO] Compiling 6 source files to /Users/ieb/timefields/open-experiments/bundles/trustedauth/target/test-classes
[INFO] [surefire:test {execution: default-test}]
[INFO] Surefire report directory: /Users/ieb/timefields/open-experiments/bundles/trustedauth/target/surefire-reports
-------------------------------------------------------
T E S T S
-------------------------------------------------------
Running org.sakaiproject.nakamura.auth.trusted.TrustedTokenServiceTest
Tests run: 16, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 2.095 sec
Running org.sakaiproject.nakamura.auth.trusted.TrustedLoginModulePluginTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.079 sec
Running org.sakaiproject.nakamura.auth.trusted.TrustedAuthenticationHandlerTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.014 sec
Running org.sakaiproject.nakamura.auth.trusted.TrustedPrincipalTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.004 sec
Running org.sakaiproject.nakamura.auth.trusted.TrustedAuthenticationServletTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.03 sec
Results :
Tests run: 20, Failures: 0, Errors: 0, Skipped: 0
[INFO] [bundle:bundle {execution: default-bundle}]
[INFO] Preparing source:jar
[WARNING] Removing: jar from forked lifecycle, to prevent recursive invocation.
[INFO] No goals needed for project - skipping
[INFO] [source:jar {execution: attach-sources}]
[INFO] Building jar: /Users/ieb/timefields/open-experiments/bundles/trustedauth/target/org.sakaiproject.nakamura.auth.trusted-0.5-sources.jar
[INFO] [ianal:verify-legal-files {execution: default}]
[INFO] Checking legal files in: org.sakaiproject.nakamura.auth.trusted-0.5.jar
[INFO] Checking legal files in: org.sakaiproject.nakamura.auth.trusted-0.5-sources.jar
[WARNING] Artifact does not contain any legal files: org.sakaiproject.nakamura.auth.trusted-0.5-sources.jar
[INFO] [install:install {execution: default-install}]
[INFO] Installing /Users/ieb/timefields/open-experiments/bundles/trustedauth/target/org.sakaiproject.nakamura.auth.trusted-0.5.jar to /Users/ieb/.m2/repository/org/sakaiproject/nakamura/org.sakaiproject.nakamura.auth.trusted/0.5/org.sakaiproject.nakamura.auth.trusted-0.5.jar
[INFO] Installing /Users/ieb/timefields/open-experiments/bundles/trustedauth/target/org.sakaiproject.nakamura.auth.trusted-0.5-sources.jar to /Users/ieb/.m2/repository/org/sakaiproject/nakamura/org.sakaiproject.nakamura.auth.trusted/0.5/org.sakaiproject.nakamura.auth.trusted-0.5-sources.jar
[INFO] [bundle:install {execution: default-install}]
[INFO] Parsing file:/Users/ieb/.m2/repository/repository.xml
[INFO] Installing org/sakaiproject/nakamura/org.sakaiproject.nakamura.auth.trusted/0.5/org.sakaiproject.nakamura.auth.trusted-0.5.jar
[INFO] Writing OBR metadata
[INFO] ------------------------------------------------------------------------
[INFO] Building Sakai Nakamura Form Auth Bundle
[INFO] task-segment: [clean, install]
[INFO] ------------------------------------------------------------------------
[INFO] [clean:clean {execution: default-clean}]
[INFO] Deleting directory /Users/ieb/timefields/open-experiments/bundles/formauth/target
[INFO] [resources:resources {execution: default-resources}]
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 3 resources
[INFO] [compiler:compile {execution: default-compile}]
[INFO] Compiling 3 source files to /Users/ieb/timefields/open-experiments/bundles/formauth/target/classes
[INFO] [scr:scr {execution: generate-scr-scrdescriptor}]
[INFO] Generating 4 MetaType Descriptors to /Users/ieb/timefields/open-experiments/bundles/formauth/target/scr-plugin-generated/OSGI-INF/metatype/metatype.xml
[INFO] Writing abstract service descriptor /Users/ieb/timefields/open-experiments/bundles/formauth/target/scr-plugin-generated/OSGI-INF/scr-plugin/scrinfo.xml with 2 entries.
[INFO] Generating 2 Service Component Descriptors to /Users/ieb/timefields/open-experiments/bundles/formauth/target/scr-plugin-generated/OSGI-INF/serviceComponents.xml
[INFO] [resources:testResources {execution: default-testResources}]
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /Users/ieb/timefields/open-experiments/bundles/formauth/src/test/resources
[INFO] [compiler:testCompile {execution: default-testCompile}]
[INFO] Compiling 2 source files to /Users/ieb/timefields/open-experiments/bundles/formauth/target/test-classes
[INFO] [surefire:test {execution: default-test}]
[INFO] Surefire report directory: /Users/ieb/timefields/open-experiments/bundles/formauth/target/surefire-reports
-------------------------------------------------------
T E S T S
-------------------------------------------------------
Running org.sakaiproject.nakamura.formauth.FormLoginServletTest
Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.532 sec
Running org.sakaiproject.nakamura.formauth.FormAuthenticationHandlerTest
Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.065 sec
Results :
Tests run: 6, Failures: 0, Errors: 0, Skipped: 0
[INFO] [bundle:bundle {execution: default-bundle}]
[WARNING] Warning building bundle org.sakaiproject.nakamura:org.sakaiproject.nakamura.formauth:bundle:0.5 : Instructions in Export-Package that are never used: org\.sakaiproject\.nakamura\.api\.formauth
[WARNING] Warning building bundle org.sakaiproject.nakamura:org.sakaiproject.nakamura.formauth:bundle:0.5 : Superfluous export-package instructions: [org.sakaiproject.nakamura.api.formauth]
[INFO] Preparing source:jar
[WARNING] Removing: jar from forked lifecycle, to prevent recursive invocation.
[INFO] No goals needed for project - skipping
[INFO] [source:jar {execution: attach-sources}]
[INFO] Building jar: /Users/ieb/timefields/open-experiments/bundles/formauth/target/org.sakaiproject.nakamura.formauth-0.5-sources.jar
[INFO] [ianal:verify-legal-files {execution: default}]
[INFO] Checking legal files in: org.sakaiproject.nakamura.formauth-0.5.jar
[INFO] Checking legal files in: org.sakaiproject.nakamura.formauth-0.5-sources.jar
[WARNING] Artifact does not contain any legal files: org.sakaiproject.nakamura.formauth-0.5-sources.jar
[INFO] [install:install {execution: default-install}]
[INFO] Installing /Users/ieb/timefields/open-experiments/bundles/formauth/target/org.sakaiproject.nakamura.formauth-0.5.jar to /Users/ieb/.m2/repository/org/sakaiproject/nakamura/org.sakaiproject.nakamura.formauth/0.5/org.sakaiproject.nakamura.formauth-0.5.jar
[INFO] Installing /Users/ieb/timefields/open-experiments/bundles/formauth/target/org.sakaiproject.nakamura.formauth-0.5-sources.jar to /Users/ieb/.m2/repository/org/sakaiproject/nakamura/org.sakaiproject.nakamura.formauth/0.5/org.sakaiproject.nakamura.formauth-0.5-sources.jar
[INFO] [bundle:install {execution: default-install}]
[INFO] Parsing file:/Users/ieb/.m2/repository/repository.xml
[INFO] Installing org/sakaiproject/nakamura/org.sakaiproject.nakamura.formauth/0.5/org.sakaiproject.nakamura.formauth-0.5.jar
[INFO] Writing OBR metadata
[INFO] ------------------------------------------------------------------------
[INFO] Building Sakai Nakamura Configuration Bundle
[INFO] task-segment: [clean, install]
[INFO] ------------------------------------------------------------------------
[INFO] [clean:clean {execution: default-clean}]
[INFO] Deleting directory /Users/ieb/timefields/open-experiments/bundles/configuration/target
[INFO] [dependency:copy-dependencies {execution: embed-dependencies}]
[INFO] Copying google-collections-0.8.jar to /Users/ieb/timefields/open-experiments/bundles/configuration/target/classes/google-collections-0.8.jar
[INFO] [resources:resources {execution: default-resources}]
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 3 resources
[INFO] [compiler:compile {execution: default-compile}]
[INFO] Compiling 3 source files to /Users/ieb/timefields/open-experiments/bundles/configuration/target/classes
[INFO] [scr:scr {execution: generate-scr-scrdescriptor}]
[INFO] Generating 2 MetaType Descriptors to /Users/ieb/timefields/open-experiments/bundles/configuration/target/scr-plugin-generated/OSGI-INF/metatype/metatype.xml
[INFO] Writing abstract service descriptor /Users/ieb/timefields/open-experiments/bundles/configuration/target/scr-plugin-generated/OSGI-INF/scr-plugin/scrinfo.xml with 1 entries.
[INFO] Generating 1 Service Component Descriptors to /Users/ieb/timefields/open-experiments/bundles/configuration/target/scr-plugin-generated/OSGI-INF/serviceComponents.xml
[INFO] [resources:testResources {execution: default-testResources}]
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /Users/ieb/timefields/open-experiments/bundles/configuration/src/test/resources
[INFO] [compiler:testCompile {execution: default-testCompile}]
[INFO] Compiling 1 source file to /Users/ieb/timefields/open-experiments/bundles/configuration/target/test-classes
[INFO] [surefire:test {execution: default-test}]
[INFO] Surefire report directory: /Users/ieb/timefields/open-experiments/bundles/configuration/target/surefire-reports
-------------------------------------------------------
T E S T S
-------------------------------------------------------
Running org.sakaiproject.nakamura.api.configuration.NakamuraConstantsTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.301 sec
Results :
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0
[INFO] [bundle:bundle {execution: default-bundle}]
[INFO] Preparing source:jar
[WARNING] Removing: jar from forked lifecycle, to prevent recursive invocation.
[INFO] No goals needed for project - skipping
[INFO] [source:jar {execution: attach-sources}]
[INFO] Building jar: /Users/ieb/timefields/open-experiments/bundles/configuration/target/org.sakaiproject.nakamura.configuration-0.5-sources.jar
[INFO] [ianal:verify-legal-files {execution: default}]
[INFO] Checking legal files in: org.sakaiproject.nakamura.configuration-0.5.jar
[INFO] Checking legal files in: org.sakaiproject.nakamura.configuration-0.5-sources.jar
[WARNING] Artifact does not contain any legal files: org.sakaiproject.nakamura.configuration-0.5-sources.jar
[INFO] [install:install {execution: default-install}]
[INFO] Installing /Users/ieb/timefields/open-experiments/bundles/configuration/target/org.sakaiproject.nakamura.configuration-0.5.jar to /Users/ieb/.m2/repository/org/sakaiproject/nakamura/org.sakaiproject.nakamura.configuration/0.5/org.sakaiproject.nakamura.configuration-0.5.jar
[INFO] Installing /Users/ieb/timefields/open-experiments/bundles/configuration/target/org.sakaiproject.nakamura.configuration-0.5-sources.jar to /Users/ieb/.m2/repository/org/sakaiproject/nakamura/org.sakaiproject.nakamura.configuration/0.5/org.sakaiproject.nakamura.configuration-0.5-sources.jar
[INFO] [bundle:install {execution: default-install}]
[INFO] Parsing file:/Users/ieb/.m2/repository/repository.xml
[INFO] Installing org/sakaiproject/nakamura/org.sakaiproject.nakamura.configuration/0.5/org.sakaiproject.nakamura.configuration-0.5.jar
[INFO] Writing OBR metadata
[INFO] ------------------------------------------------------------------------
[INFO] Building Sakai Nakamura Server Extension Bundle
[INFO] task-segment: [clean, install]
[INFO] ------------------------------------------------------------------------
[INFO] [clean:clean {execution: default-clean}]
[INFO] Deleting directory /Users/ieb/timefields/open-experiments/bundles/server/target
[INFO] [dependency:unpack-dependencies {execution: Expand Server}]
[INFO] Unpacking /Users/ieb/.m2/repository/org/apache/sling/org.apache.sling.jcr.jackrabbit.server/2.0.7-20100524/org.apache.sling.jcr.jackrabbit.server-2.0.7-20100524.jar to
/Users/ieb/timefields/open-experiments/bundles/server/target/classes
with includes null and excludes:META-INF/MANIFEST.MF,repository.xml,OSGI-INF/serviceComponents.xml
[INFO] [resources:resources {execution: default-resources}]
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 5 resources
[INFO] [compiler:compile {execution: default-compile}]
[INFO] Compiling 26 source files to /Users/ieb/timefields/open-experiments/bundles/server/target/classes
[WARNING] /Users/ieb/timefields/open-experiments/bundles/server/src/main/java/org/apache/jackrabbit/core/DynamicSecurityManager.java:[356,53] [unchecked] unchecked conversion
found : java.lang.Class
required: java.lang.Class<T>
[WARNING] /Users/ieb/timefields/open-experiments/bundles/server/src/main/java/org/apache/jackrabbit/core/DynamicSecurityManager.java:[356,52] [unchecked] unchecked method invocation: <T>getPrincipals(java.lang.Class<T>) in javax.security.auth.Subject is applied to (java.lang.Class)
[WARNING] /Users/ieb/timefields/open-experiments/bundles/server/src/main/java/org/apache/jackrabbit/core/DynamicSecurityManager.java:[356,52] [unchecked] unchecked conversion
found : java.util.Set
required: java.util.Set<java.security.Principal>
[INFO] [scr:scr {execution: generate-scr-scrdescriptor}]
[INFO] Writing abstract service descriptor /Users/ieb/timefields/open-experiments/bundles/server/target/scr-plugin-generated/OSGI-INF/scr-plugin/scrinfo.xml with 1 entries.
[INFO] Generating 1 Service Component Descriptors to /Users/ieb/timefields/open-experiments/bundles/server/target/scr-plugin-generated/OSGI-INF/serviceComponents.xml
[INFO] [resources:testResources {execution: default-testResources}]
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 1 resource
[INFO] [compiler:testCompile {execution: default-testCompile}]
[INFO] Compiling 7 source files to /Users/ieb/timefields/open-experiments/bundles/server/target/test-classes
[INFO] [surefire:test {execution: default-test}]
[INFO] Surefire report directory: /Users/ieb/timefields/open-experiments/bundles/server/target/surefire-reports
-------------------------------------------------------
T E S T S
-------------------------------------------------------
Running org.apache.sling.jcr.jackrabbit.server.index.TermTest
Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.028 sec
Running org.apache.sling.jcr.jackrabbit.server.index.TermCloudVectorMapperTest
Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.026 sec
Running org.apache.sling.jcr.jackrabbit.server.impl.security.dynamic.RepositoryBaseTest
Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 4.569 sec
Running org.apache.sling.jcr.jackrabbit.server.index.TermCloudExtractorTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.023 sec
Running org.apache.sling.jcr.jackrabbit.server.index.TermCloudTest
Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.006 sec
Running org.apache.jackrabbit.core.security.authorization.acl.ISO8601DateTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.666 sec
Results :
Tests run: 18, Failures: 0, Errors: 0, Skipped: 0
[INFO] [jar:jar {execution: default-jar}]
[INFO] Building jar: /Users/ieb/timefields/open-experiments/bundles/server/target/org.apache.sling.jcr.jackrabbit.server-2.0.7-0.5.jar
[INFO] Preparing source:jar
[WARNING] Removing: jar from forked lifecycle, to prevent recursive invocation.
[INFO] No goals needed for project - skipping
[INFO] [source:jar {execution: attach-sources}]
[INFO] Building jar: /Users/ieb/timefields/open-experiments/bundles/server/target/org.apache.sling.jcr.jackrabbit.server-2.0.7-0.5-sources.jar
[INFO] [ianal:verify-legal-files {execution: default}]
[INFO] Checking legal files in: org.apache.sling.jcr.jackrabbit.server-2.0.7-0.5.jar
[INFO] Checking legal files in: org.apache.sling.jcr.jackrabbit.server-2.0.7-0.5-sources.jar
[WARNING] Artifact does not contain any legal files: org.apache.sling.jcr.jackrabbit.server-2.0.7-0.5-sources.jar
[INFO] [install:install {execution: default-install}]
[INFO] Installing /Users/ieb/timefields/open-experiments/bundles/server/target/org.apache.sling.jcr.jackrabbit.server-2.0.7-0.5.jar to /Users/ieb/.m2/repository/org/sakaiproject/nakamura/org.apache.sling.jcr.jackrabbit.server/2.0.7-0.5/org.apache.sling.jcr.jackrabbit.server-2.0.7-0.5.jar
[INFO] Installing /Users/ieb/timefields/open-experiments/bundles/server/target/org.apache.sling.jcr.jackrabbit.server-2.0.7-0.5-sources.jar to /Users/ieb/.m2/repository/org/sakaiproject/nakamura/org.apache.sling.jcr.jackrabbit.server/2.0.7-0.5/org.apache.sling.jcr.jackrabbit.server-2.0.7-0.5-sources.jar
[INFO] ------------------------------------------------------------------------
[INFO] Building Sakai Nakamura User Extension Bundle
[INFO] task-segment: [clean, install]
[INFO] ------------------------------------------------------------------------
[INFO] [clean:clean {execution: default-clean}]
[INFO] Deleting directory /Users/ieb/timefields/open-experiments/bundles/user/target
[INFO] [resources:resources {execution: default-resources}]
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 4 resources
Downloading: http://source.sakaiproject.org/maven2/org/apache/sling/org.apache.sling.jcr.jackrabbit.usermanager/2.0.5-20100524/org.apache.sling.jcr.jackrabbit.usermanager-2.0.5-20100524.pom
[INFO] Unable to find resource 'org.apache.sling:org.apache.sling.jcr.jackrabbit.usermanager:pom:2.0.5-20100524' in repository sakai-maven (http://source.sakaiproject.org/maven2)
Downloading: http://repo1.maven.org/maven2//org/apache/sling/org.apache.sling.jcr.jackrabbit.usermanager/2.0.5-20100524/org.apache.sling.jcr.jackrabbit.usermanager-2.0.5-20100524.pom
[INFO] Unable to find resource 'org.apache.sling:org.apache.sling.jcr.jackrabbit.usermanager:pom:2.0.5-20100524' in repository maven repo (http://repo1.maven.org/maven2/)
Downloading: https://source.sakaiproject.org/maven2//org/apache/sling/org.apache.sling.jcr.jackrabbit.usermanager/2.0.5-20100524/org.apache.sling.jcr.jackrabbit.usermanager-2.0.5-20100524.pom
[INFO] Unable to find resource 'org.apache.sling:org.apache.sling.jcr.jackrabbit.usermanager:pom:2.0.5-20100524' in repository sakai-releases (https://source.sakaiproject.org/maven2/)
Downloading: http://repo1.maven.org/maven2/org/apache/sling/org.apache.sling.jcr.jackrabbit.usermanager/2.0.5-20100524/org.apache.sling.jcr.jackrabbit.usermanager-2.0.5-20100524.pom
[INFO] Unable to find resource 'org.apache.sling:org.apache.sling.jcr.jackrabbit.usermanager:pom:2.0.5-20100524' in repository central (http://repo1.maven.org/maven2)
Downloading: http://source.sakaiproject.org/maven2/org/apache/sling/org.apache.sling.servlets.post/2.0.4-incubator/org.apache.sling.servlets.post-2.0.4-incubator.pom
[INFO] Unable to find resource 'org.apache.sling:org.apache.sling.servlets.post:pom:2.0.4-incubator' in repository sakai-maven (http://source.sakaiproject.org/maven2)
Downloading: http://repo1.maven.org/maven2//org/apache/sling/org.apache.sling.servlets.post/2.0.4-incubator/org.apache.sling.servlets.post-2.0.4-incubator.pom
829/?2750/?5175/?
Downloading: http://source.sakaiproject.org/maven2/org/apache/sling/org.apache.sling.jcr.api/2.0.2-incubator/org.apache.sling.jcr.api-2.0.2-incubator.pom
[INFO] Unable to find resource 'org.apache.sling:org.apache.sling.jcr.api:pom:2.0.2-incubator' in repository sakai-maven (http://source.sakaiproject.org/maven2)
Downloading: http://repo1.maven.org/maven2//org/apache/sling/org.apache.sling.jcr.api/2.0.2-incubator/org.apache.sling.jcr.api-2.0.2-incubator.pom
835/?2428/?3428/?
Downloading: http://source.sakaiproject.org/maven2/org/apache/sling/org.apache.sling.jcr.resource/2.0.2-incubator/org.apache.sling.jcr.resource-2.0.2-incubator.pom
[INFO] Unable to find resource 'org.apache.sling:org.apache.sling.jcr.resource:pom:2.0.2-incubator' in repository sakai-maven (http://source.sakaiproject.org/maven2)
Downloading: http://repo1.maven.org/maven2//org/apache/sling/org.apache.sling.jcr.resource/2.0.2-incubator/org.apache.sling.jcr.resource-2.0.2-incubator.pom
818/?2648/?6331/?
Downloading: http://source.sakaiproject.org/maven2/org/apache/sling/org.apache.sling.commons.json/2.0.2-incubator/org.apache.sling.commons.json-2.0.2-incubator.pom
[INFO] Unable to find resource 'org.apache.sling:org.apache.sling.commons.json:pom:2.0.2-incubator' in repository sakai-maven (http://source.sakaiproject.org/maven2)
Downloading: http://repo1.maven.org/maven2//org/apache/sling/org.apache.sling.commons.json/2.0.2-incubator/org.apache.sling.commons.json-2.0.2-incubator.pom
809/?2580/?3010/?
Downloading: http://source.sakaiproject.org/maven2/org/apache/sling/org.apache.sling.adapter/2.0.4/org.apache.sling.adapter-2.0.4.pom
[INFO] Unable to find resource 'org.apache.sling:org.apache.sling.adapter:pom:2.0.4' in repository sakai-maven (http://source.sakaiproject.org/maven2)
Downloading: http://repo1.maven.org/maven2//org/apache/sling/org.apache.sling.adapter/2.0.4/org.apache.sling.adapter-2.0.4.pom
800/?2555/?4444/?
Downloading: http://source.sakaiproject.org/maven2/org/apache/sling/org.apache.sling.commons.osgi/2.0.2-incubator/org.apache.sling.commons.osgi-2.0.2-incubator.pom
[INFO] Unable to find resource 'org.apache.sling:org.apache.sling.commons.osgi:pom:2.0.2-incubator' in repository sakai-maven (http://source.sakaiproject.org/maven2)
Downloading: http://repo1.maven.org/maven2//org/apache/sling/org.apache.sling.commons.osgi/2.0.2-incubator/org.apache.sling.commons.osgi-2.0.2-incubator.pom
842/?2699/?3242/?
Downloading: http://source.sakaiproject.org/maven2/org/apache/sling/org.apache.sling.api/2.0.2-incubator/org.apache.sling.api-2.0.2-incubator.pom
[INFO] Unable to find resource 'org.apache.sling:org.apache.sling.api:pom:2.0.2-incubator' in repository sakai-maven (http://source.sakaiproject.org/maven2)
Downloading: http://repo1.maven.org/maven2//org/apache/sling/org.apache.sling.api/2.0.2-incubator/org.apache.sling.api-2.0.2-incubator.pom
830/?2094/?3854/?
Downloading: http://source.sakaiproject.org/maven2/org/apache/sling/org.apache.sling.jcr.jackrabbit.usermanager/2.0.5-20100524/org.apache.sling.jcr.jackrabbit.usermanager-2.0.5-20100524.jar
3/56K7/56K11/56K11/56K15/56K19/56K21/56K25/56K29/56K33/56K35/56K39/56K43/56K47/56K51/56K55/56K56/56K56K downloaded (org.apache.sling.jcr.jackrabbit.usermanager-2.0.5-20100524.jar)
Downloading: http://source.sakaiproject.org/maven2/org/apache/sling/org.apache.sling.servlets.post/2.0.4-incubator/org.apache.sling.servlets.post-2.0.4-incubator.jar
[INFO] Unable to find resource 'org.apache.sling:org.apache.sling.servlets.post:jar:2.0.4-incubator' in repository sakai-maven (http://source.sakaiproject.org/maven2)
Downloading: http://repo1.maven.org/maven2//org/apache/sling/org.apache.sling.servlets.post/2.0.4-incubator/org.apache.sling.servlets.post-2.0.4-incubator.jar
462/?1038/?1584/?2095/?2606/?3117/?3628/?3892/?4403/?4915/?5747/?6352/?6864/?7531/?8043/?8554/?9115/?9723/?10281/?11137/?11739/?12250/?12848/?13360/?13376/?13887/?14398/?14910/?15421/?15931/?16444/?17019/?17531/?17539/?17836/?18289/?18866/?19377/?20044/?20703/?21213/?21726/?22237/?22749/?23260/?23772/?24284/?24795/?25456/?25968/?26264/?26777/?27363/?27960/?28472/?28984/?29570/?30082/?30593/?31105/?31693/?32204/?32716/?33228/?33739/?34337/?34957/?35469/?36017/?36529/?37040/?37552/?38070/?38750/?39262/?39774/?40286/?40883/?41396/?41908/?42420/?43020/?43532/?43564/?44165/?44677/?45188/?45699/?46211/?46724/?47237/?47748/?48260/?48771/?49123/?49634/?50146/?50659/?51260/?51772/?52371/?52907/?53390/?53900/?54408/?54915/?55423/?55933/?56441/?56947/?57914/?59983/?61803/?
Downloading: http://source.sakaiproject.org/maven2/org/apache/sling/org.apache.sling.jcr.api/2.0.2-incubator/org.apache.sling.jcr.api-2.0.2-incubator.jar
[INFO] Unable to find resource 'org.apache.sling:org.apache.sling.jcr.api:jar:2.0.2-incubator' in repository sakai-maven (http://source.sakaiproject.org/maven2)
Downloading: http://repo1.maven.org/maven2//org/apache/sling/org.apache.sling.jcr.api/2.0.2-incubator/org.apache.sling.jcr.api-2.0.2-incubator.jar
458/?1035/?1581/?2091/?2601/?3111/?3623/?3886/?4397/?4908/?5418/?5928/?6439/?6950/?7461/?8005/?8882/?9392/?9744/?10378/?10978/?11613/?12170/?12739/?12916/?13568/?14146/?14801/?15371/?16002/?16512/?17023/?17679/?17963/?18415/?19088/?19599/?20225/?20795/?21304/?21871/?22427/?22937/?23501/?24011/?24581/?25141/?25766/?26340/?26635/?27244/?27962/?28529/?29196/?29769/?30508/?31127/?32034/?32670/?33244/?33875/?34686/?35264/?35774/?36284/?36909/?37418/?38084/?38584/?39568/?40139/?42538/?45654/?46787/?
Downloading: http://source.sakaiproject.org/maven2/org/apache/sling/org.apache.sling.adapter/2.0.4/org.apache.sling.adapter-2.0.4.jar
[INFO] Unable to find resource 'org.apache.sling:org.apache.sling.adapter:jar:2.0.4' in repository sakai-maven (http://source.sakaiproject.org/maven2)
Downloading: http://repo1.maven.org/maven2//org/apache/sling/org.apache.sling.adapter/2.0.4/org.apache.sling.adapter-2.0.4.jar
460/?1037/?1584/?2094/?2605/?3116/?3627/?3890/?4400/?4911/?5736/?6333/?6843/?7498/?8047/?8828/?9475/?10073/?10583/?11254/?11765/?12275/?12786/?13297/?13312/?13824/?14334/?14845/?15356/?15874/?17790/?
Downloading: http://source.sakaiproject.org/maven2/org/apache/sling/org.apache.sling.commons.osgi/2.0.2-incubator/org.apache.sling.commons.osgi-2.0.2-incubator.jar
[INFO] Unable to find resource 'org.apache.sling:org.apache.sling.commons.osgi:jar:2.0.2-incubator' in repository sakai-maven (http://source.sakaiproject.org/maven2)
Downloading: http://repo1.maven.org/maven2//org/apache/sling/org.apache.sling.commons.osgi/2.0.2-incubator/org.apache.sling.commons.osgi-2.0.2-incubator.jar
453/?1066/?1577/?2089/?2601/?3113/?3623/?3887/?4399/?4936/?5833/?6344/?6857/?7782/?8368/?8880/?9395/?9896/?10409/?10922/?11433/?12006/?12516/?13030/?13046/?13557/?14067/?15853/?
[INFO] [compiler:compile {execution: default-compile}]
[INFO] Compiling 22 source files to /Users/ieb/timefields/open-experiments/bundles/user/target/classes
[WARNING] /Users/ieb/timefields/open-experiments/bundles/user/src/main/java/org/sakaiproject/nakamura/user/servlet/SakaiSlingHttpServletRequest.java:[480,17] [deprecation] isRequestedSessionIdFromUrl() in javax.servlet.http.HttpServletRequest has been deprecated
[WARNING] /Users/ieb/timefields/open-experiments/bundles/user/src/main/java/org/sakaiproject/nakamura/user/servlet/SakaiSlingHttpServletRequest.java:[664,16] [deprecation] getRealPath(java.lang.String) in javax.servlet.ServletRequest has been deprecated
[WARNING] /Users/ieb/timefields/open-experiments/bundles/user/src/main/java/org/sakaiproject/nakamura/user/servlet/SakaiSlingHttpServletRequest.java:[214,22] [deprecation] resolve(javax.servlet.http.HttpServletRequest) in org.apache.sling.api.resource.ResourceResolver has been deprecated
[INFO] [scr:scr {execution: generate-scr-scrdescriptor}]
[INFO] Generating 10 MetaType Descriptors to /Users/ieb/timefields/open-experiments/bundles/user/target/scr-plugin-generated/OSGI-INF/metatype/metatype.xml
[INFO] Writing abstract service descriptor /Users/ieb/timefields/open-experiments/bundles/user/target/scr-plugin-generated/OSGI-INF/scr-plugin/scrinfo.xml with 10 entries.
[INFO] Generating 10 Service Component Descriptors to /Users/ieb/timefields/open-experiments/bundles/user/target/scr-plugin-generated/OSGI-INF/serviceComponents.xml
[INFO] [resources:testResources {execution: default-testResources}]
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /Users/ieb/timefields/open-experiments/bundles/user/src/test/resources
[INFO] [compiler:testCompile {execution: default-testCompile}]
[INFO] Compiling 13 source files to /Users/ieb/timefields/open-experiments/bundles/user/target/test-classes
[INFO] [surefire:test {execution: default-test}]
[INFO] Surefire report directory: /Users/ieb/timefields/open-experiments/bundles/user/target/surefire-reports
-------------------------------------------------------
T E S T S
-------------------------------------------------------
Running org.sakaiproject.nakamura.user.servlet.UserModificationTest
Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.078 sec
Running org.sakaiproject.nakamura.user.servlet.DeleteSakaiAuthorizableServletTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.078 sec
Running org.sakaiproject.nakamura.user.resource.SakaiAuthorizableResourceProviderTest
Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.063 sec
Running org.sakaiproject.nakamura.api.user.AuthorizableEventUtilTest
Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.013 sec
Running org.sakaiproject.nakamura.user.servlet.CreateSakaiUserServletTest
Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.041 sec
Running org.sakaiproject.nakamura.user.servlet.GroupModificationTest
Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.008 sec
Running org.sakaiproject.nakamura.user.servlet.UpdateSakaiGroupServletTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015 sec
Running org.sakaiproject.nakamura.user.servlet.GroupGetServletTest
Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.06 sec
Running org.sakaiproject.nakamura.user.owner.OwnerPrincipalManagerTest
Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.035 sec
Running org.sakaiproject.nakamura.user.servlet.ChangeSakaiUserPasswordServletTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.008 sec