-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathclientProjects_MicroProfile.txt
1461 lines (1461 loc) · 61.7 KB
/
clientProjects_MicroProfile.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
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
git://github.com/0us/IE303911-Klubbhuset.git
73a7e0bafcb2e2c2215cf42134dcc677c53403f7
---------------------------------------
git://github.com/1819-5ahif-nvs/1819-5ahif-nvs-assignment04-referate-DavidStoettinger.git
45bf8d1392c749626cfa3113a82be8fab3cb58ac
---------------------------------------
git://github.com/1819-5ahif-nvs/1819-5ahif-nvs-mircroprofile-microproject-davidPointner.git
4c445b3a4f9c94c06b64f2289f69a86eb3d38efe
---------------------------------------
git://github.com/1819-5ahif-nvs/1819-5ahif-nvs-mircroprofile-microproject-LangothM.git
34aedc213d2f356ce14143d718b2d280067b6710
---------------------------------------
git://github.com/abalasu1/cargotracker-monolith.git
a7e2a8580481261dbc6461a2dddba45621bb40eb
---------------------------------------
git://github.com/acmeair-svt/acmeair-mainservice-java.git
54f56b24f7c788e3615a7959a4d69517c79a191d
---------------------------------------
git://github.com/acntech/acntech-sandbox.git
383d7a6f5080c2540f55f201265b63e081bc286f
---------------------------------------
git://github.com/AdamBien/airhacks.git
fc8925f99236068a1fed1c677db5b440a5dc9b11
---------------------------------------
git://github.com/AdamBien/blogpad.git
c24a36daa94e584f9a9fbe49477992db1f0428de
---------------------------------------
git://github.com/AdamBien/junk.git
824e8ed98cbf30cc2de0f0e00a4c970716623fd3
---------------------------------------
git://github.com/AdamGamboa/JakartaAndMicroProfile.git
947f76f7e6799b22c7db69a43e6981df0537f292
---------------------------------------
git://github.com/aelkz/microservices-coffeeshop.git
06506ce4856c7fd864efd9e16fc5d7dd894cbc21
---------------------------------------
git://github.com/agilesolutions/admingui-mp.git
df372e1693349e33257692a7923d72461e4b6d97
---------------------------------------
git://github.com/agrits/lbd-library.git
0dfe9aa55fe01063d70604fb0dd729ad9d0c50c8
---------------------------------------
git://github.com/AhmedMAghani/JPA-Training-App-using-Java-EE-8.git
9f1200fb051c51acdd8265a72c7cafc1969ecdb5
---------------------------------------
git://github.com/air0523/test.git
ca9cf651791bf07c1db5475504f2728ff696ffae
---------------------------------------
git://github.com/aldolushkja/micro-fe-be.git
5d64125d605a34f3c378621cd399509da7448dba
---------------------------------------
git://github.com/aldolushkja/microprofile-blogpad.git
99689545f250e6bccf81b0c81e0f3841fcc99366
---------------------------------------
git://github.com/aldolushkja/mp-blogpad.git
0f842d46ff1dc87ae158f9fdb26facc517179ad4
---------------------------------------
git://github.com/alexandrezanetti/orquestradorbawnovo.git
b9aeed5be89e34f3624e3bca781d119ed7446310
---------------------------------------
git://github.com/alexandrezanetti/orquestradorbawnovo-ci-cd.git
c51a04782c94f45468c6c643b16b003439dc514c
---------------------------------------
git://github.com/alfonsodomenici/labins.git
3adae5814ee2b30ca8cec564862fcd8765bb0c09
---------------------------------------
git://github.com/alfonsodomenici/tss-java.git
cfd68e2a20f8d34da1a9af6b3d43f77acc1412e1
---------------------------------------
git://github.com/alliancecoder/learning-crc.git
c21ba838fa167ace1403288b1ae08e96972a0bee
---------------------------------------
git://github.com/alliancecoder/learning-s2i.git
dad68315e006bfba6a1df9f48975487eaa6fe067
---------------------------------------
git://github.com/altuga/airhacks_cloud.git
f1ed505b69eabd6b911909feee50b2492e2648fe
---------------------------------------
git://github.com/altuga/airhacks_infoshare.git
8a5259ef14020c6a1f204ae504d80af0921bd0ca
---------------------------------------
git://github.com/altuga/my_airhacks_day_01.git
c7188db3e294241c0274d652cf6335eafe3c31e7
---------------------------------------
git://github.com/altuga/my_airhacks_day_02.git
ac5c457e6e6f115c18a84124a849afd4b0ddb19b
---------------------------------------
git://github.com/amirnajmi/baam-way-payment.git
ca0559aca988fbe7d1af4dd6db5bd8e5257099f4
---------------------------------------
git://github.com/amirnajmi/university-gateway.git
67c14c56c562aedda31d7b7822afafe6ec7754c1
---------------------------------------
git://github.com/andesob/Fant_2.git
ed2c0d746616a5e07111af752311607e5ceb8f15
---------------------------------------
git://github.com/Andi-Cirjaliu/edge-java-react-employment-backend-liberty.git
c54fd73a826fba8108ffe81551410381708e2316
---------------------------------------
git://github.com/Andi-Cirjaliu/edge-java-react-songs-backend.git
6d4e838c66bce29b7e5d20db6cce5db4741dfaa5
---------------------------------------
git://github.com/andrelcalves/book-store-microprofile.git
db692734e11fdf481654605a954e0cb4a4cc66b9
---------------------------------------
git://github.com/angry-tony/refarch-analytics.git
179569dd5db340ebfdb586d4d6375e017ef570a9
---------------------------------------
git://github.com/ankitagrawa/foodOrderRestaurantApp.git
1f04ea7ca38540a1e285b35f2b098f81b5c6a517
---------------------------------------
git://github.com/AntonioSpinelli/ICPLisbon2018.git
5b7c83d69047ac2d29d92db8029264ca9f499f08
---------------------------------------
git://github.com/appsody/stacks.git
8d8aebc9c256923cc155eaf2fff1be9e4a1a924c
---------------------------------------
git://github.com/arfloreshn/Leccion3-A-Curso-Angular-PrimefacesNG.git
7ef024bd173322b8ae0f229425d35af6ddefd667
---------------------------------------
git://github.com/arfloreshn/simple-restfull-cliente.git
053c09eb15bb599c9a7e81017e8ea941e2dc4f90
---------------------------------------
git://github.com/arturavito1789/TomEEServlets.git
c0421656526a985d00ab7bbee5703ffc358bec96
---------------------------------------
git://github.com/arun1252/s2i-open-liberty.git
7d18d2cdff1367bbd2bb77b959346c023808bda9
---------------------------------------
git://github.com/ask1666/quizappserver.git
bba2bb7a7b12ae6b6a8b6f8390d5c2b4491faac4
---------------------------------------
git://github.com/atjapan2015/k8s-microservice.git
2fc94b21b02370b36dcbd9d2acdda6989012d8ec
---------------------------------------
git://github.com/AustinSeto/cogent-cats.git
75c43407f3031e8972ba4f7eb49a0e7b6a8e9a85
---------------------------------------
git://github.com/avbravo/adminfacesarchetype.git
9671debfa60988afeb9edca1a0850d8511627f34
---------------------------------------
git://github.com/avbravo/jmoordbadminfaces.git
2cfa4c622ba0f93be8e432ea7910063c024f785e
---------------------------------------
git://github.com/avbravo/mykrazo.git
fa3390449ab2488de24198d3d2400711b8c264ad
---------------------------------------
git://github.com/avbravo/reservacion.git
f5730df7ef7515d9d32a5a2a2767b03ee2076d15
---------------------------------------
git://github.com/avbravo/testingjmoordbadminfaces.git
88a00e220c639ac0450974f2d440613ed2e07290
---------------------------------------
git://github.com/avbravo/webtestreport.git
c9805ac72cf5e8b6ce58ac656cd38eefcaa39e91
---------------------------------------
git://github.com/beduExpert/Java-Standard-Edition-Intermedio.git
78e8c8e48edcc035968432bb1709411f2410eb4b
---------------------------------------
git://github.com/BenCornwell1/test-es.git
fc7cccfeb691f26a186fa9878de422c477e922d7
---------------------------------------
git://github.com/bgjug/microprofile-hol-1x.git
81262bd4f21d64d42e0bd1e807cc8e211fb92c95
---------------------------------------
git://github.com/bhogalvishal18/Concurrency.git
d6140de243a683ee1daf1ac94913fe8ddbc64d11
---------------------------------------
git://github.com/blueperf/acmeair-authservice-java.git
4381502652f537800b80d949f403ec84356183cb
---------------------------------------
git://github.com/blueperf/acmeair-bookingservice-java.git
d08d1d3ba96a2db6fc0eef902884e2c0ddeb6e61
---------------------------------------
git://github.com/blueperf/acmeair-customerservice-java.git
f9afa1499fdca6143ca174bf8129eb9be1f103f3
---------------------------------------
git://github.com/blueperf/acmeair-flightservice-java.git
efec29beca952d45c2de56adcb78d7d4dc9543cf
---------------------------------------
git://github.com/blueperf/acmeair-mainservice-java.git
1980668e7d54c5398ec639028413bca4c0b20ade
---------------------------------------
git://github.com/BolivianJUG/launch.git
dd0c4604d7976ddb7f42f9ce2aadc1d63a2c0c97
---------------------------------------
git://github.com/boowecall/gl.git
afb96556596df107613800fb73ebf2fda3998fc0
---------------------------------------
git://github.com/callbinuvarghese/microprofile-rest.git
e9077933584f10fd289c6cc333b693dddcce7b03
---------------------------------------
git://github.com/Call-for-Code-for-Racial-Justice/Open-Sentencing-Aggregator.git
e463c970b35860175e931ce6e79503df6c063c91
---------------------------------------
git://github.com/Carm2501/myAktion.git
5d340c0899bc1bbfd943b83ee55e11b1b9698227
---------------------------------------
git://github.com/cbustamantem/microprofileacademy.git
113a523e2588dfb250407e6111fa64768f52dbd2
---------------------------------------
git://github.com/cchacin/MicroGen.git
af6b4d57e5b69ef20175da7180e251f89a5b399c
---------------------------------------
git://github.com/cchacin/microprofile-conference.git
877c50f7378d8d84079f1d247d84f5b7e47c832c
---------------------------------------
git://github.com/cescTachiRui/testU.git
e412f3199dd5a64c47c95f8a172a216c90f714b0
---------------------------------------
git://github.com/cghislai/plancul-back.git
38c67e79c0e62f904d58ecce127f08d81c4e41ff
---------------------------------------
git://github.com/chavda-bhavik/msa-apps.git
ae3b66913c41afa42593dbbefb491f53807c67c1
---------------------------------------
git://github.com/cicekhayri/ebook-Building-an-API-Backend-with-MicroProfile.git
52501477f96b69ccecbe194036ebef4eebf423df
---------------------------------------
git://github.com/Clo74/cloud_storage.git
68b0677e1fffeee2fa0ed3b0d1c1c07cfbd50da0
---------------------------------------
git://github.com/cmoraga-dev/solemne3.git
171778e757e374ec790d7096d9dd73d7974c4566
---------------------------------------
git://github.com/cn03390/git-iot.git
aa7d599a6cc77b17091da5d9b69588edb5dd2268
---------------------------------------
git://github.com/codelair-io/jakartaee-mp-archetype.git
330d4669d814f3241d166b1d7324d84de2e9661d
---------------------------------------
git://github.com/codewind-resources/openLibertyTemplate.git
9364af23de8532fc5402e388b2ba6bba23cd5884
---------------------------------------
git://github.com/codewind-resources/rogue-cloud-client-codewind.git
e4a673f81842da164db6a72ca6cf5b8128e645aa
---------------------------------------
git://github.com/CristianoVotre/DockerNginxNodeLiberty.git
ef5f4a7417a6bd39902eb18684ed2e9fb4726b92
---------------------------------------
git://github.com/cstalker99/defaultapplicationpublic.git
8ee29ba2b53d3dfb0e2fcd7b9c0e062ccea85193
---------------------------------------
git://github.com/CurtisNewbie/BookStoreApp.git
547974dd41a6b6382e68368875483c6da4d6c8d8
---------------------------------------
git://github.com/cwansart/testcontainers-university.git
15e322b5045eb9e829642e4f448bcd704c252d7c
---------------------------------------
git://github.com/cyl-007/acmeair.git
7ec5f17aa1feae28d8db9d58fd99e9cd0a5e5965
---------------------------------------
git://github.com/cyl-007/acmeair-authservice-java.git
9d7c010d1857bf9f016aee217a6062c71af6b360
---------------------------------------
git://github.com/cyl-007/acmeair-bookingservice-java.git
598e14af7b83fb953ba0a748918602d9468d4288
---------------------------------------
git://github.com/cyl-007/acmeair-customerservice-java.git
7ec5f17aa1feae28d8db9d58fd99e9cd0a5e5965
---------------------------------------
git://github.com/cyl-007/acmeair-mainservice-java.git
7ec5f17aa1feae28d8db9d58fd99e9cd0a5e5965
---------------------------------------
git://github.com/Dagga78/EpreuveTechnique.git
6efa389d646dfd9ecd29f90c226863de6ef73c8d
---------------------------------------
git://github.com/Dagga78/EpreuvetechniqueDoc.git
e244ced005475745fb11838d637ed7c68ff64434
---------------------------------------
git://github.com/Daniel-Dos/DanielDiasjava-Blog.git
83ea688038b294de8f791b86f7623e38402e6c5c
---------------------------------------
git://github.com/Dasaenz499/openliberty.git
500a0f72f08f83b94ee8cf74b6f31f7cb22fd7db
---------------------------------------
git://github.com/davimacana/microprofile.git
907fa9f5a7e89335541f398ea4a276f17197e467
---------------------------------------
git://github.com/DBCDK/errorlog-web.git
5f4addc5d943b58ff4ca17a21edadea6e1172fca
---------------------------------------
git://github.com/DBCDK/holdings-items.git
d77808158440a5cee5c9c402b292513be550b856
---------------------------------------
git://github.com/DBCDK/lobby-introspect.git
329e297b07649edf2ce424b73ca124bf4f25e304
---------------------------------------
git://github.com/DBCDK/payara-react-template.git
d5f60353bee200f0b730e190cfeda7d642c57ace
---------------------------------------
git://github.com/DBCDK/pg-queue.git
ff466ca4c6223c8672caa0385ea26161d3f7b1c8
---------------------------------------
git://github.com/DBCDK/promat-service.git
85fd634e28ff15d5faabf4fd9bc299acbbb6d04a
---------------------------------------
git://github.com/DBCDK/rawrepo-introspect.git
a267e564e52e86e37c5fb357eb5895586dae67e5
---------------------------------------
git://github.com/DBCDK/rr-oai.git
4f6dc866c63661de68190a101bad3f4980fb1cea
---------------------------------------
git://github.com/DBCDK/saturn.git
2f30b5dc0dc65308be8a23416a4b336d8af87503
---------------------------------------
git://github.com/DBCDK/solr-document-store.git
6b0e8316911209a23736ed96f6fd22e889d7730e
---------------------------------------
git://github.com/DBCDK/tickle-repo-introspect.git
50534cb3ba07053d61d037b65c2d0d12ee7bff0c
---------------------------------------
git://github.com/DBCDK/work-presentation.git
856e95acc64bed21d7d47ea32bacbbd59a7ddc78
---------------------------------------
git://github.com/deepcloudlabs/dcl364-2020-aug-24.git
266fd6cb46f33c3de9f2055b0f0df6071462192b
---------------------------------------
git://github.com/demis27/microservices-kickoff.git
f30b57c5b1cf84605a1f6f8ebf6967431d6e790e
---------------------------------------
git://github.com/designuj/static.git
7c6b3fc8feb468c8570ef9e8bc5bd61d69ff1564
---------------------------------------
git://github.com/devops4us/openliberty-tekton.git
72834cdd96fafc02f53c45d0cf50be67f4c77354
---------------------------------------
git://github.com/dmzstar/openliberty-jsf-mojarra-jpa-hibernate-template.git
4e35f63a49a9ea23ec771d96a3e56cc4d166222c
---------------------------------------
git://github.com/DNascto/gconf.git
1cae9ebca2c543d1b6c7dd201d4b21ac1f6e485f
---------------------------------------
git://github.com/doychin/java-knights.git
717166abd068a33861c4674d9c0c1caebd69378e
---------------------------------------
git://github.com/drmiller4/my-repo.git
f2bf9a981fa37df3833460635f449467897f897a
---------------------------------------
git://github.com/duddy10/mds-A1.git
0e9fead8cfa33814e93a62d12f5c01a558bb9e1c
---------------------------------------
git://github.com/easynut/openshift3-on-ibmcloud.git
d91901965cc51f123025a9fd01770962750cffd5
---------------------------------------
git://github.com/ebany/back-end_intermedias.git
df7f8abcc18586fe0619cd512c47deafb8c748ff
---------------------------------------
git://github.com/ecalvach/my-repo.git
6e65ae882605bacf8b1d7477f52c1aa4d611299b
---------------------------------------
git://github.com/eclipse/microprofile-conference.git
298d25bdf111e61de6adc0dc7598b5408b22b7e6
---------------------------------------
git://github.com/eclipse/microprofile-sandbox.git
f69d04dcd825a96e11bd71fd4cd5f7e266036b4d
---------------------------------------
git://github.com/Edwino0708/jersy-java.git
12223908bfbb1f4713ce06eed55879405b8f5ffe
---------------------------------------
git://github.com/ElfAstAhe/crm-platform.git
fc7d3e2732034b06da50adae4893b25293cc4b36
---------------------------------------
git://github.com/elifAkgun/customer.git
cc2584d2a5abe7c5e3b50d61abf8ced936608554
---------------------------------------
git://github.com/elifAkgun/javaee.git
e2edbadb4936b53757ff10b23da746ef921ec44b
---------------------------------------
git://github.com/ericglau/devc-multi-container.git
41fb7a85e0445f1c435b6e979dadae9da59ea842
---------------------------------------
git://github.com/eronmiranda/Java-Review-Exercise3.git
4be6b80e3b4165187f46db19dd41d751c748c138
---------------------------------------
git://github.com/ESDLMapEditorESSIM/esdl-drive.git
ce6d389858695a1a8ce59e5717fca4347df05fcb
---------------------------------------
git://github.com/EspenK/hjornet.git
db9c7748368e21897272af1afab36e3db48d0a1a
---------------------------------------
git://github.com/EventosJEspanol/latin-america-micro-profile.git
35344d4ce7901f66712b04ba9d1ec1405d67f273
---------------------------------------
git://github.com/fandriosi/spa.git
8caf0a81dabca03100f18ecf7ef471626314e0f6
---------------------------------------
git://github.com/FarmogoApp/FarmogoBackend.git
f6f20ae9aa219ead833610d408459fb8d9eea11d
---------------------------------------
git://github.com/fhara/vscode.git
79160c425c9e7de86e7000bb81496129444f879c
---------------------------------------
git://github.com/florendg/blogpad-service.git
4f100daf90b1d69700fb74036efac04067cb4df8
---------------------------------------
git://github.com/freshfish70/fant.git
b136974fb002e1ac07f4a747971517c8866c5c64
---------------------------------------
git://github.com/frifle/co2logger.git
2c96ae947f39ee3f84ab8957dde816b79ec62dfc
---------------------------------------
git://github.com/g2Y1b/stack-hub.git
677e3bf9fe425f70894b57dc6bff85e58de91639
---------------------------------------
git://github.com/galamsiva2020/Webspehere-OpenLibertyRepo.git
1786298d8004745a452a9803d9efde86f2712c60
---------------------------------------
git://github.com/gastonx99/gameon.git
57d217cedae2ea1d294a6bb42afd77c66e2294ab
---------------------------------------
git://github.com/gcharters/DayTrader-StockQuote.git
04f7bae8201a0dba010a654078eeae7f8f6a5367
---------------------------------------
git://github.com/geoghegk/t6.git
9e6d70b178c5573fad38079972ab1e9cba95c9a2
---------------------------------------
git://github.com/gitatmanu/ChessJSP.git
a4969f60905d60bf6fd1b53d85e9131dd679b123
---------------------------------------
git://github.com/Gitnabb/PentBruktServiceBackend.git
247ae81e87af91724bbd3c62fc69360a529aa6a8
---------------------------------------
git://github.com/gmarcy/twasproject.git
347571057b910f2f6d2d47205929bc708dabae9c
---------------------------------------
git://github.com/Greiff94/fant01.git
2bdc86782c809a5c3153db5377553abce2b4122b
---------------------------------------
git://github.com/gridgentoo/kafka-mq-bridging-showcase.git
c73a45cbe71615bafad487a719481606b60abc36
---------------------------------------
git://github.com/Groupe-AMT/Project_1.git
521cc2997ce4062841f074816b7af17d30e3d6f4
---------------------------------------
git://github.com/Hans3L/AppHealth-ServerLiberty.git
22d230ea0029c4e49785d15612fcf94ea4635a20
---------------------------------------
git://github.com/HasseNasse/CoffeeShop.git
61dd10c073d8a81d05383d620340a84d25c9848a
---------------------------------------
git://github.com/HasseNasse/FruitApi.git
73e45b4f25126b214ff3da9cb3089c8334ed8b25
---------------------------------------
git://github.com/HasseNasse/KotlinPingService.git
038310b1d409de867164b01aceb58fb890b9f789
---------------------------------------
git://github.com/HasseNasse/LiquibaseH2JPA.git
d77f6fa17958b522dcbea3b019c3ede419b1c657
---------------------------------------
git://github.com/HasseNasse/NotificationService.git
87e672f3a861f1556aae8c84604be743321eb991
---------------------------------------
git://github.com/heike2718/checklistenserver.git
6d5ff3a89ddfe487e778624bba3638c69eeb42ab
---------------------------------------
git://github.com/henrydevteam/stack-hub.git
677e3bf9fe425f70894b57dc6bff85e58de91639
---------------------------------------
git://github.com/hgrange/daytrader-tekton.git
a13829c41f2b89b65d0d9a7a9185bc99fe21438b
---------------------------------------
git://github.com/hgrange/moresorts-tekton.git
74be165f7eb6dba6ddbfcf96ff264bd1c1f128e4
---------------------------------------
git://github.com/hgrange/OL.git
805c1e97113cba95bf4ae9ea675f70ced13e48a8
---------------------------------------
git://github.com/h-hub/jakartaee8-openliberty-hibernate.git
dcad8f8fab315c8f3263fb2fc543ca3b777236ab
---------------------------------------
git://github.com/h-hub/jakartaee8-usermanagement.git
3b6766212ac462f630a0e30c0241f42baff2a909
---------------------------------------
git://github.com/h-hub/jakartaee8-usermanagement_frozen.git
453c4ce3c42831bfd5339f55c903e36cbe8c5ba7
---------------------------------------
git://github.com/hiejulia/ee-projects.git
896763dfd762e57d9f77cf98cc38dbdd869ff9a9
---------------------------------------
git://github.com/hiromitsu7/sentence-diagram.git
c3ce7f56d851e56b153eb27a67f07193c03368f2
---------------------------------------
git://github.com/hkastler/blogbox.git
341479d7639b6d14991ea7000a471a41a486465b
---------------------------------------
git://github.com/iAgonyii/compagenda-backend.git
147f29a8877045a2d8ad7d24bd1d41a9ce42e8c2
---------------------------------------
git://github.com/i-am-ajay/otc.git
848d3b6a61d13c9c5d40dbf89ce18e085f8c0fe3
---------------------------------------
git://github.com/ibm-cloud-architecture/learning-distributed-tracing-101.git
bcae7755b576db1425ec6d2d42a38b6684f56a85
---------------------------------------
git://github.com/ibm-cloud-architecture/refarch-analytics.git
9f93be331f7976316339d93c2cb2e1e1374780ae
---------------------------------------
git://github.com/ibm-cloud-architecture/refarch-asset-manager-microservice.git
c4f047fd883dcf698833d38ba0b3d3467013e924
---------------------------------------
git://github.com/ibm-cloud-architecture/refarch-container-inventory.git
eaa765345b68aed78ac24fa9dbcd5180b8a339ab
---------------------------------------
git://github.com/ibm-cloud-architecture/refarch-kc-ms.git
a0492ae3dcfe1dfd8dc53f9488d044c0bf51a37d
---------------------------------------
git://github.com/ibm-cloud-architecture/refarch-kc-vessel-simulator.git
9f58af278299f158bb38b6f8c459d391adcc8e0c
---------------------------------------
git://github.com/ibm-garage-ref-storefront/catalog-ms-openliberty.git
27fc0b2fb84efd1c9ce5c2fbdb68d74bfcb31457
---------------------------------------
git://github.com/ibm-garage-ref-storefront/customer-ms-openliberty.git
e11ea1b7cfd27402d3046dc78de2b57bc37430e9
---------------------------------------
git://github.com/ibm-garage-ref-storefront/inventory-ms-openliberty.git
555bfd9268d77f15e975ebe3026950713f9b2661
---------------------------------------
git://github.com/ibm-garage-ref-storefront/orders-ms-openliberty.git
c28abbc1e31a7ecf2c40ebb80089f69ebed4caf3
---------------------------------------
git://github.com/IBM/microprofile-meeting.git
900541e610355209dfff467ff87d410f41d46c63
---------------------------------------
git://github.com/IBM/microprofile-meeting-concurrency.git
ecde159e8febc2f8c760245b253737c241c65a31
---------------------------------------
git://github.com/IBM/microprofile-meeting-persistence.git
2cc942b66363eb3a8d293be20da002ff94ddf35c
---------------------------------------
git://github.com/IBM/microprofile-meeting-websockets.git
77130a68989ef7ca97a3845a9a36a38a507b167a
---------------------------------------
git://github.com/ibmmkeppeler/test.git
bd43ff655f65a2b5912bcdeb0f1133936f6ba87f
---------------------------------------
git://github.com/IBM/Open-Liberty-Blockchain.git
2fb939e630771f185847046bfaaf31f3512639c0
---------------------------------------
git://github.com/IBMStockTrader/messaging.git
b2887cf2b33340990cd9e79d8405fb767fcd4a1c
---------------------------------------
git://github.com/IBMStockTrader/notification-slack.git
776ed10db085c4dd4b15967e73b7a8778be7d6a0
---------------------------------------
git://github.com/IBMStockTrader/notification-twitter.git
dc5e25e37adebeab2383ad3bd2b2b198d75fe10b
---------------------------------------
git://github.com/IBMStockTrader/stock-quote.git
7eae3a647bea1f5130b299af997d2fd57cbdefa9
---------------------------------------
git://github.com/IBMStockTrader/trade-history.git
00616967d6a7426e38352931d2b5f07cc340fa52
---------------------------------------
git://github.com/i-Cell-Mobilsoft-Open-Source/coffee.git
707f1ada8dd14f8f4f617994ceb0ded17820786a
---------------------------------------
git://github.com/i-Cell-Mobilsoft-Open-Source/roaster.git
6d76a90382dd4de7c8b7c607b56a82c90940f225
---------------------------------------
git://github.com/icp4adevops/stack-hub.git
99b733e627b183b526703898cf8d68634c497eaa
---------------------------------------
git://github.com/icp4apps/sysprop.git
e1519ed8063113a12a28432d35b1d0650beddd0d
---------------------------------------
git://github.com/igijon/dwec2021_ejemplos.git
d89a28ea1bc8dc2384dc905895b2f982fc133a72
---------------------------------------
git://github.com/IKSG/nsf-file-server.git
7f21c4e3790259fe41a574565f25f50abbd816c1
---------------------------------------
git://github.com/imixs/imixs-adapters.git
2c638b3e5c8b41ccaac20ca221883e8406c495b1
---------------------------------------
git://github.com/imixs/imixs-admin.git
9fb21f7d96f816c564a2848f2a037695cb9cf110
---------------------------------------
git://github.com/imixs/imixs-archive.git
c545fc8fefd5d7a54c98b1d408579c8adce4fa74
---------------------------------------
git://github.com/imixs/imixs-marty.git
a35eb06051d831ab8f744c65921fc7746b15419f
---------------------------------------
git://github.com/imixs/imixs-microservice.git
107b273a00d9ce78aff43a9a689350634de31259
---------------------------------------
git://github.com/imixs/imixs-ml.git
89ecc94758edec565f6389131d9ab491bd010c74
---------------------------------------
git://github.com/imixs/imixs-workflow.git
63ca028d5fd492bc487a5f0fab4d561e45d1960e
---------------------------------------
git://github.com/intelsdi-x/stack-hub.git
2ba69075158a97c6a228c9302d5145c839400300
---------------------------------------
git://github.com/ivargrimstad/dukes-local-greeting.git
8e75bd7a5ad28dcd5f4e7339533ba6b6b68bc666
---------------------------------------
git://github.com/ivargrimstad/groundbreaker-duke.git
a025233e055dcdb6e1ae9cdf91c0c4625f555899
---------------------------------------
git://github.com/ivargrimstad/microprofile-hol.git
ec11d78239942a8d20cbd689f3b3ebe7f44fa09e
---------------------------------------
git://github.com/ivargrimstad/snoopee.git
da1086ce0634d76a302b5b9e74cd76b7e4dc1fcc
---------------------------------------
git://github.com/IvoNet/docker-from-scratch.git
598e72decee7191ee3d30c6fad81ad984b8b410c
---------------------------------------
git://github.com/jaricsng/everything-as-code.git
c174a2099f78428873e37ff5ade9d8fe8f6c58fe
---------------------------------------
git://github.com/jarryDk/quarkus-wildfly-faglig-fredag.git
0bfacf51eb554cd7dfed6bd9dd1ec31923052ad0
---------------------------------------
git@github.com:AdamBien/javaee8-essentials-archetype.git
9650c1391f49df9f549e142aa501b58374bb2a1b
---------------------------------------
git://github.com/JavaProgramTo/CoreJava.git
e7bc9c1f53f55492db5e3f849f15cd39c8654501
---------------------------------------
git://github.com/jaycar64/my-repo3.git
3be0a5c4c8417596cb89f772a0caa570a1d34e6f
---------------------------------------
git://github.com/jbcodeforce/java-studies.git
bca58f11fd0e6fb360fa1138debac565e4f6c602
---------------------------------------
git://github.com/jbcodeforce/microprofile-event-driven-microservice-template.git
eacfde5161a4738985aba1cc4d7468c6d1ed3d24
---------------------------------------
git://github.com/jboss-eap-qe/eap-microprofile-test-suite.git
bd58ee462ee973e26049b46dbc36d84f42a6a3b6
---------------------------------------
git://github.com/jbrasileiro/resume-online.git
8ba15b418e3bc3aa9e14242437588618b27753eb
---------------------------------------
git@github.com:jeddict/jeddict.git
0b652fb14c1fc25205a85c96279f90801d451abf
---------------------------------------
git://github.com/jeddict/jeddict-extensions.git
006aae93a5ff32cd0d4d933cec4202ed47935fbb
---------------------------------------
git://github.com/jefrajames/eclipsecon2020.git
d0acb783d1512e50584c0c0a52722d5bf59348dc
---------------------------------------
git://github.com/jefrajames/jwt-lab.git
cf44df82bc69a80fbd538e464fad30b5f0e347d3
---------------------------------------
git://github.com/jenspapenhagen/caas.git
c347bbd0b8f0cf0d31c50fd4d4413ef2ca0822d3
---------------------------------------
git://github.com/jesse-gallagher/frostillic.us-Blog.git
5c44ab0d9a617425d4cb6b3fb5bdbad6d6c209c9
---------------------------------------
git://github.com/jimmister95/my-repo.git
a45022cc93d616ce2f32cd99f94a8dd62c3378dd
---------------------------------------
git://github.com/jimmister95/my-repo1.git
786c757fff0493a82a5792b7ebd7b97ffa1e44f0
---------------------------------------
git://github.com/JLLeitschuh/microprofile-meeting-concurrency.git
ecde159e8febc2f8c760245b253737c241c65a31
---------------------------------------
git://github.com/JLLeitschuh/microprofile-meeting-persistence.git
2cc942b66363eb3a8d293be20da002ff94ddf35c
---------------------------------------
git://github.com/JLLeitschuh/microprofile-meeting-websockets.git
77130a68989ef7ca97a3845a9a36a38a507b167a
---------------------------------------
git://github.com/jlmc/hibernate-tunings.git
fa7b4f765c6aecfc139562a191306e1ba476bd50
---------------------------------------
git://github.com/jmanuelrey/tropes-indexer.git
bd1168b5c670d9231b2bbfd1677f903a5f67f967
---------------------------------------
git://github.com/joedayz/JsfNohamuerto.git
35bffbd9b14d1dd1aa2c0085856bf97489a56ce9
---------------------------------------
git://github.com/johnaohara/quarkus-startupCLI.git
ddbc21c3cca3e5df46819a53cf884a939170a8b1
---------------------------------------
git://github.com/JonathanOhara/baixadaNerd2018.git
8e72989f15abc2982ffff7e1b2c88ea122b881b6
---------------------------------------
git://github.com/jspieckermann/ux-academy-api.git
679888bb3ec4855855f134e14e9e24879b7b7441
---------------------------------------
git://github.com/jufab/hystrix-resilience4j-microprofile-fault-tolerance.git
fe5cc68409f9bee91c1e7ea7e6b89d6b0e088ab8
---------------------------------------
git://github.com/jufab/opentracing-test.git
27a8e00c2b068f115d7d856222697923866eec6d
---------------------------------------
git://github.com/jug-mz/backend-proxy.git
6a422a29fb2b0f207de261ad0e37a4265dbaef9f
---------------------------------------
git://github.com/julebrus42/Forelesning_fant.git
d71ea77a6ff703fb9e8bcf4b642dde4debb7c806
---------------------------------------
git://github.com/julien-ilari/mycommerce-ws-client.git
a31cebeb8bd245bfab69eacfd591e7258abae1b6
---------------------------------------
git://github.com/julioleao/produto-ger-config.git
139a99905b345879d894d363eeea30272dfa9222
---------------------------------------
git://github.com/juneau001/ChristmasListDataService.git
3ce98b346aacb5cd16645121bb3c98c8302b4670
---------------------------------------
git://github.com/jzinedine/video-chat.git
99664072165a6fa4e8d090358c4f1e2b28557b09
---------------------------------------
git://github.com/k0l0ssus/codesicles.git
cb6f20d03338bb1f4157f114b276b213a1654cd0
---------------------------------------
git://github.com/kabanero-io/kabanero-command-line-services.git
cdae8ccd9aca492b3f449a69bf27bfb44de073c8
---------------------------------------
git://github.com/kabanero-io-test/sysprop.git
3bc7611c0c32679426899a6c47e6ece497a9925a
---------------------------------------
git://github.com/kahlan147/Kwetter.git
f2da6366054d71c723ac66a95bb7ce65d6585572
---------------------------------------
git://github.com/Kahrosa/academia.git
a733d136ffe16e84fce873e6d85d9f9105ce6259
---------------------------------------
git://github.com/kalioneshot/k8s-istio.git
b8bbd8b665b3bbca11421ee3249e695b0f763746
---------------------------------------
git://github.com/kappnav/apis.git
802e813b3a2e1b9342582c5bf23dc57e5942d803
---------------------------------------
git://github.com/kayroone/twttr.git
6db41a110dcf7bfbc4001e76f91ed2dca24a0e70
---------------------------------------
git://github.com/kemitix/slushy.git
3162a887c9f4fcfd908fcfbb4ac318874a56b144
---------------------------------------
git://github.com/kencytbb/mp-hello.git
bfcd55be32eb6128a0c6e90a96e92253e96848b9
---------------------------------------
git://github.com/khe-ztech/my-repo.git
7b9b1a760fba27fcef6ea61189a86bbca60042f5
---------------------------------------
git://github.com/khinkali/maturity-sink.git
bb800257b2473aa6d4f7d5280abb9e9ddbfa454a
---------------------------------------
git://github.com/kimduquan/JavaEE.git
ae5dbf9da993f5b63dc6debacd621f71e4199a02
---------------------------------------
git://github.com/kimholan/pep-crypto-kim-ho-lan.git
47bd4c66dd9322d15ac2fc8aaf792bbb7696eb88
---------------------------------------
git://github.com/kito99/micro-frontends-lab.git
38f659e5de1553f201d4ded0a39917d50424d796
---------------------------------------
git://github.com/KiwiTheSock/Hausarbeit_KbSE.git
669ce0bb364f6226417d00e68e5b733bd523d28f
---------------------------------------
git://github.com/KiwiTheSock/osca-mp-2.0.git
d1a89bd4493a9f9fddeb022bd73d48cc88795a86
---------------------------------------
git://github.com/kmacedovarela/guiltless-punishment.git
88bb9a930afc60eceb1950ea3a2b168c3b84927e
---------------------------------------
git://github.com/kodecamp/apps.openliberty.git
366ae493c29a52fa1fecb767b56a3aad25a211bb
---------------------------------------
git://github.com/kodecamp/apps.tomee.git
3fd96ab7c76b54b9ce96b487df3b1a7eaad6e7d4
---------------------------------------
git://github.com/kpostreich/ta-repo.git
f8bd8abeb31d1780cc53c2c76dad23c0ac2e4375
---------------------------------------
git://github.com/kubepia/stack-hub.git
677e3bf9fe425f70894b57dc6bff85e58de91639
---------------------------------------
git://github.com/kubeworld/collections.git
8c75520a677c818df6c9c546b9402cc1733feaa6
---------------------------------------
git://github.com/kubeworld/stack-hub.git
677e3bf9fe425f70894b57dc6bff85e58de91639
---------------------------------------
git@github.com:kumuluz/kumuluzee.git
4c987d61097facbbec5c38d31eb5080a5c20a688
---------------------------------------
git://github.com/LaisMSantana/projeto_crm.git
84363e3026636aaf21e92d3cc27123e3124f0357
---------------------------------------
git://github.com/LeandrodaSilva/produto.git
6535cc7033e4b69b359de5cd40278769567ac6cd
---------------------------------------
git://github.com/levanabuladzee/jwt-auth.git
4419f1d2addf3342381768eb2e7911497c879352
---------------------------------------
git://github.com/leventarican/cookbook-webapps.git
36da27f4238285719e789322af6091d6bb265569
---------------------------------------
git://github.com/LEVI-PAITA/sakila-payara-server.git
25e743f188f60f2afc8c8f1a7eea53a356ac9e65
---------------------------------------
git://github.com/LinaPoC/stack-hub.git
677e3bf9fe425f70894b57dc6bff85e58de91639
---------------------------------------
git://github.com/lmorel3/ecoviz.git
20114ec9f11c891fe43c7eb80f2bff74c7b92b9b
---------------------------------------
git://github.com/lreimer/flamewars-javaee-spring.git
ccce0e92c841de6d9d9e32f41570391b7dcef9f9
---------------------------------------
git://github.com/lucasklassen/angular-elements-mf.git
9fe2348f5567687f14a620adc00cb8fa9003d78a
---------------------------------------
git://github.com/LucasNasc/Jakarta-EE-Microservice-Sandbox.git
9bf382742a39eb89c0c452f68fcc3703de764d9a
---------------------------------------
git://github.com/LuisM-Dev/poc-backend.git
3050458026ae93f0c92a1789b235d16cbe21747d
---------------------------------------
git://github.com/ma1uta/jeon.git
b18e95529d61a1532d0d1351ee34da4f244396c9
---------------------------------------
git://github.com/ma1uta/jmsdk.git
44976d1eb36d5635bd592708342236dc3a7401da
---------------------------------------
git://github.com/maartenl/Land-of-Karchan.git
23b455de3d6b3fe2685552141e5bf5620f163238
---------------------------------------
git://github.com/madsop/hueAPI.git
26fe30da2cd85f424aee6ff753e21e3735cffce7
---------------------------------------
git://github.com/magaivaxe/javaEE-concurrency.git
3eefb2fa9b4e7f257da9aa073afba04a8879866b
---------------------------------------
git://github.com/mah454/FoodPicker.git
b79a5ccd3c508846131f7babb553a8dc5239c869
---------------------------------------
git://github.com/majguo/open-liberty-on-aks.git
4c40b451a2bc8880ebb80a21945b02a4872ece33
---------------------------------------
git://github.com/majguo/piggymetrics.git
3b39113b2f53c25db68056e99dedbc377e0b457c
---------------------------------------
git://github.com/makandre/coffeeshop-ui.git
89917bc5b99d85e5348a95b2035a23aa974db514
---------------------------------------
git://github.com/ManuelB/freelance-job-search.git
2dd18ed1f56be7a5945ad088492b144753998eb9
---------------------------------------
git://github.com/ManuelB/javaee-openui5-multi-modules-base.git
4f168562a297d643337ab7c95114675b116faad8
---------------------------------------
git://github.com/marcelorubim/oyoso.git
4409efd33fe8955aac7b9c55e33b0ca209a60291
---------------------------------------
git://github.com/mariobatres7/academik-javaweb.git
87cd11563197b6288871bc9e6151c08ebc4656d0
---------------------------------------
git://github.com/markusranda/MDA_Randa_Server.git
c297716e5ab3b4e358c1176aca2b50277c8880e3
---------------------------------------
git://github.com/marrober/liberty-app.git
61f50085efa8340df5765f15893ef4cc4393ac4f
---------------------------------------
git://github.com/marrober/libertyRest.git
894a02a81800838a65e135c7e4d56cb9482976b3
---------------------------------------
git://github.com/martinfruehauf/todo-mvc.git
67bb970634d299ba5e409442d415b8817d1d3454
---------------------------------------
git://github.com/matheus-henr/FILME-API.git
f7bfc7e22e70766bfec9bfa8a60f6ba07fb85932
---------------------------------------
git://github.com/maxant/kafka-data-consistency.git
f57e91d6d2b039ebc77f77ec87f083bc854350c9
---------------------------------------
git://github.com/max-weis/so-clone.git
ec6e7c2408006ba5750d650b5648db3c7f8b356f
---------------------------------------
git://github.com/mcherni/vpc-toolchain-20200307122511699.git
b4e4d3627fce714366c13c14b67d4b265444d42c
---------------------------------------
git://github.com/mddev202/roguecloudclient.git
8431a285827822a2630b367e1b5dfe43ad2f136b
---------------------------------------
git://github.com/mdiass-org/stack-hub.git
3e0e4166051bfcf9ca4f8471791a86fcb65beb61
---------------------------------------
git://github.com/mebobby2/cargo-tracker.git
4af8049086957c8e63911038f9e147050a9a9ac9
---------------------------------------
git://github.com/meguiluzortiz/hello-world.git
5d9c7251ef7cbc5d7be5709f4de479a759c19436
---------------------------------------
git://github.com/mehmandarov/microprofile-iot.git
4a1a50953f1762e186dcd89fca0d19bc26e6d8a6
---------------------------------------
git://github.com/meswan/amuddled-peace.git
e6b03463502b940e9607d61eaca600148b5b42ea
---------------------------------------
git://github.com/meswan/aplucky.git
53c0cccd15a705194e717e03d0faf8fba96c161d
---------------------------------------
git://github.com/meswan/dev-mode-pipeline-integration.git
e30b2c8e9ac4fc8ea596c1f8f7b5043148d9bfc7
---------------------------------------
git://github.com/meysam/video-chat-poc.git
15e9e97bda83034050299f95a1b6f01b9668d532
---------------------------------------
git://github.com/michalbilicki/NetworkComponentsTechnologiesMicroservices.git
527f853ec80bca3af9ebecb4b551a1c91488e15b
---------------------------------------
git://github.com/microclimate-dev2ops/openLibertyTemplate.git
3f02491ce0ed80b95a19f8192510fc75b945951e
---------------------------------------
git://github.com/microclimate-dev2ops/rogue-cloud-client.git
ad3cc611efa627a080145f6361e9fd70b49b9878
---------------------------------------
git://github.com/microprofile-extensions/config-ext.git
27013e7e0fd814ba666e4bae671521e1635eda18
---------------------------------------
git://github.com/microprofile-extensions/health-ext.git
fed9fd0d7b95576bae69fd46c82e26623c9c20f7
---------------------------------------
git://github.com/microprofile-extensions/openapi-ext.git
dac59beac4c765fc5aff60d658e90986793a4698
---------------------------------------
git://github.com/MicroShed/microshed-testing.git
443526893cdd521e03f73417485a790ca5db7ad0
---------------------------------------
git://github.com/minhtranfu/capstone-ccp.git
41c3d1e6f11a23a40ca529a650389ae189dc355b
---------------------------------------
git://github.com/mmerali96/exuberant-work.git
93c1840746240abd5aa9a95f29c07e69f8838af1
---------------------------------------
git://github.com/mmulholl/codewind.git
788c463b8b5350e35c5988fac16e665110af3837
---------------------------------------
git://github.com/MohamedGawad/UserActivites-Microservice.git
2cf009e801f6d4c868a9d8463483cd4815443870
---------------------------------------
git://github.com/MohamedGawad/UserManagement-Microservice.git
d0618993c6d9fe13cc0944b4fe68a04eacf8033f
---------------------------------------
git://github.com/Mordi490/MDS_oblig_2.git
53b5bbe91bd06d72bbf91179625d5aaa304b0fa4
---------------------------------------
git://github.com/m-reza-rahman/pragmatic-microservices-lab.git
4849924b0adfd2f754dbf899885ab46fdc6d50c9
---------------------------------------
git://github.com/MS7700/Java-Proyects.git
efa051e5ee7dd1c8dda7dcffff493048f9d8e37c
---------------------------------------
git://github.com/mschamle/jee8cdi.git
064ea342bffdb240198e75574e6bc873e236470b
---------------------------------------
git://github.com/msgoat/cnj-logging.git
ae5435d7524fde931f8f67b8b9ef70851475443e
---------------------------------------
git://github.com/msgoat/cnj-monitoring.git
27d2665d60533b754317dbfaa768172a7644c478
---------------------------------------
git://github.com/msgoat/cnj-openapi.git
c35c4333a0b6957e6e5940e260b63fa6eb039e22
---------------------------------------
git://github.com/msgoat/cnj-persistence-sql.git
609352ae84f5279158f34b05e161c59b0ddca4f9
---------------------------------------
git://github.com/msgoat/cnj-resilience.git
5f417d268612d06e5a18b9e4cfb79f6db7f42e7e
---------------------------------------
git://github.com/msgoat/cnj-rest.git
0b8a2c30f2b633371e37db540d7304d42a74a4f8
---------------------------------------
git://github.com/msgoat/cnj-tracing.git
071fd6be331c167567ade283d1a00159b0ddaf68
---------------------------------------
git://github.com/msobkow/msscfe.git
53448b3c7a4141c189bb2efda37d9593e6c0cba2
---------------------------------------
git://github.com/Neel28/javaee_concurrency.git
a46555895f85221bd871a055471265525781be68
---------------------------------------
git://github.com/nheidloff/application-modernization-javaee-quarkus.git
5c385b5c549c6822537c4b46e168282737aa77e3
---------------------------------------
git://github.com/nheidloff/openwhisk-memory-java-javascript.git
635600249e32e6153e4d7fc5ddf48ebd86c6f975
---------------------------------------
git://github.com/nheidloff/s2i-open-liberty.git
594730054a2d5228c61690d78ee8ecc6fdc3b379
---------------------------------------
git://github.com/Nils0xFF/JavaEE-Jobfair.git
74913b1326509fdfd183c558dbe76b7c85b78703
---------------------------------------
git://github.com/NissesSenap/openliberty-app.git