-
Notifications
You must be signed in to change notification settings - Fork 0
/
automated_builds.log
1317 lines (1141 loc) · 50.7 KB
/
automated_builds.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
BUILD 1534223519 (Tue Aug 14 13:11:59 HKT 2018)
> Running "installDist" in tgm-main-core...
:clean
BUILD SUCCESSFUL in 0s
1 actionable task: 1 executed
:compileJava
Download https://jitpack.io/com/github/tg-monitor/tgm-ipc-core/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-corefacade/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-backend/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-telegram/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-notification/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-monitor/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-matching/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-servicelocator-instances/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-ipc-api/master-SNAPSHOT/maven-metadata.xml
:processResources
:classes
:jar
:startScripts
:installDist
BUILD SUCCESSFUL in 22s
5 actionable tasks: 5 executed
> Components in tgm-main-core:
tgm-backend master-SNAPSHOT
tgm-corefacade master-SNAPSHOT
tgm-entities 0.0.2
tgm-ipc-api master-SNAPSHOT
tgm-ipc-core master-SNAPSHOT
tgm-logincodeprompt 0.0.1
tgm-main-core 0.0.1
tgm-matching master-SNAPSHOT
tgm-monitor master-SNAPSHOT
tgm-notification master-SNAPSHOT
tgm-servicelocator 0.0.1
tgm-servicelocator-instances master-SNAPSHOT
tgm-telegram master-SNAPSHOT
> Copying tgm-main-core/build/install/tgm-main-core to bundle-core...
> Building Docker image weibeld/tg-monitor:core-0.0.1 in bundle-core...
Sending build context to Docker daemon 3.429MB
Step 1/4 : FROM weibeld/tg-monitor:base
---> e0c521fc96cf
Step 2/4 : WORKDIR /root
---> Using cache
---> 59ea23e5a315
Step 3/4 : COPY tgm-main-core .
---> c1a050185f27
Step 4/4 : CMD ./bin/tgm-main-core
---> Running in e50f0a7c89f6
Removing intermediate container e50f0a7c89f6
---> 86518b0e1f3c
Successfully built 86518b0e1f3c
Successfully tagged weibeld/tg-monitor:core-0.0.1
> Pushing Docker image weibeld/tg-monitor:core-0.0.1 to Docker Hub...
The push refers to repository [docker.io/weibeld/tg-monitor]
8d667e103575: Preparing
3950338e1e6a: Preparing
73046094a9b8: Preparing
73046094a9b8: Layer already exists
3950338e1e6a: Layer already exists
8d667e103575: Pushed
core-0.0.1: digest: sha256:98953bf6030f90457d3a0ba0c96179266c80dba8c0a978056f28e442c8f8ddbc size: 951
BUILD 1534226294 (Tue Aug 14 13:58:14 HKT 2018)
> Running "installDist" in tgm-main-core...
Starting a Gradle Daemon, 1 busy and 1 stopped Daemons could not be reused, use --status for details
:clean
BUILD SUCCESSFUL in 7s
1 actionable task: 1 executed
:compileJava
Download https://jitpack.io/com/github/tg-monitor/tgm-ipc-core/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-corefacade/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-backend/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-telegram/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-notification/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-monitor/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-matching/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-servicelocator-instances/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-ipc-api/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-ipc-core/master-SNAPSHOT/tgm-ipc-core-master-3d0a576803-1.jar
:processResources
:classes
:jar
:startScripts
:installDist
BUILD SUCCESSFUL in 45s
5 actionable tasks: 5 executed
> Components in tgm-main-core:
tgm-backend master-SNAPSHOT
tgm-corefacade master-SNAPSHOT
tgm-entities 0.0.2
tgm-ipc-api master-SNAPSHOT
tgm-ipc-core master-SNAPSHOT
tgm-logincodeprompt 0.0.1
tgm-main-core 0.0.1
tgm-matching master-SNAPSHOT
tgm-monitor master-SNAPSHOT
tgm-notification master-SNAPSHOT
tgm-servicelocator 0.0.1
tgm-servicelocator-instances master-SNAPSHOT
tgm-telegram master-SNAPSHOT
> Copying tgm-main-core/build/install/tgm-main-core to bundle-core...
> Building Docker image weibeld/tg-monitor:core-0.0.1 in bundle-core...
Sending build context to Docker daemon 6.484MB
Step 1/4 : FROM weibeld/tg-monitor:base
---> e0c521fc96cf
Step 2/4 : WORKDIR /root
---> Using cache
---> 59ea23e5a315
Step 3/4 : COPY tgm-main-core .
---> 2b4291600ec2
Step 4/4 : CMD ./bin/tgm-main-core
---> Running in fb514bacc0be
Removing intermediate container fb514bacc0be
---> 664af829734d
Successfully built 664af829734d
Successfully tagged weibeld/tg-monitor:core-0.0.1
> Pushing Docker image weibeld/tg-monitor:core-0.0.1 to Docker Hub...
The push refers to repository [docker.io/weibeld/tg-monitor]
8c0dbf11d88c: Preparing
3950338e1e6a: Preparing
73046094a9b8: Preparing
73046094a9b8: Layer already exists
3950338e1e6a: Layer already exists
8c0dbf11d88c: Pushed
core-0.0.1: digest: sha256:dfbcdf8475dac5836ffc941c2b81b6ccc844c37c9c1817ac41413743e10e565e size: 951
BUILD 1534226875 (Tue Aug 14 14:07:55 HKT 2018)
> Running "installDist" in tgm-main-core...
Starting a Gradle Daemon, 1 busy and 2 stopped Daemons could not be reused, use --status for details
:clean
BUILD SUCCESSFUL in 6s
1 actionable task: 1 executed
:compileJava
Download https://jitpack.io/com/github/tg-monitor/tgm-ipc-core/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-corefacade/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-backend/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-telegram/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-notification/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-monitor/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-matching/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-servicelocator-instances/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-ipc-api/master-SNAPSHOT/maven-metadata.xml
:processResources
:classes
:jar
:startScripts
:installDist
BUILD SUCCESSFUL in 25s
5 actionable tasks: 5 executed
> Components in tgm-main-core:
tgm-backend master-SNAPSHOT
tgm-corefacade master-SNAPSHOT
tgm-entities 0.0.2
tgm-ipc-api master-SNAPSHOT
tgm-ipc-core master-SNAPSHOT
tgm-logincodeprompt 0.0.1
tgm-main-core 0.0.1
tgm-matching master-SNAPSHOT
tgm-monitor master-SNAPSHOT
tgm-notification master-SNAPSHOT
tgm-servicelocator 0.0.1
tgm-servicelocator-instances master-SNAPSHOT
tgm-telegram master-SNAPSHOT
> Copying tgm-main-core/build/install/tgm-main-core to bundle-core...
> Building Docker image weibeld/tg-monitor:core-0.0.1 in bundle-core...
Sending build context to Docker daemon 6.514MB
Step 1/4 : FROM weibeld/tg-monitor:base
---> e0c521fc96cf
Step 2/4 : WORKDIR /root
---> Using cache
---> 59ea23e5a315
Step 3/4 : COPY tgm-main-core .
---> 4c6fd26b5602
Step 4/4 : CMD ./bin/tgm-main-core
---> Running in 486aa4949807
Removing intermediate container 486aa4949807
---> e1a6d8e4a51d
Successfully built e1a6d8e4a51d
Successfully tagged weibeld/tg-monitor:core-0.0.1
> Pushing Docker image weibeld/tg-monitor:core-0.0.1 to Docker Hub...
The push refers to repository [docker.io/weibeld/tg-monitor]
a07cb714791d: Preparing
3950338e1e6a: Preparing
73046094a9b8: Preparing
73046094a9b8: Layer already exists
3950338e1e6a: Layer already exists
a07cb714791d: Pushed
core-0.0.1: digest: sha256:ccf520f73412b6f44e9121e91e938c3f7a77471faa0a32b11cbdc0daf84590d0 size: 951
BUILD 1534228579 (Tue Aug 14 14:36:19 HKT 2018)
> Running "installDist" in tgm-main-core...
:clean
BUILD SUCCESSFUL in 1s
1 actionable task: 1 executed
:compileJava
Download https://jitpack.io/com/github/tg-monitor/tgm-ipc-core/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-corefacade/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-backend/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-telegram/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-notification/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-monitor/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-matching/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-servicelocator-instances/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-ipc-api/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-ipc-core/master-SNAPSHOT/tgm-ipc-core-master-4cce92b3e0-1.jar
:processResources
:classes
:jar
:startScripts
:installDist
BUILD SUCCESSFUL in 41s
5 actionable tasks: 5 executed
> Components in tgm-main-core:
tgm-backend master-SNAPSHOT
tgm-corefacade master-SNAPSHOT
tgm-entities 0.0.2
tgm-ipc-api master-SNAPSHOT
tgm-ipc-core master-SNAPSHOT
tgm-logincodeprompt 0.0.1
tgm-main-core 0.0.1
tgm-matching master-SNAPSHOT
tgm-monitor master-SNAPSHOT
tgm-notification master-SNAPSHOT
tgm-servicelocator 0.0.1
tgm-servicelocator-instances master-SNAPSHOT
tgm-telegram master-SNAPSHOT
> Copying tgm-main-core/build/install/tgm-main-core to bundle-core...
> Building Docker image weibeld/tg-monitor:core-0.0.1 in bundle-core...
Sending build context to Docker daemon 6.531MB
Step 1/4 : FROM weibeld/tg-monitor:base
---> e0c521fc96cf
Step 2/4 : WORKDIR /root
---> Using cache
---> 59ea23e5a315
Step 3/4 : COPY tgm-main-core .
---> d94e948d47b6
Step 4/4 : CMD ./bin/tgm-main-core
---> Running in afdc30c135b3
Removing intermediate container afdc30c135b3
---> 0ce6f64a7997
Successfully built 0ce6f64a7997
Successfully tagged weibeld/tg-monitor:core-0.0.1
> Pushing Docker image weibeld/tg-monitor:core-0.0.1 to Docker Hub...
The push refers to repository [docker.io/weibeld/tg-monitor]
621dc8079d3c: Preparing
3950338e1e6a: Preparing
73046094a9b8: Preparing
3950338e1e6a: Layer already exists
73046094a9b8: Layer already exists
621dc8079d3c: Pushed
core-0.0.1: digest: sha256:3d65e2a742361818717c60234527e04404cf748ed02dc2b539bd887855a044ee size: 951
BUILD 1534229863 (Tue Aug 14 14:57:43 HKT 2018)
> Running "installDist" in tgm-main-core...
:clean
BUILD SUCCESSFUL in 1s
1 actionable task: 1 executed
:compileJava
Download https://jitpack.io/com/github/tg-monitor/tgm-ipc-core/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-corefacade/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-backend/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-telegram/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-notification/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-monitor/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-matching/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-servicelocator-instances/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-ipc-api/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-ipc-core/master-SNAPSHOT/tgm-ipc-core-master-023cd1333b-1.jar
:processResources
:classes
:jar
:startScripts
:installDist
BUILD SUCCESSFUL in 44s
5 actionable tasks: 5 executed
> Components in tgm-main-core:
tgm-backend master-SNAPSHOT
tgm-corefacade master-SNAPSHOT
tgm-entities 0.0.2
tgm-ipc-api master-SNAPSHOT
tgm-ipc-core master-SNAPSHOT
tgm-logincodeprompt 0.0.1
tgm-main-core 0.0.1
tgm-matching master-SNAPSHOT
tgm-monitor master-SNAPSHOT
tgm-notification master-SNAPSHOT
tgm-servicelocator 0.0.1
tgm-servicelocator-instances master-SNAPSHOT
tgm-telegram master-SNAPSHOT
> Copying tgm-main-core/build/install/tgm-main-core to bundle-core...
> Building Docker image weibeld/tg-monitor:core-0.0.1 in bundle-core...
Sending build context to Docker daemon 6.559MB
Step 1/4 : FROM weibeld/tg-monitor:base
---> e0c521fc96cf
Step 2/4 : WORKDIR /root
---> Using cache
---> 59ea23e5a315
Step 3/4 : COPY tgm-main-core .
---> 9f9f85873b41
Step 4/4 : CMD ./bin/tgm-main-core
---> Running in 87c676d9d02a
Removing intermediate container 87c676d9d02a
---> c6807c75d6cd
Successfully built c6807c75d6cd
Successfully tagged weibeld/tg-monitor:core-0.0.1
> Pushing Docker image weibeld/tg-monitor:core-0.0.1 to Docker Hub...
The push refers to repository [docker.io/weibeld/tg-monitor]
77ed9c84c3f2: Preparing
3950338e1e6a: Preparing
73046094a9b8: Preparing
73046094a9b8: Layer already exists
3950338e1e6a: Layer already exists
77ed9c84c3f2: Pushed
core-0.0.1: digest: sha256:4b51bc27b7f52517a94be531aa5bd4176377d774058de20e1158ee8f58e3c6b8 size: 951
BUILD 1534230343 (Tue Aug 14 15:05:43 HKT 2018)
> Running "installDist" in tgm-main-core...
:clean
BUILD SUCCESSFUL in 1s
1 actionable task: 1 executed
:compileJava
Download https://jitpack.io/com/github/tg-monitor/tgm-ipc-core/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-ipc-core/master-SNAPSHOT/tgm-ipc-core-master-abdf890544-1.pom
Download https://jitpack.io/com/github/tg-monitor/tgm-corefacade/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-backend/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-telegram/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-notification/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-monitor/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-matching/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-servicelocator-instances/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-ipc-api/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-ipc-core/master-SNAPSHOT/tgm-ipc-core-master-abdf890544-1.jar
:processResources
:classes
:jar
:startScripts
:installDist
BUILD SUCCESSFUL in 46s
5 actionable tasks: 5 executed
> Components in tgm-main-core:
tgm-backend master-SNAPSHOT
tgm-corefacade master-SNAPSHOT
tgm-entities 0.0.2
tgm-ipc-api master-SNAPSHOT
tgm-ipc-core master-SNAPSHOT
tgm-logincodeprompt 0.0.1
tgm-main-core 0.0.1
tgm-matching master-SNAPSHOT
tgm-monitor master-SNAPSHOT
tgm-notification master-SNAPSHOT
tgm-servicelocator 0.0.1
tgm-servicelocator-instances master-SNAPSHOT
tgm-telegram master-SNAPSHOT
> Copying tgm-main-core/build/install/tgm-main-core to bundle-core...
> Building Docker image weibeld/tg-monitor:core-0.0.1 in bundle-core...
Sending build context to Docker daemon 6.588MB
Step 1/4 : FROM weibeld/tg-monitor:base
---> e0c521fc96cf
Step 2/4 : WORKDIR /root
---> Using cache
---> 59ea23e5a315
Step 3/4 : COPY tgm-main-core .
---> 8635e22a9b1b
Step 4/4 : CMD ./bin/tgm-main-core
---> Running in acf7e815f2c8
Removing intermediate container acf7e815f2c8
---> 8a648aa29314
Successfully built 8a648aa29314
Successfully tagged weibeld/tg-monitor:core-0.0.1
> Pushing Docker image weibeld/tg-monitor:core-0.0.1 to Docker Hub...
The push refers to repository [docker.io/weibeld/tg-monitor]
dad8ab1fb97d: Preparing
3950338e1e6a: Preparing
73046094a9b8: Preparing
73046094a9b8: Layer already exists
3950338e1e6a: Layer already exists
dad8ab1fb97d: Pushed
core-0.0.1: digest: sha256:8b45721a8c7ff3efbad953eaec8390d1bf1f8efd33171a9c2e47483ae2790575 size: 951
BUILD 1534232781 (Tue Aug 14 15:46:21 HKT 2018)
> Running "installDist" in tgm-main-core...
Starting a Gradle Daemon, 1 busy Daemon could not be reused, use --status for details
:clean
BUILD SUCCESSFUL in 7s
1 actionable task: 1 executed
:compileJava
Download https://jitpack.io/com/github/tg-monitor/tgm-ipc-core/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-corefacade/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-backend/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-telegram/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-notification/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-monitor/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-matching/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-servicelocator-instances/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-ipc-api/master-SNAPSHOT/maven-metadata.xml
:processResources
:classes
:jar
:startScripts
:installDist
BUILD SUCCESSFUL in 28s
5 actionable tasks: 5 executed
> Components in tgm-main-core:
tgm-backend master-SNAPSHOT
tgm-corefacade master-SNAPSHOT
tgm-entities 0.0.2
tgm-ipc-api master-SNAPSHOT
tgm-ipc-core master-SNAPSHOT
tgm-logincodeprompt 0.0.1
tgm-main-core 0.0.1
tgm-matching master-SNAPSHOT
tgm-monitor master-SNAPSHOT
tgm-notification master-SNAPSHOT
tgm-servicelocator 0.0.1
tgm-servicelocator-instances master-SNAPSHOT
tgm-telegram master-SNAPSHOT
> Copying tgm-main-core/build/install/tgm-main-core to bundle-core...
> Building Docker image weibeld/tg-monitor:core-0.0.1 in bundle-core...
Sending build context to Docker daemon 6.617MB
Step 1/4 : FROM weibeld/tg-monitor:base
---> e0c521fc96cf
Step 2/4 : WORKDIR /root
---> Using cache
---> 59ea23e5a315
Step 3/4 : COPY tgm-main-core .
---> ee6d76405486
Step 4/4 : CMD ./bin/tgm-main-core
---> Running in 085b4a9044e6
Removing intermediate container 085b4a9044e6
---> 6eeb24c30f13
Successfully built 6eeb24c30f13
Successfully tagged weibeld/tg-monitor:core-0.0.1
> Pushing Docker image weibeld/tg-monitor:core-0.0.1 to Docker Hub...
The push refers to repository [docker.io/weibeld/tg-monitor]
37dce4ef214d: Preparing
3950338e1e6a: Preparing
73046094a9b8: Preparing
3950338e1e6a: Layer already exists
73046094a9b8: Layer already exists
37dce4ef214d: Pushed
core-0.0.1: digest: sha256:f7584bc0e84aec501f370aa15d46162dfd3ca7575b1b3892d12a8b2d7026c25a size: 951
BUILD 1534233810 (Tue Aug 14 16:03:30 HKT 2018)
> Running "installDist" in tgm-main-core...
:clean
BUILD SUCCESSFUL in 1s
1 actionable task: 1 executed
:compileJava FAILED
FAILURE: Build failed with an exception.
* What went wrong:
Could not resolve all files for configuration ':compileClasspath'.
> Could not resolve com.github.tg-monitor:tgm-ipc-core:master-SNAPSHOT.
Required by:
project :
> Could not resolve com.github.tg-monitor:tgm-ipc-core:master-SNAPSHOT.
> Unable to load Maven meta-data from https://jitpack.io/com/github/tg-monitor/tgm-ipc-core/master-SNAPSHOT/maven-metadata.xml.
> Could not HEAD 'https://jitpack.io/com/github/tg-monitor/tgm-ipc-core/master-SNAPSHOT/maven-metadata.xml'.
> Read timed out
> Could not resolve com.github.tg-monitor:tgm-corefacade:master-SNAPSHOT.
Required by:
project :
> Skipped due to earlier error
> Could not resolve com.github.tg-monitor:tgm-backend:master-SNAPSHOT.
Required by:
project :
> Skipped due to earlier error
> Could not resolve com.github.tg-monitor:tgm-telegram:master-SNAPSHOT.
Required by:
project :
> Skipped due to earlier error
> Could not resolve com.github.tg-monitor:tgm-notification:master-SNAPSHOT.
Required by:
project :
> Skipped due to earlier error
> Could not resolve com.github.tg-monitor:tgm-monitor:master-SNAPSHOT.
Required by:
project :
> Skipped due to earlier error
> Could not resolve com.github.tg-monitor:tgm-matching:master-SNAPSHOT.
Required by:
project :
> Skipped due to earlier error
> Could not resolve com.github.tg-monitor:tgm-servicelocator-instances:master-SNAPSHOT.
Required by:
project :
> Skipped due to earlier error
* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.
* Get more help at https://help.gradle.org
BUILD FAILED in 40s
1 actionable task: 1 executed
BUILD 1534233889 (Tue Aug 14 16:04:49 HKT 2018)
> Running "installDist" in tgm-main-core...
:clean UP-TO-DATE
BUILD SUCCESSFUL in 0s
1 actionable task: 1 up-to-date
:compileJava
Download https://jitpack.io/com/github/tg-monitor/tgm-ipc-core/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-corefacade/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-backend/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-telegram/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-notification/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-monitor/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-matching/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-servicelocator-instances/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-ipc-api/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-ipc-core/master-SNAPSHOT/tgm-ipc-core-master-4d783735a7-1.jar
:processResources
:classes
:jar
:startScripts
:installDist
BUILD SUCCESSFUL in 29s
5 actionable tasks: 5 executed
> Components in tgm-main-core:
tgm-backend master-SNAPSHOT
tgm-corefacade master-SNAPSHOT
tgm-entities 0.0.2
tgm-ipc-api master-SNAPSHOT
tgm-ipc-core master-SNAPSHOT
tgm-logincodeprompt 0.0.1
tgm-main-core 0.0.1
tgm-matching master-SNAPSHOT
tgm-monitor master-SNAPSHOT
tgm-notification master-SNAPSHOT
tgm-servicelocator 0.0.1
tgm-servicelocator-instances master-SNAPSHOT
tgm-telegram master-SNAPSHOT
> Copying tgm-main-core/build/install/tgm-main-core to bundle-core...
> Building Docker image weibeld/tg-monitor:core-0.0.1 in bundle-core...
Sending build context to Docker daemon 6.637MB
Step 1/4 : FROM weibeld/tg-monitor:base
---> e0c521fc96cf
Step 2/4 : WORKDIR /root
---> Using cache
---> 59ea23e5a315
Step 3/4 : COPY tgm-main-core .
---> f769af57bad9
Step 4/4 : CMD ./bin/tgm-main-core
---> Running in e9e0600d308e
Removing intermediate container e9e0600d308e
---> 23e4e219e94f
Successfully built 23e4e219e94f
Successfully tagged weibeld/tg-monitor:core-0.0.1
> Pushing Docker image weibeld/tg-monitor:core-0.0.1 to Docker Hub...
The push refers to repository [docker.io/weibeld/tg-monitor]
ee65cbf00206: Preparing
3950338e1e6a: Preparing
73046094a9b8: Preparing
73046094a9b8: Layer already exists
3950338e1e6a: Layer already exists
ee65cbf00206: Pushed
core-0.0.1: digest: sha256:98337487d4bb8a3f46d6bc7bfd0653648a80c3c0d05ae64ff5cb13117c837258 size: 951
BUILD 1534234430 (Tue Aug 14 16:13:50 HKT 2018)
> Running "installDist" in tgm-main-core...
:clean
BUILD SUCCESSFUL in 1s
1 actionable task: 1 executed
:compileJava FAILED
FAILURE: Build failed with an exception.
* What went wrong:
Could not resolve all files for configuration ':compileClasspath'.
> Could not resolve com.github.tg-monitor:tgm-ipc-core:master-SNAPSHOT.
Required by:
project :
> Could not resolve com.github.tg-monitor:tgm-ipc-core:master-SNAPSHOT.
> Unable to load Maven meta-data from https://jitpack.io/com/github/tg-monitor/tgm-ipc-core/master-SNAPSHOT/maven-metadata.xml.
> Could not HEAD 'https://jitpack.io/com/github/tg-monitor/tgm-ipc-core/master-SNAPSHOT/maven-metadata.xml'.
> Read timed out
> Could not resolve com.github.tg-monitor:tgm-corefacade:master-SNAPSHOT.
Required by:
project :
> Skipped due to earlier error
> Could not resolve com.github.tg-monitor:tgm-backend:master-SNAPSHOT.
Required by:
project :
> Skipped due to earlier error
> Could not resolve com.github.tg-monitor:tgm-telegram:master-SNAPSHOT.
Required by:
project :
> Skipped due to earlier error
> Could not resolve com.github.tg-monitor:tgm-notification:master-SNAPSHOT.
Required by:
project :
> Skipped due to earlier error
> Could not resolve com.github.tg-monitor:tgm-monitor:master-SNAPSHOT.
Required by:
project :
> Skipped due to earlier error
> Could not resolve com.github.tg-monitor:tgm-matching:master-SNAPSHOT.
Required by:
project :
> Skipped due to earlier error
> Could not resolve com.github.tg-monitor:tgm-servicelocator-instances:master-SNAPSHOT.
Required by:
project :
> Skipped due to earlier error
* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.
* Get more help at https://help.gradle.org
BUILD FAILED in 43s
1 actionable task: 1 executed
BUILD 1534234494 (Tue Aug 14 16:14:54 HKT 2018)
> Running "installDist" in tgm-main-core...
:clean UP-TO-DATE
BUILD SUCCESSFUL in 0s
1 actionable task: 1 up-to-date
:compileJava
Download https://jitpack.io/com/github/tg-monitor/tgm-ipc-core/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-corefacade/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-backend/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-telegram/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-notification/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-monitor/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-matching/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-servicelocator-instances/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-ipc-api/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-ipc-core/master-SNAPSHOT/tgm-ipc-core-master-5520ded7a5-1.jar
:processResources
:classes
:jar
:startScripts
:installDist
BUILD SUCCESSFUL in 37s
5 actionable tasks: 5 executed
> Components in tgm-main-core:
tgm-backend master-SNAPSHOT
tgm-corefacade master-SNAPSHOT
tgm-entities 0.0.2
tgm-ipc-api master-SNAPSHOT
tgm-ipc-core master-SNAPSHOT
tgm-logincodeprompt 0.0.1
tgm-main-core 0.0.1
tgm-matching master-SNAPSHOT
tgm-monitor master-SNAPSHOT
tgm-notification master-SNAPSHOT
tgm-servicelocator 0.0.1
tgm-servicelocator-instances master-SNAPSHOT
tgm-telegram master-SNAPSHOT
> Copying tgm-main-core/build/install/tgm-main-core to bundle-core...
> Building Docker image weibeld/tg-monitor:core-0.0.1 in bundle-core...
Sending build context to Docker daemon 6.668MB
Step 1/4 : FROM weibeld/tg-monitor:base
---> e0c521fc96cf
Step 2/4 : WORKDIR /root
---> Using cache
---> 59ea23e5a315
Step 3/4 : COPY tgm-main-core .
---> 9f1a9260a14d
Step 4/4 : CMD ./bin/tgm-main-core
---> Running in a6cb5fe89f7f
Removing intermediate container a6cb5fe89f7f
---> e3c7bdf9a217
Successfully built e3c7bdf9a217
Successfully tagged weibeld/tg-monitor:core-0.0.1
> Pushing Docker image weibeld/tg-monitor:core-0.0.1 to Docker Hub...
The push refers to repository [docker.io/weibeld/tg-monitor]
87da27f32a39: Preparing
3950338e1e6a: Preparing
73046094a9b8: Preparing
73046094a9b8: Layer already exists
3950338e1e6a: Layer already exists
87da27f32a39: Pushed
core-0.0.1: digest: sha256:99ed659304c96ee6d260b76327d6175f002af9a830d0066339edf8ad18967bdb size: 951
BUILD 1534235154 (Tue Aug 14 16:25:54 HKT 2018)
> Running "installDist" in tgm-main-core...
:clean
BUILD SUCCESSFUL in 1s
1 actionable task: 1 executed
:compileJava
Download https://jitpack.io/com/github/tg-monitor/tgm-ipc-core/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-corefacade/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-backend/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-telegram/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-notification/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-monitor/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-matching/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-servicelocator-instances/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-ipc-api/master-SNAPSHOT/maven-metadata.xml
:processResources
:classes
:jar
:startScripts
:installDist
BUILD SUCCESSFUL in 25s
5 actionable tasks: 5 executed
> Components in tgm-main-core:
tgm-backend master-SNAPSHOT
tgm-corefacade master-SNAPSHOT
tgm-entities 0.0.2
tgm-ipc-api master-SNAPSHOT
tgm-ipc-core master-SNAPSHOT
tgm-logincodeprompt 0.0.1
tgm-main-core 0.0.1
tgm-matching master-SNAPSHOT
tgm-monitor master-SNAPSHOT
tgm-notification master-SNAPSHOT
tgm-servicelocator 0.0.1
tgm-servicelocator-instances master-SNAPSHOT
tgm-telegram master-SNAPSHOT
> Copying tgm-main-core/build/install/tgm-main-core to bundle-core...
> Building Docker image weibeld/tg-monitor:core-0.0.1 in bundle-core...
Sending build context to Docker daemon 6.698MB
Step 1/4 : FROM weibeld/tg-monitor:base
---> e0c521fc96cf
Step 2/4 : WORKDIR /root
---> Using cache
---> 59ea23e5a315
Step 3/4 : COPY tgm-main-core .
---> 83eaf47b492d
Step 4/4 : CMD ./bin/tgm-main-core
---> Running in 4195c47fdd98
Removing intermediate container 4195c47fdd98
---> 073750836174
Successfully built 073750836174
Successfully tagged weibeld/tg-monitor:core-0.0.1
> Pushing Docker image weibeld/tg-monitor:core-0.0.1 to Docker Hub...
The push refers to repository [docker.io/weibeld/tg-monitor]
b40ee2e062c4: Preparing
3950338e1e6a: Preparing
73046094a9b8: Preparing
73046094a9b8: Layer already exists
3950338e1e6a: Layer already exists
b40ee2e062c4: Pushed
core-0.0.1: digest: sha256:4584869fd35a3ce6f86cde7176346211d630bc97b7c3132d16740720bc3180ec size: 951
BUILD 1534252154 (Tue Aug 14 21:09:14 HKT 2018)
> Running "installDist" in tgm-main-core...
:clean
BUILD SUCCESSFUL in 1s
1 actionable task: 1 executed
:compileJava
Download https://jitpack.io/com/github/tg-monitor/tgm-ipc-core/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-corefacade/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-corefacade/master-SNAPSHOT/tgm-corefacade-master-0.0.1-gea9f79c-9.pom
Download https://jitpack.io/com/github/tg-monitor/tgm-backend/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-telegram/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-notification/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-monitor/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-matching/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-servicelocator-instances/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-ipc-api/master-SNAPSHOT/maven-metadata.xml
:processResources
:classes
:jar
:startScripts
:installDist
BUILD SUCCESSFUL in 41s
5 actionable tasks: 5 executed
> Components in tgm-main-core:
tgm-backend master-SNAPSHOT
tgm-corefacade master-SNAPSHOT
tgm-entities 0.0.2
tgm-ipc-api master-SNAPSHOT
tgm-ipc-core master-SNAPSHOT
tgm-logincodeprompt 0.0.1
tgm-main-core 0.0.1
tgm-matching master-SNAPSHOT
tgm-monitor master-SNAPSHOT
tgm-notification master-SNAPSHOT
tgm-servicelocator 0.0.1
tgm-servicelocator-instances master-SNAPSHOT
tgm-telegram master-SNAPSHOT
> Copying tgm-main-core/build/install/tgm-main-core to bundle-core...
> Building Docker image weibeld/tg-monitor:core-0.0.1 in bundle-core...
Sending build context to Docker daemon 6.715MB
Step 1/4 : FROM weibeld/tg-monitor:base
---> e0c521fc96cf
Step 2/4 : WORKDIR /root
---> Using cache
---> 7c103313f890
Step 3/4 : COPY tgm-main-core .
---> 44083a1f2ba1
Step 4/4 : CMD ./bin/tgm-main-core
---> Running in 09727d561263
Removing intermediate container 09727d561263
---> 949c4c63c00a
Successfully built 949c4c63c00a
Successfully tagged weibeld/tg-monitor:core-0.0.1
> Pushing Docker image weibeld/tg-monitor:core-0.0.1 to Docker Hub...
The push refers to repository [docker.io/weibeld/tg-monitor]
2a137bc6fbdd: Preparing
3950338e1e6a: Preparing
73046094a9b8: Preparing
3950338e1e6a: Layer already exists
2a137bc6fbdd: Pushed
73046094a9b8: Pushed
core-0.0.1: digest: sha256:1555e57e2c58f9a82b5f1a778f6941a5c9148e3ce62cda9aca614de9ab601b06 size: 951
BUILD 1534394264 (Thu Aug 16 12:37:44 HKT 2018)
> Running "installDist" in tgm-main-core...
:clean
BUILD SUCCESSFUL in 1s
1 actionable task: 1 executed
:compileJava
Download https://jitpack.io/com/github/tg-monitor/tgm-ipc-core/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-corefacade/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-backend/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-telegram/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-notification/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-monitor/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-matching/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-servicelocator-instances/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-ipc-api/master-SNAPSHOT/maven-metadata.xml
:processResources
:classes
:jar
:startScripts
:installDist
BUILD SUCCESSFUL in 24s
5 actionable tasks: 5 executed
> Components in tgm-main-core:
tgm-backend master-SNAPSHOT
tgm-corefacade master-SNAPSHOT
tgm-entities 0.0.2
tgm-ipc-api master-SNAPSHOT
tgm-ipc-core master-SNAPSHOT
tgm-logincodeprompt 0.0.1
tgm-main-core 0.0.1
tgm-matching master-SNAPSHOT
tgm-monitor master-SNAPSHOT
tgm-notification master-SNAPSHOT
tgm-servicelocator 0.0.1
tgm-servicelocator-instances master-SNAPSHOT
tgm-telegram master-SNAPSHOT
> Copying tgm-main-core/build/install/tgm-main-core to bundle-core...
> Building Docker image weibeld/tg-monitor:core-0.0.1 in bundle-core...
Sending build context to Docker daemon 6.857MB
Step 1/4 : FROM weibeld/tg-monitor:base
---> e0c521fc96cf
Step 2/4 : WORKDIR /root
---> Using cache
---> 7c103313f890
Step 3/4 : COPY tgm-main-core .
---> f0fe9c7f88a3
Step 4/4 : CMD ./bin/tgm-main-core
---> Running in 687edfe3910d
Removing intermediate container 687edfe3910d
---> 3f65109ad1d6
Successfully built 3f65109ad1d6
Successfully tagged weibeld/tg-monitor:core-0.0.1
> Pushing Docker image weibeld/tg-monitor:core-0.0.1 to Docker Hub...
The push refers to repository [docker.io/weibeld/tg-monitor]
9fac359806e7: Preparing
3950338e1e6a: Preparing
73046094a9b8: Preparing
73046094a9b8: Layer already exists
3950338e1e6a: Layer already exists
9fac359806e7: Pushed
core-0.0.1: digest: sha256:acd5465fc2b172e8e76cbe69bbb7e264191eea4040e77e729f14944c218a522e size: 951
BUILD 1537386781 (Wed Sep 19 21:53:01 CEST 2018)
> Running "installDist" in ../tgm-main-core...
Starting a Gradle Daemon (subsequent builds will be faster)
:clean
BUILD SUCCESSFUL in 8s
1 actionable task: 1 executed
:compileJava
Download https://jitpack.io/com/github/tg-monitor/tgm-ipc-core/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-corefacade/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-backend/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-telegram/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-notification/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-monitor/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-matching/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-servicelocator-instances/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-ipc-api/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-ipc-core/master-SNAPSHOT/tgm-ipc-core-master-a6cb771a12-1.jar
:processResources
:classes
:jar
:startScripts
:installDist
BUILD SUCCESSFUL in 52s
5 actionable tasks: 5 executed
> Components in tgm-main-core:
tgm-backend master-SNAPSHOT
tgm-corefacade master-SNAPSHOT
tgm-entities 0.0.2
tgm-ipc-api master-SNAPSHOT
tgm-ipc-core master-SNAPSHOT
tgm-logincodeprompt 0.0.1
tgm-main-core 0.0.1
tgm-matching master-SNAPSHOT
tgm-monitor master-SNAPSHOT
tgm-notification master-SNAPSHOT
tgm-servicelocator 0.0.1
tgm-servicelocator-instances master-SNAPSHOT
tgm-telegram master-SNAPSHOT
> Copying ../tgm-main-core/build/install/tgm-main-core to ../bundle-core...
> Building Docker image core-0.0.1 in ../bundle-core...