-
Notifications
You must be signed in to change notification settings - Fork 1
/
square-okhttp-45400990.log
10876 lines (10825 loc) · 816 KB
/
square-okhttp-45400990.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
Using worker: worker-linux-docker-1abed735.prod.travis-ci.org:travis-linux-3
travis_fold:start:system_info
[0K[33;1mBuild system information[0m
Build language: java
[34m[1mBuild image provisioning date and time[0m
Fri Dec 12 23:29:11 UTC 2014
[34m[1mlsb_release -a[0m
Distributor ID: Ubuntu
Description: Ubuntu 12.04.5 LTS
Release: 12.04
Codename: precise
[34m[1mCookbooks Version[0m
540230e https://github.com/travis-ci/travis-cookbooks/tree/540230e
[34m[1mGCC version[0m
gcc (Ubuntu/Linaro 4.6.3-1ubuntu5) 4.6.3
Copyright (C) 2011 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
[34m[1mLLVM version[0m
clang version 3.4 (tags/RELEASE_34/final)
Target: x86_64-unknown-linux-gnu
Thread model: posix
[34m[1mPre-installed Ruby versions[0m
ruby-1.9.3-p551
[34m[1mPre-installed Node.js versions[0m
v0.10.33
[34m[1mPre-installed Go versions[0m
go1.4
[34m[1mRedis version[0m
redis-server 2.8.18
[34m[1mriak version[0m
1.4.12
[34m[1mMongoDB version[0m
MongoDB 2.4.12
[34m[1mCouchDB version[0m
couchdb 1.6.1
[34m[1mNeo4j version[0m
1.9.4
[34m[1mCassandra version[0m
2.0.9
[34m[1mRabbitMQ Version[0m
3.4.2
[34m[1mElasticSearch version[0m
1.4.0
[34m[1mInstalled Sphinx versions[0m
2.0.10
2.1.9
2.2.4
[34m[1mDefault Sphinx version[0m
2.1.9
[34m[1mInstalled Firefox version[0m
firefox 31.0esr
[34m[1mPhantomJS version[0m
1.9.8
[34m[1mant -version[0m
Apache Ant(TM) version 1.8.2 compiled on December 3 2011
[34m[1mmvn -version[0m
Apache Maven 3.2.3 (33f8c3e1027c3ddde99d3cdebad2656a31e8fdf4; 2014-08-11T20:58:10+00:00)
Maven home: /usr/local/maven
Java version: 1.7.0_72, vendor: Oracle Corporation
Java home: /usr/lib/jvm/java-7-oracle/jre
Default locale: en_US, platform encoding: ANSI_X3.4-1968
OS name: "linux", version: "3.13.0-29-generic", arch: "amd64", family: "unix"
[34m[1mgradle -version[0m
------------------------------------------------------------
Gradle 2.2.1
------------------------------------------------------------
Build time: 2014-11-24 09:45:35 UTC
Build number: none
Revision: 6fcb59c06f43a4e6b1bcb401f7686a8601a1fb4a
Groovy: 2.3.6
Ant: Apache Ant(TM) version 1.9.3 compiled on December 23 2013
JVM: 1.7.0_72 (Oracle Corporation 24.72-b04)
OS: Linux 3.13.0-29-generic amd64
[34m[1mlein1 version[0m
Using JLine for console I/O; install rlwrap for optimum experience.
Leiningen 1.7.1 on Java 1.7.0_72 Java HotSpot(TM) 64-Bit Server VM
[34m[1mlein2 version[0m
Leiningen 2.5.0 on Java 1.7.0_72 Java HotSpot(TM) 64-Bit Server VM
[34m[1mlein version[0m
Leiningen 2.5.0 on Java 1.7.0_72 Java HotSpot(TM) 64-Bit Server VM
travis_fold:end:system_info
[0K
travis_fold:start:git.checkout
[0Ktravis_time:start:0b7ba7bc
[0K$ git clone --depth=50 git://github.com/square/okhttp.git square/okhttp
Cloning into 'square/okhttp'...
remote: Counting objects: 3781, done.[K
remote: Compressing objects: 0% (1/1572) [K
remote: Compressing objects: 1% (16/1572) [K
remote: Compressing objects: 2% (32/1572) [K
remote: Compressing objects: 3% (48/1572) [K
remote: Compressing objects: 4% (63/1572) [K
remote: Compressing objects: 5% (79/1572) [K
remote: Compressing objects: 6% (95/1572) [K
remote: Compressing objects: 7% (111/1572) [K
remote: Compressing objects: 8% (126/1572) [K
remote: Compressing objects: 9% (142/1572) [K
remote: Compressing objects: 10% (158/1572) [K
remote: Compressing objects: 11% (173/1572) [K
remote: Compressing objects: 12% (189/1572) [K
remote: Compressing objects: 13% (205/1572) [K
remote: Compressing objects: 14% (221/1572) [K
remote: Compressing objects: 15% (236/1572) [K
remote: Compressing objects: 16% (252/1572) [K
remote: Compressing objects: 17% (268/1572) [K
remote: Compressing objects: 18% (283/1572) [K
remote: Compressing objects: 19% (299/1572) [K
remote: Compressing objects: 20% (315/1572) [K
remote: Compressing objects: 21% (331/1572) [K
remote: Compressing objects: 22% (346/1572) [K
remote: Compressing objects: 23% (362/1572) [K
remote: Compressing objects: 24% (378/1572) [K
remote: Compressing objects: 25% (393/1572) [K
remote: Compressing objects: 26% (409/1572) [K
remote: Compressing objects: 27% (425/1572) [K
remote: Compressing objects: 28% (441/1572) [K
remote: Compressing objects: 29% (456/1572) [K
remote: Compressing objects: 30% (472/1572) [K
remote: Compressing objects: 31% (488/1572) [K
remote: Compressing objects: 32% (504/1572) [K
remote: Compressing objects: 33% (519/1572) [K
remote: Compressing objects: 34% (535/1572) [K
remote: Compressing objects: 35% (551/1572) [K
remote: Compressing objects: 36% (566/1572) [K
remote: Compressing objects: 37% (582/1572) [K
remote: Compressing objects: 38% (598/1572) [K
remote: Compressing objects: 39% (614/1572) [K
remote: Compressing objects: 40% (629/1572) [K
remote: Compressing objects: 41% (645/1572) [K
remote: Compressing objects: 42% (661/1572) [K
remote: Compressing objects: 43% (676/1572) [K
remote: Compressing objects: 44% (692/1572) [K
remote: Compressing objects: 45% (708/1572) [K
remote: Compressing objects: 46% (724/1572) [K
remote: Compressing objects: 47% (739/1572) [K
remote: Compressing objects: 48% (755/1572) [K
remote: Compressing objects: 49% (771/1572) [K
remote: Compressing objects: 50% (786/1572) [K
remote: Compressing objects: 51% (802/1572) [K
remote: Compressing objects: 52% (818/1572) [K
remote: Compressing objects: 53% (834/1572) [K
remote: Compressing objects: 54% (849/1572) [K
remote: Compressing objects: 55% (865/1572) [K
remote: Compressing objects: 56% (881/1572) [K
remote: Compressing objects: 57% (897/1572) [K
remote: Compressing objects: 58% (912/1572) [K
remote: Compressing objects: 59% (928/1572) [K
remote: Compressing objects: 60% (944/1572) [K
remote: Compressing objects: 61% (959/1572) [K
remote: Compressing objects: 62% (975/1572) [K
remote: Compressing objects: 63% (991/1572) [K
remote: Compressing objects: 64% (1007/1572) [K
remote: Compressing objects: 65% (1022/1572) [K
remote: Compressing objects: 66% (1038/1572) [K
remote: Compressing objects: 67% (1054/1572) [K
remote: Compressing objects: 68% (1069/1572) [K
remote: Compressing objects: 69% (1085/1572) [K
remote: Compressing objects: 70% (1101/1572) [K
remote: Compressing objects: 71% (1117/1572) [K
remote: Compressing objects: 72% (1132/1572) [K
remote: Compressing objects: 73% (1148/1572) [K
remote: Compressing objects: 74% (1164/1572) [K
remote: Compressing objects: 75% (1179/1572) [K
remote: Compressing objects: 76% (1195/1572) [K
remote: Compressing objects: 77% (1211/1572) [K
remote: Compressing objects: 78% (1227/1572) [K
remote: Compressing objects: 79% (1242/1572) [K
remote: Compressing objects: 80% (1258/1572) [K
remote: Compressing objects: 81% (1274/1572) [K
remote: Compressing objects: 82% (1290/1572) [K
remote: Compressing objects: 83% (1305/1572) [K
remote: Compressing objects: 84% (1321/1572) [K
remote: Compressing objects: 85% (1337/1572) [K
remote: Compressing objects: 86% (1352/1572) [K
remote: Compressing objects: 87% (1368/1572) [K
remote: Compressing objects: 88% (1384/1572) [K
remote: Compressing objects: 89% (1400/1572) [K
remote: Compressing objects: 90% (1415/1572) [K
remote: Compressing objects: 91% (1431/1572) [K
remote: Compressing objects: 92% (1447/1572) [K
remote: Compressing objects: 93% (1462/1572) [K
remote: Compressing objects: 94% (1478/1572) [K
remote: Compressing objects: 95% (1494/1572) [K
remote: Compressing objects: 96% (1510/1572) [K
remote: Compressing objects: 97% (1525/1572) [K
remote: Compressing objects: 98% (1541/1572) [K
remote: Compressing objects: 99% (1557/1572) [K
remote: Compressing objects: 100% (1572/1572) [K
remote: Compressing objects: 100% (1572/1572), done.[K
Receiving objects: 0% (1/3781)
Receiving objects: 1% (38/3781)
Receiving objects: 2% (76/3781)
Receiving objects: 3% (114/3781)
Receiving objects: 4% (152/3781)
Receiving objects: 5% (190/3781)
Receiving objects: 6% (227/3781)
Receiving objects: 7% (265/3781)
Receiving objects: 8% (303/3781)
Receiving objects: 9% (341/3781)
Receiving objects: 10% (379/3781)
Receiving objects: 11% (416/3781)
Receiving objects: 12% (454/3781)
Receiving objects: 13% (492/3781)
Receiving objects: 14% (530/3781)
Receiving objects: 15% (568/3781)
Receiving objects: 16% (605/3781)
Receiving objects: 17% (643/3781)
Receiving objects: 18% (681/3781)
Receiving objects: 19% (719/3781)
Receiving objects: 20% (757/3781)
Receiving objects: 21% (795/3781)
Receiving objects: 22% (832/3781)
Receiving objects: 23% (870/3781)
Receiving objects: 24% (908/3781)
Receiving objects: 25% (946/3781)
Receiving objects: 26% (984/3781)
Receiving objects: 27% (1021/3781)
Receiving objects: 28% (1059/3781)
Receiving objects: 29% (1097/3781)
Receiving objects: 30% (1135/3781)
Receiving objects: 31% (1173/3781)
Receiving objects: 32% (1210/3781)
Receiving objects: 33% (1248/3781)
Receiving objects: 34% (1286/3781)
Receiving objects: 35% (1324/3781)
Receiving objects: 36% (1362/3781)
Receiving objects: 37% (1399/3781)
Receiving objects: 38% (1437/3781)
Receiving objects: 39% (1475/3781)
Receiving objects: 40% (1513/3781)
Receiving objects: 41% (1551/3781)
Receiving objects: 42% (1589/3781)
Receiving objects: 43% (1626/3781)
Receiving objects: 44% (1664/3781)
Receiving objects: 45% (1702/3781)
Receiving objects: 46% (1740/3781)
Receiving objects: 47% (1778/3781)
Receiving objects: 48% (1815/3781)
Receiving objects: 49% (1853/3781)
Receiving objects: 50% (1891/3781)
Receiving objects: 51% (1929/3781)
Receiving objects: 52% (1967/3781)
Receiving objects: 53% (2004/3781)
Receiving objects: 54% (2042/3781)
Receiving objects: 55% (2080/3781)
Receiving objects: 56% (2118/3781)
Receiving objects: 57% (2156/3781)
Receiving objects: 58% (2193/3781)
Receiving objects: 59% (2231/3781)
Receiving objects: 60% (2269/3781)
Receiving objects: 61% (2307/3781)
Receiving objects: 62% (2345/3781)
Receiving objects: 63% (2383/3781)
Receiving objects: 64% (2420/3781)
Receiving objects: 65% (2458/3781)
Receiving objects: 66% (2496/3781)
Receiving objects: 67% (2534/3781)
Receiving objects: 68% (2572/3781)
Receiving objects: 69% (2609/3781)
Receiving objects: 70% (2647/3781)
Receiving objects: 71% (2685/3781)
Receiving objects: 72% (2723/3781)
Receiving objects: 73% (2761/3781)
Receiving objects: 74% (2798/3781)
Receiving objects: 75% (2836/3781)
Receiving objects: 76% (2874/3781)
Receiving objects: 77% (2912/3781)
Receiving objects: 78% (2950/3781)
Receiving objects: 79% (2987/3781)
Receiving objects: 80% (3025/3781)
Receiving objects: 81% (3063/3781)
Receiving objects: 82% (3101/3781)
Receiving objects: 83% (3139/3781)
Receiving objects: 84% (3177/3781)
Receiving objects: 85% (3214/3781)
Receiving objects: 86% (3252/3781)
Receiving objects: 87% (3290/3781)
Receiving objects: 88% (3328/3781)
Receiving objects: 89% (3366/3781)
Receiving objects: 90% (3403/3781)
Receiving objects: 91% (3441/3781)
Receiving objects: 92% (3479/3781)
Receiving objects: 93% (3517/3781)
Receiving objects: 94% (3555/3781)
Receiving objects: 95% (3592/3781)
remote: Total 3781 (delta 1328), reused 3159 (delta 832)[K
Receiving objects: 96% (3630/3781)
Receiving objects: 97% (3668/3781)
Receiving objects: 98% (3706/3781)
Receiving objects: 99% (3744/3781)
Receiving objects: 100% (3781/3781)
Receiving objects: 100% (3781/3781), 1018.74 KiB | 0 bytes/s, done.
Resolving deltas: 0% (0/1328)
Resolving deltas: 2% (31/1328)
Resolving deltas: 3% (42/1328)
Resolving deltas: 4% (57/1328)
Resolving deltas: 5% (72/1328)
Resolving deltas: 6% (82/1328)
Resolving deltas: 7% (93/1328)
Resolving deltas: 8% (112/1328)
Resolving deltas: 9% (126/1328)
Resolving deltas: 10% (134/1328)
Resolving deltas: 11% (152/1328)
Resolving deltas: 12% (163/1328)
Resolving deltas: 13% (177/1328)
Resolving deltas: 14% (186/1328)
Resolving deltas: 15% (202/1328)
Resolving deltas: 16% (213/1328)
Resolving deltas: 19% (262/1328)
Resolving deltas: 21% (280/1328)
Resolving deltas: 23% (306/1328)
Resolving deltas: 24% (319/1328)
Resolving deltas: 25% (342/1328)
Resolving deltas: 27% (368/1328)
Resolving deltas: 28% (375/1328)
Resolving deltas: 29% (398/1328)
Resolving deltas: 31% (423/1328)
Resolving deltas: 32% (427/1328)
Resolving deltas: 33% (439/1328)
Resolving deltas: 34% (464/1328)
Resolving deltas: 35% (466/1328)
Resolving deltas: 36% (489/1328)
Resolving deltas: 37% (493/1328)
Resolving deltas: 38% (506/1328)
Resolving deltas: 39% (524/1328)
Resolving deltas: 40% (535/1328)
Resolving deltas: 41% (549/1328)
Resolving deltas: 42% (559/1328)
Resolving deltas: 46% (618/1328)
Resolving deltas: 47% (630/1328)
Resolving deltas: 49% (655/1328)
Resolving deltas: 50% (676/1328)
Resolving deltas: 51% (684/1328)
Resolving deltas: 52% (693/1328)
Resolving deltas: 53% (714/1328)
Resolving deltas: 54% (719/1328)
Resolving deltas: 55% (733/1328)
Resolving deltas: 57% (770/1328)
Resolving deltas: 58% (773/1328)
Resolving deltas: 59% (792/1328)
Resolving deltas: 60% (809/1328)
Resolving deltas: 61% (819/1328)
Resolving deltas: 62% (828/1328)
Resolving deltas: 63% (837/1328)
Resolving deltas: 64% (851/1328)
Resolving deltas: 65% (864/1328)
Resolving deltas: 66% (877/1328)
Resolving deltas: 67% (890/1328)
Resolving deltas: 68% (906/1328)
Resolving deltas: 69% (920/1328)
Resolving deltas: 70% (930/1328)
Resolving deltas: 71% (943/1328)
Resolving deltas: 72% (960/1328)
Resolving deltas: 73% (981/1328)
Resolving deltas: 74% (983/1328)
Resolving deltas: 75% (997/1328)
Resolving deltas: 76% (1022/1328)
Resolving deltas: 77% (1023/1328)
Resolving deltas: 78% (1036/1328)
Resolving deltas: 79% (1057/1328)
Resolving deltas: 80% (1066/1328)
Resolving deltas: 81% (1080/1328)
Resolving deltas: 82% (1089/1328)
Resolving deltas: 83% (1112/1328)
Resolving deltas: 84% (1121/1328)
Resolving deltas: 85% (1133/1328)
Resolving deltas: 86% (1144/1328)
Resolving deltas: 88% (1171/1328)
Resolving deltas: 89% (1182/1328)
Resolving deltas: 90% (1197/1328)
Resolving deltas: 91% (1209/1328)
Resolving deltas: 92% (1227/1328)
Resolving deltas: 93% (1247/1328)
Resolving deltas: 94% (1253/1328)
Resolving deltas: 95% (1271/1328)
Resolving deltas: 96% (1279/1328)
Resolving deltas: 97% (1289/1328)
Resolving deltas: 98% (1304/1328)
Resolving deltas: 99% (1318/1328)
Resolving deltas: 100% (1328/1328)
Resolving deltas: 100% (1328/1328), done.
Checking connectivity... done.
travis_time:end:0b7ba7bc:start=1419896875551256257,finish=1419896876013932384,duration=462676127
[0K$ cd square/okhttp
travis_time:start:28fee175
[0K$ git fetch origin +refs/pull/1254/merge:
remote: Counting objects: 46, done.[K
remote: Compressing objects: 5% (1/20) [K
remote: Compressing objects: 10% (2/20) [K
remote: Compressing objects: 15% (3/20) [K
remote: Compressing objects: 20% (4/20) [K
remote: Compressing objects: 25% (5/20) [K
remote: Compressing objects: 30% (6/20) [K
remote: Compressing objects: 35% (7/20) [K
remote: Compressing objects: 40% (8/20) [K
remote: Compressing objects: 45% (9/20) [K
remote: Compressing objects: 50% (10/20) [K
remote: Compressing objects: 55% (11/20) [K
remote: Compressing objects: 60% (12/20) [K
remote: Compressing objects: 65% (13/20) [K
remote: Compressing objects: 70% (14/20) [K
remote: Compressing objects: 75% (15/20) [K
remote: Compressing objects: 80% (16/20) [K
remote: Compressing objects: 85% (17/20) [K
remote: Compressing objects: 90% (18/20) [K
remote: Compressing objects: 95% (19/20) [K
remote: Compressing objects: 100% (20/20) [K
remote: Compressing objects: 100% (20/20), done.[K
Unpacking objects: 2% (1/46)
Unpacking objects: 4% (2/46)
Unpacking objects: 6% (3/46)
Unpacking objects: 8% (4/46)
Unpacking objects: 10% (5/46)
remote: Total 46 (delta 12), reused 38 (delta 4)[K
Unpacking objects: 13% (6/46)
Unpacking objects: 15% (7/46)
Unpacking objects: 17% (8/46)
Unpacking objects: 19% (9/46)
Unpacking objects: 21% (10/46)
Unpacking objects: 23% (11/46)
Unpacking objects: 26% (12/46)
Unpacking objects: 28% (13/46)
Unpacking objects: 30% (14/46)
Unpacking objects: 32% (15/46)
Unpacking objects: 34% (16/46)
Unpacking objects: 36% (17/46)
Unpacking objects: 39% (18/46)
Unpacking objects: 41% (19/46)
Unpacking objects: 43% (20/46)
Unpacking objects: 45% (21/46)
Unpacking objects: 47% (22/46)
Unpacking objects: 50% (23/46)
Unpacking objects: 52% (24/46)
Unpacking objects: 54% (25/46)
Unpacking objects: 56% (26/46)
Unpacking objects: 58% (27/46)
Unpacking objects: 60% (28/46)
Unpacking objects: 63% (29/46)
Unpacking objects: 65% (30/46)
Unpacking objects: 67% (31/46)
Unpacking objects: 69% (32/46)
Unpacking objects: 71% (33/46)
Unpacking objects: 73% (34/46)
Unpacking objects: 76% (35/46)
Unpacking objects: 78% (36/46)
Unpacking objects: 80% (37/46)
Unpacking objects: 82% (38/46)
Unpacking objects: 84% (39/46)
Unpacking objects: 86% (40/46)
Unpacking objects: 89% (41/46)
Unpacking objects: 91% (42/46)
Unpacking objects: 93% (43/46)
Unpacking objects: 95% (44/46)
Unpacking objects: 97% (45/46)
Unpacking objects: 100% (46/46)
Unpacking objects: 100% (46/46), done.
From git://github.com/square/okhttp
* branch refs/pull/1254/merge -> FETCH_HEAD
travis_time:end:28fee175:start=1419896876017855614,finish=1419896876119926635,duration=102071021
[0K$ git checkout -qf FETCH_HEAD
travis_fold:end:git.checkout
[0Ktravis_fold:start:git.submodule
[0Ktravis_time:start:1989c800
[0K$ git submodule init
Submodule 'okhttp-hpacktests/src/test/resources/hpack-test-case' (git://github.com/http2jp/hpack-test-case.git) registered for path 'okhttp-hpacktests/src/test/resources/hpack-test-case'
travis_time:end:1989c800:start=1419896876131924137,finish=1419896876167193809,duration=35269672
[0Ktravis_time:start:0446ad62
[0K$ git submodule update
Cloning into 'okhttp-hpacktests/src/test/resources/hpack-test-case'...
remote: Counting objects: 4084, done.[K
Receiving objects: 0% (1/4084)
Receiving objects: 1% (41/4084)
Receiving objects: 2% (82/4084)
Receiving objects: 3% (123/4084)
Receiving objects: 4% (164/4084)
Receiving objects: 5% (205/4084)
Receiving objects: 6% (246/4084)
Receiving objects: 7% (286/4084)
Receiving objects: 8% (327/4084)
Receiving objects: 9% (368/4084)
Receiving objects: 10% (409/4084)
Receiving objects: 11% (450/4084)
Receiving objects: 12% (491/4084)
Receiving objects: 13% (531/4084)
Receiving objects: 14% (572/4084)
Receiving objects: 15% (613/4084)
Receiving objects: 16% (654/4084)
Receiving objects: 17% (695/4084)
Receiving objects: 18% (736/4084)
Receiving objects: 19% (776/4084)
Receiving objects: 20% (817/4084)
Receiving objects: 21% (858/4084)
Receiving objects: 22% (899/4084)
Receiving objects: 23% (940/4084)
Receiving objects: 24% (981/4084)
Receiving objects: 25% (1021/4084)
Receiving objects: 26% (1062/4084)
Receiving objects: 27% (1103/4084)
Receiving objects: 28% (1144/4084)
Receiving objects: 29% (1185/4084)
Receiving objects: 30% (1226/4084)
Receiving objects: 31% (1267/4084)
Receiving objects: 32% (1307/4084)
Receiving objects: 33% (1348/4084)
Receiving objects: 34% (1389/4084)
Receiving objects: 35% (1430/4084)
Receiving objects: 36% (1471/4084)
Receiving objects: 37% (1512/4084)
Receiving objects: 38% (1552/4084)
Receiving objects: 39% (1593/4084)
Receiving objects: 40% (1634/4084)
Receiving objects: 41% (1675/4084)
Receiving objects: 42% (1716/4084)
Receiving objects: 43% (1757/4084)
Receiving objects: 44% (1797/4084)
Receiving objects: 45% (1838/4084)
Receiving objects: 46% (1879/4084)
Receiving objects: 47% (1920/4084)
Receiving objects: 48% (1961/4084)
Receiving objects: 49% (2002/4084)
Receiving objects: 50% (2042/4084)
Receiving objects: 51% (2083/4084)
Receiving objects: 52% (2124/4084)
Receiving objects: 53% (2165/4084)
Receiving objects: 54% (2206/4084)
Receiving objects: 55% (2247/4084)
Receiving objects: 56% (2288/4084)
Receiving objects: 57% (2328/4084)
Receiving objects: 58% (2369/4084)
Receiving objects: 59% (2410/4084)
Receiving objects: 60% (2451/4084)
Receiving objects: 61% (2492/4084)
Receiving objects: 62% (2533/4084)
Receiving objects: 63% (2573/4084)
Receiving objects: 64% (2614/4084)
Receiving objects: 65% (2655/4084)
Receiving objects: 66% (2696/4084)
Receiving objects: 67% (2737/4084)
Receiving objects: 68% (2778/4084)
Receiving objects: 69% (2818/4084)
Receiving objects: 70% (2859/4084)
Receiving objects: 71% (2900/4084)
Receiving objects: 72% (2941/4084)
Receiving objects: 73% (2982/4084)
Receiving objects: 74% (3023/4084)
Receiving objects: 75% (3063/4084)
Receiving objects: 76% (3104/4084)
Receiving objects: 77% (3145/4084), 19.26 MiB | 38.43 MiB/s
Receiving objects: 78% (3186/4084), 19.26 MiB | 38.43 MiB/s
Receiving objects: 79% (3227/4084), 19.26 MiB | 38.43 MiB/s
Receiving objects: 80% (3268/4084), 19.26 MiB | 38.43 MiB/s
Receiving objects: 81% (3309/4084), 19.26 MiB | 38.43 MiB/s
Receiving objects: 82% (3349/4084), 19.26 MiB | 38.43 MiB/s
Receiving objects: 83% (3390/4084), 19.26 MiB | 38.43 MiB/s
Receiving objects: 84% (3431/4084), 19.26 MiB | 38.43 MiB/s
Receiving objects: 85% (3472/4084), 19.26 MiB | 38.43 MiB/s
Receiving objects: 86% (3513/4084), 19.26 MiB | 38.43 MiB/s
Receiving objects: 87% (3554/4084), 19.26 MiB | 38.43 MiB/s
Receiving objects: 88% (3594/4084), 19.26 MiB | 38.43 MiB/s
Receiving objects: 89% (3635/4084), 19.26 MiB | 38.43 MiB/s
Receiving objects: 90% (3676/4084), 19.26 MiB | 38.43 MiB/s
Receiving objects: 91% (3717/4084), 19.26 MiB | 38.43 MiB/s
Receiving objects: 92% (3758/4084), 19.26 MiB | 38.43 MiB/s
Receiving objects: 93% (3799/4084), 19.26 MiB | 38.43 MiB/s
Receiving objects: 94% (3839/4084), 19.26 MiB | 38.43 MiB/s
Receiving objects: 95% (3880/4084), 19.26 MiB | 38.43 MiB/s
Receiving objects: 96% (3921/4084), 19.26 MiB | 38.43 MiB/s
Receiving objects: 97% (3962/4084), 19.26 MiB | 38.43 MiB/s
remote: Total 4084 (delta 0), reused 0 (delta 0)[K
Receiving objects: 98% (4003/4084), 19.26 MiB | 38.43 MiB/s
Receiving objects: 99% (4044/4084), 19.26 MiB | 38.43 MiB/s
Receiving objects: 100% (4084/4084), 19.26 MiB | 38.43 MiB/s
Receiving objects: 100% (4084/4084), 23.39 MiB | 38.43 MiB/s, done.
Resolving deltas: 0% (0/3682)
Resolving deltas: 10% (369/3682)
Resolving deltas: 35% (1295/3682)
Resolving deltas: 37% (1391/3682)
Resolving deltas: 38% (1435/3682)
Resolving deltas: 42% (1558/3682)
Resolving deltas: 44% (1648/3682)
Resolving deltas: 48% (1801/3682)
Resolving deltas: 51% (1902/3682)
Resolving deltas: 53% (1973/3682)
Resolving deltas: 54% (2012/3682)
Resolving deltas: 58% (2155/3682)
Resolving deltas: 60% (2233/3682)
Resolving deltas: 63% (2352/3682)
Resolving deltas: 64% (2372/3682)
Resolving deltas: 67% (2480/3682)
Resolving deltas: 68% (2510/3682)
Resolving deltas: 72% (2675/3682)
Resolving deltas: 73% (2718/3682)
Resolving deltas: 74% (2728/3682)
Resolving deltas: 75% (2785/3682)
Resolving deltas: 76% (2815/3682)
Resolving deltas: 87% (3205/3682)
Resolving deltas: 87% (3226/3682)
Resolving deltas: 88% (3259/3682)
Resolving deltas: 89% (3313/3682)
Resolving deltas: 90% (3322/3682)
Resolving deltas: 91% (3356/3682)
Resolving deltas: 92% (3388/3682)
Resolving deltas: 93% (3429/3682)
Resolving deltas: 96% (3568/3682)
Resolving deltas: 97% (3607/3682)
Resolving deltas: 98% (3613/3682)
Resolving deltas: 99% (3648/3682)
Resolving deltas: 100% (3682/3682)
Resolving deltas: 100% (3682/3682), done.
Checking connectivity... done.
Submodule path 'okhttp-hpacktests/src/test/resources/hpack-test-case': checked out 'a5652bc2bc3d2a992f39446369fb004a72e881d4'
travis_time:end:0446ad62:start=1419896876170631851,finish=1419896878360682749,duration=2190050898
[0Ktravis_fold:end:git.submodule
[0K
[33;1mThis job is running on container-based infrastructure, which does not allow use of 'sudo', setuid and setguid executables.[0m
[33;1mSee http://docs.travis-ci.com/user/workers/container-based-infrastructure/ for details.[0m
[33;1mSetting environment variables from .travis.yml[0m
$ export CI_DEPLOY_USERNAME=[secure]
$ export CI_DEPLOY_PASSWORD=[secure]
travis_fold:start:cache.1
[0KSetting up build cache
$ export CASHER_DIR=$HOME/.casher
travis_time:start:2328dcda
[0K$ Installing caching utilities
travis_time:end:2328dcda:start=1419896880487396516,finish=1419896880568824976,duration=81428460
[0Ktravis_time:start:2dfdb92f
[0Kattempting to download cache archive
found cache
travis_time:end:2dfdb92f:start=1419896880573046041,finish=1419896881682145787,duration=1109099746
[0Ktravis_time:start:1682b530
[0Kadding /home/travis/.m2 to cache
travis_time:end:1682b530:start=1419896881685741684,finish=1419896885647064078,duration=3961322394
[0Ktravis_fold:end:cache.1
[0K$ jdk_switcher use oraclejdk8
Switching to Oracle JDK8 (java-8-oracle), JAVA_HOME will be set to /usr/lib/jvm/java-8-oracle
$ java -version
java version "1.8.0_25"
Java(TM) SE Runtime Environment (build 1.8.0_25-b17)
Java HotSpot(TM) 64-Bit Server VM (build 25.25-b02, mixed mode)
$ javac -version
javac 1.8.0_25
travis_fold:start:install
[0Ktravis_time:start:1c41052e
[0K$ mvn install -DskipTests=true -Dmaven.javadoc.skip=true -B -V
Java HotSpot(TM) 64-Bit Server VM warning: ignoring option MaxPermSize=192m; support was removed in 8.0
Apache Maven 3.2.3 (33f8c3e1027c3ddde99d3cdebad2656a31e8fdf4; 2014-08-11T20:58:10+00:00)
Maven home: /usr/local/maven
Java version: 1.8.0_25, vendor: Oracle Corporation
Java home: /usr/lib/jvm/java-8-oracle/jre
Default locale: en_US, platform encoding: UTF-8
OS name: "linux", version: "3.13.0-40-generic", arch: "amd64", family: "unix"
[INFO] Scanning for projects...
[WARNING]
[WARNING] Some problems were encountered while building the effective model for com.squareup.okhttp:okhttp-tests:jar:2.2.0-SNAPSHOT
[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-deploy-plugin is missing. @ com.squareup.okhttp:okhttp-tests:[unknown-version], /home/travis/build/square/okhttp/okhttp-tests/pom.xml, line 47, column 15
[WARNING]
[WARNING] Some problems were encountered while building the effective model for com.squareup.okhttp:benchmarks:jar:2.2.0-SNAPSHOT
[WARNING] 'build.plugins.plugin.version' for org.codehaus.mojo:exec-maven-plugin is missing. @ com.squareup.okhttp:benchmarks:[unknown-version], /home/travis/build/square/okhttp/benchmarks/pom.xml, line 74, column 15
[WARNING]
[WARNING] It is highly recommended to fix these problems because they threaten the stability of your build.
[WARNING]
[WARNING] For this reason, future Maven versions might no longer support building such malformed projects.
[WARNING]
[INFO] ------------------------------------------------------------------------
[INFO] Reactor Build Order:
[INFO]
[INFO] OkHttp (Parent)
[INFO] OkHttp
[INFO] MockWebServer
[INFO] OkHttp Apache HttpClient
[INFO] OkHttp URLConnection
[INFO] OkHttp Tests
[INFO] OkCurl
[INFO] Samples (Parent)
[INFO] Sample: Guide
[INFO] Sample: Crawler
[INFO] Sample: Simple Client
[INFO] Sample: Static Server
[INFO] Benchmarks
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building OkHttp (Parent) 2.2.0-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- maven-enforcer-plugin:1.0:enforce (enforce-maven) @ parent ---
[INFO]
[INFO] --- animal-sniffer-maven-plugin:1.11:check (default) @ parent ---
[INFO] Checking unresolved references to org.codehaus.mojo.signature:java16:1.1
[INFO]
[INFO] --- maven-checkstyle-plugin:2.10:checkstyle (default) @ parent ---
[INFO]
[INFO] --- maven-install-plugin:2.4:install (default-install) @ parent ---
[INFO] Installing /home/travis/build/square/okhttp/pom.xml to /home/travis/.m2/repository/com/squareup/okhttp/parent/2.2.0-SNAPSHOT/parent-2.2.0-SNAPSHOT.pom
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building OkHttp 2.2.0-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- maven-enforcer-plugin:1.0:enforce (enforce-maven) @ okhttp ---
[INFO]
[INFO] --- templating-maven-plugin:1.0-alpha-3:filter-sources (default) @ okhttp ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 1 resource
[INFO] Source directory: /home/travis/build/square/okhttp/okhttp/target/generated-sources/java-templates added.
[INFO]
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ okhttp ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /home/travis/build/square/okhttp/okhttp/src/main/resources
[INFO]
[INFO] --- maven-compiler-plugin:3.0:compile (default-compile) @ okhttp ---
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 79 source files to /home/travis/build/square/okhttp/okhttp/target/classes
[WARNING] /home/travis/build/square/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/Util.java: Some input files use unchecked or unsafe operations.
[WARNING] /home/travis/build/square/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/Util.java: Recompile with -Xlint:unchecked for details.
[INFO]
[INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ okhttp ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /home/travis/build/square/okhttp/okhttp/src/test/resources
[INFO]
[INFO] --- maven-compiler-plugin:3.0:testCompile (default-testCompile) @ okhttp ---
[INFO] No sources to compile
[INFO]
[INFO] --- maven-surefire-plugin:2.17:test (default-test) @ okhttp ---
[INFO] Tests are skipped.
[INFO]
[INFO] --- animal-sniffer-maven-plugin:1.11:check (default) @ okhttp ---
[INFO] Checking unresolved references to org.codehaus.mojo.signature:java16:1.1
[INFO]
[INFO] --- maven-jar-plugin:2.4:jar (default-jar) @ okhttp ---
[INFO] Building jar: /home/travis/build/square/okhttp/okhttp/target/okhttp-2.2.0-SNAPSHOT.jar
[INFO]
[INFO] --- maven-checkstyle-plugin:2.10:checkstyle (default) @ okhttp ---
[INFO] Starting audit...
Audit done.
[WARNING] Unable to locate Source XRef to link to - DISABLED
[INFO]
[INFO] --- maven-install-plugin:2.4:install (default-install) @ okhttp ---
[INFO] Installing /home/travis/build/square/okhttp/okhttp/target/okhttp-2.2.0-SNAPSHOT.jar to /home/travis/.m2/repository/com/squareup/okhttp/okhttp/2.2.0-SNAPSHOT/okhttp-2.2.0-SNAPSHOT.jar
[INFO] Installing /home/travis/build/square/okhttp/okhttp/pom.xml to /home/travis/.m2/repository/com/squareup/okhttp/okhttp/2.2.0-SNAPSHOT/okhttp-2.2.0-SNAPSHOT.pom
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building MockWebServer 2.2.0-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- maven-enforcer-plugin:1.0:enforce (enforce-maven) @ mockwebserver ---
[INFO]
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ mockwebserver ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /home/travis/build/square/okhttp/mockwebserver/src/main/resources
[INFO]
[INFO] --- maven-compiler-plugin:3.0:compile (default-compile) @ mockwebserver ---
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 10 source files to /home/travis/build/square/okhttp/mockwebserver/target/classes
[WARNING] /home/travis/build/square/okhttp/mockwebserver/src/main/java/com/squareup/okhttp/internal/SslContextBuilder.java: /home/travis/build/square/okhttp/mockwebserver/src/main/java/com/squareup/okhttp/internal/SslContextBuilder.java uses or overrides a deprecated API.
[WARNING] /home/travis/build/square/okhttp/mockwebserver/src/main/java/com/squareup/okhttp/internal/SslContextBuilder.java: Recompile with -Xlint:deprecation for details.
[INFO]
[INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ mockwebserver ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /home/travis/build/square/okhttp/mockwebserver/src/test/resources
[INFO]
[INFO] --- maven-compiler-plugin:3.0:testCompile (default-testCompile) @ mockwebserver ---
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 3 source files to /home/travis/build/square/okhttp/mockwebserver/target/test-classes
[INFO]
[INFO] --- maven-surefire-plugin:2.17:test (default-test) @ mockwebserver ---
[INFO] Tests are skipped.
[INFO]
[INFO] --- animal-sniffer-maven-plugin:1.11:check (default) @ mockwebserver ---
[INFO] Checking unresolved references to org.codehaus.mojo.signature:java16:1.1
[INFO]
[INFO] --- maven-jar-plugin:2.4:jar (default-jar) @ mockwebserver ---
[INFO] Building jar: /home/travis/build/square/okhttp/mockwebserver/target/mockwebserver-2.2.0-SNAPSHOT.jar
[INFO]
[INFO] --- maven-assembly-plugin:2.2-beta-5:single (default) @ mockwebserver ---
[INFO] META-INF/ already added, skipping
[INFO] META-INF/MANIFEST.MF already added, skipping
[INFO] META-INF/maven/ already added, skipping
[INFO] META-INF/MANIFEST.MF already added, skipping
[INFO] META-INF/ already added, skipping
[INFO] META-INF/MANIFEST.MF already added, skipping
[INFO] org/ already added, skipping
[INFO] META-INF/ already added, skipping
[INFO] META-INF/MANIFEST.MF already added, skipping
[INFO] org/ already added, skipping
[INFO] LICENSE.txt already added, skipping
[INFO] Building jar: /home/travis/build/square/okhttp/mockwebserver/target/mockwebserver-2.2.0-SNAPSHOT-jar-with-dependencies.jar
[INFO] META-INF/ already added, skipping
[INFO] META-INF/MANIFEST.MF already added, skipping
[INFO] META-INF/maven/ already added, skipping
[INFO] META-INF/MANIFEST.MF already added, skipping
[INFO] META-INF/ already added, skipping
[INFO] META-INF/MANIFEST.MF already added, skipping
[INFO] org/ already added, skipping
[INFO] META-INF/ already added, skipping
[INFO] META-INF/MANIFEST.MF already added, skipping
[INFO] org/ already added, skipping
[INFO] LICENSE.txt already added, skipping
[INFO]
[INFO] --- maven-checkstyle-plugin:2.10:checkstyle (default) @ mockwebserver ---
[INFO] Starting audit...
Audit done.
[WARNING] Unable to locate Source XRef to link to - DISABLED
[INFO]
[INFO] --- maven-install-plugin:2.4:install (default-install) @ mockwebserver ---
[INFO] Installing /home/travis/build/square/okhttp/mockwebserver/target/mockwebserver-2.2.0-SNAPSHOT.jar to /home/travis/.m2/repository/com/squareup/okhttp/mockwebserver/2.2.0-SNAPSHOT/mockwebserver-2.2.0-SNAPSHOT.jar
[INFO] Installing /home/travis/build/square/okhttp/mockwebserver/pom.xml to /home/travis/.m2/repository/com/squareup/okhttp/mockwebserver/2.2.0-SNAPSHOT/mockwebserver-2.2.0-SNAPSHOT.pom
[INFO] Installing /home/travis/build/square/okhttp/mockwebserver/target/mockwebserver-2.2.0-SNAPSHOT-jar-with-dependencies.jar to /home/travis/.m2/repository/com/squareup/okhttp/mockwebserver/2.2.0-SNAPSHOT/mockwebserver-2.2.0-SNAPSHOT-jar-with-dependencies.jar
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building OkHttp Apache HttpClient 2.2.0-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- maven-enforcer-plugin:1.0:enforce (enforce-maven) @ okhttp-apache ---
[INFO]
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ okhttp-apache ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /home/travis/build/square/okhttp/okhttp-apache/src/main/resources
[INFO]
[INFO] --- maven-compiler-plugin:3.0:compile (default-compile) @ okhttp-apache ---
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 2 source files to /home/travis/build/square/okhttp/okhttp-apache/target/classes
[WARNING] /home/travis/build/square/okhttp/okhttp-apache/src/main/java/com/squareup/okhttp/apache/OkApacheClient.java: /home/travis/build/square/okhttp/okhttp-apache/src/main/java/com/squareup/okhttp/apache/OkApacheClient.java uses or overrides a deprecated API.
[WARNING] /home/travis/build/square/okhttp/okhttp-apache/src/main/java/com/squareup/okhttp/apache/OkApacheClient.java: Recompile with -Xlint:deprecation for details.
[INFO]
[INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ okhttp-apache ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /home/travis/build/square/okhttp/okhttp-apache/src/test/resources
[INFO]
[INFO] --- maven-compiler-plugin:3.0:testCompile (default-testCompile) @ okhttp-apache ---
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 1 source file to /home/travis/build/square/okhttp/okhttp-apache/target/test-classes
[INFO]
[INFO] --- maven-surefire-plugin:2.17:test (default-test) @ okhttp-apache ---
[INFO] Tests are skipped.
[INFO]
[INFO] --- animal-sniffer-maven-plugin:1.11:check (default) @ okhttp-apache ---
[INFO] Checking unresolved references to org.codehaus.mojo.signature:java16:1.1
[INFO]
[INFO] --- maven-jar-plugin:2.4:jar (default-jar) @ okhttp-apache ---
[INFO] Building jar: /home/travis/build/square/okhttp/okhttp-apache/target/okhttp-apache-2.2.0-SNAPSHOT.jar
[INFO]
[INFO] --- maven-checkstyle-plugin:2.10:checkstyle (default) @ okhttp-apache ---
[INFO] Starting audit...
Audit done.
[WARNING] Unable to locate Source XRef to link to - DISABLED
[INFO]
[INFO] --- maven-install-plugin:2.4:install (default-install) @ okhttp-apache ---
[INFO] Installing /home/travis/build/square/okhttp/okhttp-apache/target/okhttp-apache-2.2.0-SNAPSHOT.jar to /home/travis/.m2/repository/com/squareup/okhttp/okhttp-apache/2.2.0-SNAPSHOT/okhttp-apache-2.2.0-SNAPSHOT.jar
[INFO] Installing /home/travis/build/square/okhttp/okhttp-apache/pom.xml to /home/travis/.m2/repository/com/squareup/okhttp/okhttp-apache/2.2.0-SNAPSHOT/okhttp-apache-2.2.0-SNAPSHOT.pom
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building OkHttp URLConnection 2.2.0-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- maven-enforcer-plugin:1.0:enforce (enforce-maven) @ okhttp-urlconnection ---
[INFO]
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ okhttp-urlconnection ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /home/travis/build/square/okhttp/okhttp-urlconnection/src/main/resources
[INFO]
[INFO] --- maven-compiler-plugin:3.0:compile (default-compile) @ okhttp-urlconnection ---
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 6 source files to /home/travis/build/square/okhttp/okhttp-urlconnection/target/classes
[INFO]
[INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ okhttp-urlconnection ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /home/travis/build/square/okhttp/okhttp-urlconnection/src/test/resources
[INFO]
[INFO] --- maven-compiler-plugin:3.0:testCompile (default-testCompile) @ okhttp-urlconnection ---
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 7 source files to /home/travis/build/square/okhttp/okhttp-urlconnection/target/test-classes
[WARNING] /home/travis/build/square/okhttp/okhttp-urlconnection/src/test/java/com/squareup/okhttp/internal/huc/JavaApiConverterTest.java: /home/travis/build/square/okhttp/okhttp-urlconnection/src/test/java/com/squareup/okhttp/internal/huc/JavaApiConverterTest.java uses unchecked or unsafe operations.
[WARNING] /home/travis/build/square/okhttp/okhttp-urlconnection/src/test/java/com/squareup/okhttp/internal/huc/JavaApiConverterTest.java: Recompile with -Xlint:unchecked for details.
[INFO]
[INFO] --- maven-surefire-plugin:2.17:test (default-test) @ okhttp-urlconnection ---
[INFO] Tests are skipped.
[INFO]
[INFO] --- animal-sniffer-maven-plugin:1.11:check (default) @ okhttp-urlconnection ---
[INFO] Checking unresolved references to org.codehaus.mojo.signature:java16:1.1
[INFO]
[INFO] --- maven-jar-plugin:2.4:jar (default-jar) @ okhttp-urlconnection ---
[INFO] Building jar: /home/travis/build/square/okhttp/okhttp-urlconnection/target/okhttp-urlconnection-2.2.0-SNAPSHOT.jar
[INFO]
[INFO] --- maven-checkstyle-plugin:2.10:checkstyle (default) @ okhttp-urlconnection ---
[INFO] Starting audit...
Audit done.
[WARNING] Unable to locate Source XRef to link to - DISABLED
[INFO]
[INFO] --- maven-install-plugin:2.4:install (default-install) @ okhttp-urlconnection ---
[INFO] Installing /home/travis/build/square/okhttp/okhttp-urlconnection/target/okhttp-urlconnection-2.2.0-SNAPSHOT.jar to /home/travis/.m2/repository/com/squareup/okhttp/okhttp-urlconnection/2.2.0-SNAPSHOT/okhttp-urlconnection-2.2.0-SNAPSHOT.jar
[INFO] Installing /home/travis/build/square/okhttp/okhttp-urlconnection/pom.xml to /home/travis/.m2/repository/com/squareup/okhttp/okhttp-urlconnection/2.2.0-SNAPSHOT/okhttp-urlconnection-2.2.0-SNAPSHOT.pom
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building OkHttp Tests 2.2.0-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- maven-enforcer-plugin:1.0:enforce (enforce-maven) @ okhttp-tests ---
[INFO]
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ okhttp-tests ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /home/travis/build/square/okhttp/okhttp-tests/src/main/resources
[INFO]
[INFO] --- maven-compiler-plugin:3.0:compile (default-compile) @ okhttp-tests ---
[INFO] No sources to compile
[INFO]
[INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ okhttp-tests ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /home/travis/build/square/okhttp/okhttp-tests/src/test/resources
[INFO]
[INFO] --- maven-compiler-plugin:3.0:testCompile (default-testCompile) @ okhttp-tests ---
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 60 source files to /home/travis/build/square/okhttp/okhttp-tests/target/test-classes
[WARNING] /home/travis/build/square/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/HttpOverSpdyTest.java: Some input files use or override a deprecated API.
[WARNING] /home/travis/build/square/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/HttpOverSpdyTest.java: Recompile with -Xlint:deprecation for details.
[INFO]
[INFO] --- maven-surefire-plugin:2.17:test (default-test) @ okhttp-tests ---
[INFO] Tests are skipped.
[INFO]
[INFO] --- animal-sniffer-maven-plugin:1.11:check (default) @ okhttp-tests ---
[INFO] Checking unresolved references to org.codehaus.mojo.signature:java16:1.1
[INFO]
[INFO] --- maven-jar-plugin:2.4:jar (default-jar) @ okhttp-tests ---
[WARNING] JAR will be empty - no content was marked for inclusion!
[INFO] Building jar: /home/travis/build/square/okhttp/okhttp-tests/target/okhttp-tests-2.2.0-SNAPSHOT.jar
[INFO]
[INFO] --- maven-checkstyle-plugin:2.10:checkstyle (default) @ okhttp-tests ---
[INFO]
[INFO] --- maven-install-plugin:2.4:install (default-install) @ okhttp-tests ---
[INFO] Installing /home/travis/build/square/okhttp/okhttp-tests/target/okhttp-tests-2.2.0-SNAPSHOT.jar to /home/travis/.m2/repository/com/squareup/okhttp/okhttp-tests/2.2.0-SNAPSHOT/okhttp-tests-2.2.0-SNAPSHOT.jar
[INFO] Installing /home/travis/build/square/okhttp/okhttp-tests/pom.xml to /home/travis/.m2/repository/com/squareup/okhttp/okhttp-tests/2.2.0-SNAPSHOT/okhttp-tests-2.2.0-SNAPSHOT.pom
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building OkCurl 2.2.0-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- maven-enforcer-plugin:1.0:enforce (enforce-maven) @ okcurl ---
[INFO]
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ okcurl ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 1 resource
[INFO]
[INFO] --- maven-compiler-plugin:3.0:compile (default-compile) @ okcurl ---
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 1 source file to /home/travis/build/square/okhttp/okcurl/target/classes
[INFO]
[INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ okcurl ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /home/travis/build/square/okhttp/okcurl/src/test/resources
[INFO]
[INFO] --- maven-compiler-plugin:3.0:testCompile (default-testCompile) @ okcurl ---
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 1 source file to /home/travis/build/square/okhttp/okcurl/target/test-classes
[INFO]
[INFO] --- maven-surefire-plugin:2.17:test (default-test) @ okcurl ---
[INFO] Tests are skipped.
[INFO]
[INFO] --- animal-sniffer-maven-plugin:1.11:check (default) @ okcurl ---
[INFO] Checking unresolved references to org.codehaus.mojo.signature:java16:1.1
[INFO]
[INFO] --- maven-jar-plugin:2.4:jar (default-jar) @ okcurl ---
[INFO] Building jar: /home/travis/build/square/okhttp/okcurl/target/okcurl-2.2.0-SNAPSHOT.jar
[INFO]
[INFO] --- maven-assembly-plugin:2.2-beta-5:single (default) @ okcurl ---
[INFO] META-INF/ already added, skipping
[INFO] META-INF/MANIFEST.MF already added, skipping
[INFO] META-INF/maven/ already added, skipping
[INFO] META-INF/MANIFEST.MF already added, skipping
[INFO] META-INF/ already added, skipping
[INFO] META-INF/MANIFEST.MF already added, skipping
[INFO] META-INF/maven/ already added, skipping
[INFO] META-INF/MANIFEST.MF already added, skipping
[INFO] META-INF/ already added, skipping
[INFO] META-INF/maven/ already added, skipping
[INFO] com/ already added, skipping
[INFO] Building jar: /home/travis/build/square/okhttp/okcurl/target/okcurl-2.2.0-SNAPSHOT-jar-with-dependencies.jar
[INFO] META-INF/ already added, skipping
[INFO] META-INF/MANIFEST.MF already added, skipping
[INFO] META-INF/maven/ already added, skipping
[INFO] META-INF/MANIFEST.MF already added, skipping
[INFO] META-INF/ already added, skipping
[INFO] META-INF/MANIFEST.MF already added, skipping
[INFO] META-INF/maven/ already added, skipping
[INFO] META-INF/MANIFEST.MF already added, skipping
[INFO] META-INF/ already added, skipping
[INFO] META-INF/maven/ already added, skipping
[INFO] com/ already added, skipping
[INFO]