-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitmodules
1140 lines (1140 loc) · 47.3 KB
/
.gitmodules
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
[submodule "Meeds-io/gatein-portal"]
path = Meeds-io/gatein-portal
url = [email protected]:Meeds-io/gatein-portal.git
[submodule "Meeds-io/notes"]
path = Meeds-io/notes
url = [email protected]:Meeds-io/notes.git
[submodule "Meeds-io/addons-manager"]
path = Meeds-io/addons-manager
url = [email protected]:Meeds-io/addons-manager.git
[submodule "Meeds-io/social"]
path = Meeds-io/social
url = [email protected]:Meeds-io/social.git
[submodule "Meeds-io/commons"]
path = Meeds-io/commons
url = [email protected]:Meeds-io/commons.git
[submodule "Meeds-io/push-notifications"]
path = Meeds-io/push-notifications
url = [email protected]:Meeds-io/push-notifications.git
[submodule "Meeds-io/wallet"]
path = Meeds-io/wallet
url = [email protected]:Meeds-io/wallet.git
[submodule "Meeds-io/perk-store"]
path = Meeds-io/perk-store
url = [email protected]:Meeds-io/perk-store.git
[submodule "Meeds-io/gamification"]
path = Meeds-io/gamification
url = [email protected]:Meeds-io/gamification.git
[submodule "Meeds-io/platform-ui"]
path = Meeds-io/platform-ui
url = [email protected]:Meeds-io/platform-ui.git
[submodule "Meeds-io/app-center"]
path = Meeds-io/app-center
url = [email protected]:Meeds-io/app-center.git
[submodule "Meeds-io/maven-depmgt-pom"]
path = Meeds-io/maven-depmgt-pom
url = [email protected]:Meeds-io/maven-depmgt-pom.git
[submodule "Meeds-io/kudos"]
path = Meeds-io/kudos
url = [email protected]:Meeds-io/kudos.git
[submodule "Meeds-io/gatein-sso"]
path = Meeds-io/gatein-sso
url = [email protected]:Meeds-io/gatein-sso.git
[submodule "Meeds-io/gatein-pc"]
path = Meeds-io/gatein-pc
url = [email protected]:Meeds-io/gatein-pc.git
[submodule "Meeds-io/ws"]
path = Meeds-io/ws
url = [email protected]:Meeds-io/ws.git
[submodule "Meeds-io/core"]
path = Meeds-io/core
url = [email protected]:Meeds-io/core.git
[submodule "Meeds-io/kernel"]
path = Meeds-io/kernel
url = [email protected]:Meeds-io/kernel.git
[submodule "Meeds-io/gatein-wci"]
path = Meeds-io/gatein-wci
url = [email protected]:Meeds-io/gatein-wci.git
[submodule "Meeds-io/addons-parent-pom"]
path = Meeds-io/addons-parent-pom
url = [email protected]:Meeds-io/addons-parent-pom.git
[submodule "Meeds-io/ert-contract"]
path = Meeds-io/ert-contract
url = [email protected]:Meeds-io/ert-contract.git
[submodule "Meeds-io/meeds"]
path = Meeds-io/meeds
url = [email protected]:Meeds-io/meeds.git
[submodule "Meeds-io/maven-parent-pom"]
path = Meeds-io/maven-parent-pom
url = [email protected]:Meeds-io/maven-parent-pom.git
[submodule "Meeds-io/meeds-docker"]
path = Meeds-io/meeds-docker
url = [email protected]:Meeds-io/meeds-docker.git
[submodule "exoplatform/sugarcrm-exosocial"]
path = exoplatform/sugarcrm-exosocial
url = [email protected]:exoplatform/sugarcrm-exosocial.git
[submodule "exoplatform/spring-roo-monitoring-gadget"]
path = exoplatform/spring-roo-monitoring-gadget
url = [email protected]:exoplatform/spring-roo-monitoring-gadget.git
[submodule "exoplatform/staxnav"]
path = exoplatform/staxnav
url = [email protected]:exoplatform/staxnav.git
[submodule "exoplatform/statusdashboard"]
path = exoplatform/statusdashboard
url = [email protected]:exoplatform/statusdashboard.git
[submodule "exoplatform/wikbook"]
path = exoplatform/wikbook
url = [email protected]:exoplatform/wikbook.git
[submodule "exoplatform/qdox"]
path = exoplatform/qdox
url = [email protected]:exoplatform/qdox.git
[submodule "exoplatform/developer.exoplatform.org"]
path = exoplatform/developer.exoplatform.org
url = [email protected]:exoplatform/developer.exoplatform.org.git
[submodule "exoplatform/adt"]
path = exoplatform/adt
url = [email protected]:exoplatform/adt.git
[submodule "exoplatform/my-exo"]
path = exoplatform/my-exo
url = [email protected]:exoplatform/my-exo.git
[submodule "exoplatform/qa-jmxtrans"]
path = exoplatform/qa-jmxtrans
url = [email protected]:exoplatform/qa-jmxtrans.git
[submodule "exoplatform/mobile-server-extension"]
path = exoplatform/mobile-server-extension
url = [email protected]:exoplatform/mobile-server-extension.git
[submodule "exoplatform/qa-website-extension"]
path = exoplatform/qa-website-extension
url = [email protected]:exoplatform/qa-website-extension.git
[submodule "exoplatform/jcr-docs-style"]
path = exoplatform/jcr-docs-style
url = [email protected]:exoplatform/jcr-docs-style.git
[submodule "exoplatform/junit-fwk"]
path = exoplatform/junit-fwk
url = [email protected]:exoplatform/junit-fwk.git
[submodule "exoplatform/jcr-msofficeplugin"]
path = exoplatform/jcr-msofficeplugin
url = [email protected]:exoplatform/jcr-msofficeplugin.git
[submodule "exoplatform/cp-maaf"]
path = exoplatform/cp-maaf
url = [email protected]:exoplatform/cp-maaf.git
[submodule "exoplatform/plf-tools-trial"]
path = exoplatform/plf-tools-trial
url = [email protected]:exoplatform/plf-tools-trial.git
[submodule "exoplatform/jcr-express-tests-automation-reports"]
path = exoplatform/jcr-express-tests-automation-reports
url = [email protected]:exoplatform/jcr-express-tests-automation-reports.git
[submodule "exoplatform/jcr-express-tests-automation"]
path = exoplatform/jcr-express-tests-automation
url = [email protected]:exoplatform/jcr-express-tests-automation.git
[submodule "exoplatform/jcr-benchmark-automation-reports"]
path = exoplatform/jcr-benchmark-automation-reports
url = [email protected]:exoplatform/jcr-benchmark-automation-reports.git
[submodule "exoplatform/jcr-benchmark-automation"]
path = exoplatform/jcr-benchmark-automation
url = [email protected]:exoplatform/jcr-benchmark-automation.git
[submodule "exoplatform/jcr-functional-automation"]
path = exoplatform/jcr-functional-automation
url = [email protected]:exoplatform/jcr-functional-automation.git
[submodule "exoplatform/jcr-single-thread-tests-automation"]
path = exoplatform/jcr-single-thread-tests-automation
url = [email protected]:exoplatform/jcr-single-thread-tests-automation.git
[submodule "exoplatform/user-service"]
path = exoplatform/user-service
url = [email protected]:exoplatform/user-service.git
[submodule "exoplatform/jcr-openofficeplugin"]
path = exoplatform/jcr-openofficeplugin
url = [email protected]:exoplatform/jcr-openofficeplugin.git
[submodule "exoplatform/selegen"]
path = exoplatform/selegen
url = [email protected]:exoplatform/selegen.git
[submodule "exoplatform/plf-bonita"]
path = exoplatform/plf-bonita
url = [email protected]:exoplatform/plf-bonita.git
[submodule "exoplatform/log-reader"]
path = exoplatform/log-reader
url = [email protected]:exoplatform/log-reader.git
[submodule "exoplatform/jcr-benchmark"]
path = exoplatform/jcr-benchmark
url = [email protected]:exoplatform/jcr-benchmark.git
[submodule "exoplatform/jcr-services"]
path = exoplatform/jcr-services
url = [email protected]:exoplatform/jcr-services.git
[submodule "exoplatform/qa-selenium-automation"]
path = exoplatform/qa-selenium-automation
url = [email protected]:exoplatform/qa-selenium-automation.git
[submodule "exoplatform/qa-data-repository"]
path = exoplatform/qa-data-repository
url = [email protected]:exoplatform/qa-data-repository.git
[submodule "exoplatform/ecms"]
path = exoplatform/ecms
url = [email protected]:exoplatform/ecms.git
[submodule "exoplatform/jcr"]
path = exoplatform/jcr
url = [email protected]:exoplatform/jcr.git
[submodule "exoplatform/community-website"]
path = exoplatform/community-website
url = [email protected]:exoplatform/community-website.git
[submodule "exoplatform/training"]
path = exoplatform/training
url = [email protected]:exoplatform/training.git
[submodule "exoplatform/company-website"]
path = exoplatform/company-website
url = [email protected]:exoplatform/company-website.git
[submodule "exoplatform/maven-sandbox-project"]
path = exoplatform/maven-sandbox-project
url = [email protected]:exoplatform/maven-sandbox-project.git
[submodule "exoplatform/cp-cct"]
path = exoplatform/cp-cct
url = [email protected]:exoplatform/cp-cct.git
[submodule "exoplatform/qa-performance-testsuite"]
path = exoplatform/qa-performance-testsuite
url = [email protected]:exoplatform/qa-performance-testsuite.git
[submodule "exoplatform/presales"]
path = exoplatform/presales
url = [email protected]:exoplatform/presales.git
[submodule "exoplatform/crowdin-maven-plugin"]
path = exoplatform/crowdin-maven-plugin
url = [email protected]:exoplatform/crowdin-maven-plugin.git
[submodule "exoplatform/tqa-tn-jenkins-config"]
path = exoplatform/tqa-tn-jenkins-config
url = [email protected]:exoplatform/tqa-tn-jenkins-config.git
[submodule "exoplatform/cp-gerap"]
path = exoplatform/cp-gerap
url = [email protected]:exoplatform/cp-gerap.git
[submodule "exoplatform/swf-scripts"]
path = exoplatform/swf-scripts
url = [email protected]:exoplatform/swf-scripts.git
[submodule "exoplatform/ui-test"]
path = exoplatform/ui-test
url = [email protected]:exoplatform/ui-test.git
[submodule "exoplatform/ux-guidelines"]
path = exoplatform/ux-guidelines
url = [email protected]:exoplatform/ux-guidelines.git
[submodule "exoplatform/qa-gdash-config"]
path = exoplatform/qa-gdash-config
url = [email protected]:exoplatform/qa-gdash-config.git
[submodule "exoplatform/platform-documentation"]
path = exoplatform/platform-documentation
url = [email protected]:exoplatform/platform-documentation.git
[submodule "exoplatform/exo-dev-resources"]
path = exoplatform/exo-dev-resources
url = [email protected]:exoplatform/exo-dev-resources.git
[submodule "exoplatform/chat-application"]
path = exoplatform/chat-application
url = [email protected]:exoplatform/chat-application.git
[submodule "exoplatform/xcmis"]
path = exoplatform/xcmis
url = [email protected]:exoplatform/xcmis.git
[submodule "exoplatform/infra-jenkins-config"]
path = exoplatform/infra-jenkins-config
url = [email protected]:exoplatform/infra-jenkins-config.git
[submodule "exoplatform/platform-public-distributions"]
path = exoplatform/platform-public-distributions
url = [email protected]:exoplatform/platform-public-distributions.git
[submodule "exoplatform/platform-private-distributions"]
path = exoplatform/platform-private-distributions
url = [email protected]:exoplatform/platform-private-distributions.git
[submodule "exoplatform/puppet-srv-cfg"]
path = exoplatform/puppet-srv-cfg
url = [email protected]:exoplatform/puppet-srv-cfg.git
[submodule "exoplatform/puppet-intranet"]
path = exoplatform/puppet-intranet
url = [email protected]:exoplatform/puppet-intranet.git
[submodule "exoplatform/cp-opencloudware"]
path = exoplatform/cp-opencloudware
url = [email protected]:exoplatform/cp-opencloudware.git
[submodule "exoplatform/weemo-extension"]
path = exoplatform/weemo-extension
url = [email protected]:exoplatform/weemo-extension.git
[submodule "exoplatform/puppet-community"]
path = exoplatform/puppet-community
url = [email protected]:exoplatform/puppet-community.git
[submodule "exoplatform/oft"]
path = exoplatform/oft
url = [email protected]:exoplatform/oft.git
[submodule "exoplatform/puppet-docs"]
path = exoplatform/puppet-docs
url = [email protected]:exoplatform/puppet-docs.git
[submodule "exoplatform/cp-bluebook-network"]
path = exoplatform/cp-bluebook-network
url = [email protected]:exoplatform/cp-bluebook-network.git
[submodule "exoplatform/puppet-exo_cloud"]
path = exoplatform/puppet-exo_cloud
url = [email protected]:exoplatform/puppet-exo_cloud.git
[submodule "exoplatform/sonar-objective-c"]
path = exoplatform/sonar-objective-c
url = [email protected]:exoplatform/sonar-objective-c.git
[submodule "exoplatform/cp-elysee"]
path = exoplatform/cp-elysee
url = [email protected]:exoplatform/cp-elysee.git
[submodule "exoplatform/cp-bluebook-network-intranet"]
path = exoplatform/cp-bluebook-network-intranet
url = [email protected]:exoplatform/cp-bluebook-network-intranet.git
[submodule "exoplatform/wai-sample"]
path = exoplatform/wai-sample
url = [email protected]:exoplatform/wai-sample.git
[submodule "exoplatform/poc-ag2r"]
path = exoplatform/poc-ag2r
url = [email protected]:exoplatform/poc-ag2r.git
[submodule "exoplatform/social-client-java"]
path = exoplatform/social-client-java
url = [email protected]:exoplatform/social-client-java.git
[submodule "exoplatform/poi"]
path = exoplatform/poi
url = [email protected]:exoplatform/poi.git
[submodule "exoplatform/uxpaas"]
path = exoplatform/uxpaas
url = [email protected]:exoplatform/uxpaas.git
[submodule "exoplatform/spnego-addon"]
path = exoplatform/spnego-addon
url = [email protected]:exoplatform/spnego-addon.git
[submodule "exoplatform/saml2-addon"]
path = exoplatform/saml2-addon
url = [email protected]:exoplatform/saml2-addon.git
[submodule "exoplatform/openam-addon"]
path = exoplatform/openam-addon
url = [email protected]:exoplatform/openam-addon.git
[submodule "exoplatform/josso-addon"]
path = exoplatform/josso-addon
url = [email protected]:exoplatform/josso-addon.git
[submodule "exoplatform/task"]
path = exoplatform/task
url = [email protected]:exoplatform/task.git
[submodule "exoplatform/playframework-elasticsearch"]
path = exoplatform/playframework-elasticsearch
url = [email protected]:exoplatform/playframework-elasticsearch.git
[submodule "exoplatform/cp-almarelo"]
path = exoplatform/cp-almarelo
url = [email protected]:exoplatform/cp-almarelo.git
[submodule "exoplatform/infra-doc"]
path = exoplatform/infra-doc
url = [email protected]:exoplatform/infra-doc.git
[submodule "exoplatform/puppet-buy"]
path = exoplatform/puppet-buy
url = [email protected]:exoplatform/puppet-buy.git
[submodule "exoplatform/jodconverter"]
path = exoplatform/jodconverter
url = [email protected]:exoplatform/jodconverter.git
[submodule "exoplatform/sonar-exo-rules"]
path = exoplatform/sonar-exo-rules
url = [email protected]:exoplatform/sonar-exo-rules.git
[submodule "exoplatform/poc-api-test"]
path = exoplatform/poc-api-test
url = [email protected]:exoplatform/poc-api-test.git
[submodule "exoplatform/puppet-uxpaas"]
path = exoplatform/puppet-uxpaas
url = [email protected]:exoplatform/puppet-uxpaas.git
[submodule "exoplatform/exo-android"]
path = exoplatform/exo-android
url = [email protected]:exoplatform/exo-android.git
[submodule "exoplatform/exo-ios"]
path = exoplatform/exo-ios
url = [email protected]:exoplatform/exo-ios.git
[submodule "exoplatform/poc-ui-test-selenium"]
path = exoplatform/poc-ui-test-selenium
url = [email protected]:exoplatform/poc-ui-test-selenium.git
[submodule "exoplatform/portal-tokens-tools"]
path = exoplatform/portal-tokens-tools
url = [email protected]:exoplatform/portal-tokens-tools.git
[submodule "exoplatform/swf-jenkins-config"]
path = exoplatform/swf-jenkins-config
url = [email protected]:exoplatform/swf-jenkins-config.git
[submodule "exoplatform/jcabi-maven-plugin"]
path = exoplatform/jcabi-maven-plugin
url = [email protected]:exoplatform/jcabi-maven-plugin.git
[submodule "exoplatform/onlyoffice"]
path = exoplatform/onlyoffice
url = [email protected]:exoplatform/onlyoffice.git
[submodule "exoplatform/qa-gatling-performance"]
path = exoplatform/qa-gatling-performance
url = [email protected]:exoplatform/qa-gatling-performance.git
[submodule "exoplatform/swf-release-manager"]
path = exoplatform/swf-release-manager
url = [email protected]:exoplatform/swf-release-manager.git
[submodule "exoplatform/cp-elysee-mobile"]
path = exoplatform/cp-elysee-mobile
url = [email protected]:exoplatform/cp-elysee-mobile.git
[submodule "exoplatform/swf-release-manager-catalog"]
path = exoplatform/swf-release-manager-catalog
url = [email protected]:exoplatform/swf-release-manager-catalog.git
[submodule "exoplatform/swf-jenkins-pipeline-libs"]
path = exoplatform/swf-jenkins-pipeline-libs
url = [email protected]:exoplatform/swf-jenkins-pipeline-libs.git
[submodule "exoplatform/hosting-scripts"]
path = exoplatform/hosting-scripts
url = [email protected]:exoplatform/hosting-scripts.git
[submodule "exoplatform/swf-jenkins-pipeline"]
path = exoplatform/swf-jenkins-pipeline
url = [email protected]:exoplatform/swf-jenkins-pipeline.git
[submodule "exoplatform/exo-blog"]
path = exoplatform/exo-blog
url = [email protected]:exoplatform/exo-blog.git
[submodule "exoplatform/poc-aunde"]
path = exoplatform/poc-aunde
url = [email protected]:exoplatform/poc-aunde.git
[submodule "exoplatform/cp-astia"]
path = exoplatform/cp-astia
url = [email protected]:exoplatform/cp-astia.git
[submodule "exoplatform/platform-ui-automation-test"]
path = exoplatform/platform-ui-automation-test
url = [email protected]:exoplatform/platform-ui-automation-test.git
[submodule "exoplatform/cp-mpen-togo"]
path = exoplatform/cp-mpen-togo
url = [email protected]:exoplatform/cp-mpen-togo.git
[submodule "exoplatform/cp-gendarmerie"]
path = exoplatform/cp-gendarmerie
url = [email protected]:exoplatform/cp-gendarmerie.git
[submodule "exoplatform/swf-jenkins-pipeline-dev"]
path = exoplatform/swf-jenkins-pipeline-dev
url = [email protected]:exoplatform/swf-jenkins-pipeline-dev.git
[submodule "exoplatform/platform-qa-security"]
path = exoplatform/platform-qa-security
url = [email protected]:exoplatform/platform-qa-security.git
[submodule "exoplatform/platform-qa-ui-data"]
path = exoplatform/platform-qa-ui-data
url = [email protected]:exoplatform/platform-qa-ui-data.git
[submodule "exoplatform/cp-atisnetwork"]
path = exoplatform/cp-atisnetwork
url = [email protected]:exoplatform/cp-atisnetwork.git
[submodule "exoplatform/qa-security-automation"]
path = exoplatform/qa-security-automation
url = [email protected]:exoplatform/qa-security-automation.git
[submodule "exoplatform/cp-aerov"]
path = exoplatform/cp-aerov
url = [email protected]:exoplatform/cp-aerov.git
[submodule "exoplatform/web-conferencing"]
path = exoplatform/web-conferencing
url = [email protected]:exoplatform/web-conferencing.git
[submodule "exoplatform/qa-scripts"]
path = exoplatform/qa-scripts
url = [email protected]:exoplatform/qa-scripts.git
[submodule "exoplatform/qa-w3af-auto"]
path = exoplatform/qa-w3af-auto
url = [email protected]:exoplatform/qa-w3af-auto.git
[submodule "exoplatform/cp-atisnetwork-android"]
path = exoplatform/cp-atisnetwork-android
url = [email protected]:exoplatform/cp-atisnetwork-android.git
[submodule "exoplatform/cp-atisnetwork-ios"]
path = exoplatform/cp-atisnetwork-ios
url = [email protected]:exoplatform/cp-atisnetwork-ios.git
[submodule "exoplatform/cp-cd95"]
path = exoplatform/cp-cd95
url = [email protected]:exoplatform/cp-cd95.git
[submodule "exoplatform/monitoring-stack"]
path = exoplatform/monitoring-stack
url = [email protected]:exoplatform/monitoring-stack.git
[submodule "exoplatform/exo-ios-certificates"]
path = exoplatform/exo-ios-certificates
url = [email protected]:exoplatform/exo-ios-certificates.git
[submodule "exoplatform/cp-atisnetwork-ios-certificates"]
path = exoplatform/cp-atisnetwork-ios-certificates
url = [email protected]:exoplatform/cp-atisnetwork-ios-certificates.git
[submodule "exoplatform/cp-vivalto"]
path = exoplatform/cp-vivalto
url = [email protected]:exoplatform/cp-vivalto.git
[submodule "exoplatform/cp-mae-reseau21"]
path = exoplatform/cp-mae-reseau21
url = [email protected]:exoplatform/cp-mae-reseau21.git
[submodule "exoplatform/cp-dgfla"]
path = exoplatform/cp-dgfla
url = [email protected]:exoplatform/cp-dgfla.git
[submodule "exoplatform/cp-goip"]
path = exoplatform/cp-goip
url = [email protected]:exoplatform/cp-goip.git
[submodule "exoplatform/cp-obf"]
path = exoplatform/cp-obf
url = [email protected]:exoplatform/cp-obf.git
[submodule "exoplatform/cp-cetih"]
path = exoplatform/cp-cetih
url = [email protected]:exoplatform/cp-cetih.git
[submodule "exoplatform/exo-documentation"]
path = exoplatform/exo-documentation
url = [email protected]:exoplatform/exo-documentation.git
[submodule "exoplatform/cp-tim-saml2-integration"]
path = exoplatform/cp-tim-saml2-integration
url = [email protected]:exoplatform/cp-tim-saml2-integration.git
[submodule "exoplatform/training-exercises"]
path = exoplatform/training-exercises
url = [email protected]:exoplatform/training-exercises.git
[submodule "exoplatform/cp-ai4eu"]
path = exoplatform/cp-ai4eu
url = [email protected]:exoplatform/cp-ai4eu.git
[submodule "exoplatform/cp-excellence-vegetale"]
path = exoplatform/cp-excellence-vegetale
url = [email protected]:exoplatform/cp-excellence-vegetale.git
[submodule "exoplatform/python-github-backup"]
path = exoplatform/python-github-backup
url = [email protected]:exoplatform/python-github-backup.git
[submodule "exoplatform/poc-sandbox"]
path = exoplatform/poc-sandbox
url = [email protected]:exoplatform/poc-sandbox.git
[submodule "exoplatform/cp-monveto"]
path = exoplatform/cp-monveto
url = [email protected]:exoplatform/cp-monveto.git
[submodule "exoplatform/cp-interarts"]
path = exoplatform/cp-interarts
url = [email protected]:exoplatform/cp-interarts.git
[submodule "exoplatform/news"]
path = exoplatform/news
url = [email protected]:exoplatform/news.git
[submodule "exoplatform/digital-workplace"]
path = exoplatform/digital-workplace
url = [email protected]:exoplatform/digital-workplace.git
[submodule "exoplatform/legacy-intranet"]
path = exoplatform/legacy-intranet
url = [email protected]:exoplatform/legacy-intranet.git
[submodule "exoplatform/data-upgrade"]
path = exoplatform/data-upgrade
url = [email protected]:exoplatform/data-upgrade.git
[submodule "exoplatform/puppet-config"]
path = exoplatform/puppet-config
url = [email protected]:exoplatform/puppet-config.git
[submodule "exoplatform/layout-management"]
path = exoplatform/layout-management
url = [email protected]:exoplatform/layout-management.git
[submodule "exoplatform/cp-safran"]
path = exoplatform/cp-safran
url = [email protected]:exoplatform/cp-safran.git
[submodule "exoplatform/meeds"]
path = exoplatform/meeds
url = [email protected]:exoplatform/meeds.git
[submodule "exoplatform/puppet-dev"]
path = exoplatform/puppet-dev
url = [email protected]:exoplatform/puppet-dev.git
[submodule "exoplatform/cp-first-capital"]
path = exoplatform/cp-first-capital
url = [email protected]:exoplatform/cp-first-capital.git
[submodule "exoplatform/cp-aefinfo"]
path = exoplatform/cp-aefinfo
url = [email protected]:exoplatform/cp-aefinfo.git
[submodule "exoplatform/swf-exo-parent"]
path = exoplatform/swf-exo-parent
url = [email protected]:exoplatform/swf-exo-parent.git
[submodule "exoplatform/cp-weishardt"]
path = exoplatform/cp-weishardt
url = [email protected]:exoplatform/cp-weishardt.git
[submodule "exoplatform/agenda"]
path = exoplatform/agenda
url = [email protected]:exoplatform/agenda.git
[submodule "exoplatform/microservices"]
path = exoplatform/microservices
url = [email protected]:exoplatform/microservices.git
[submodule "exo-docker/ubuntu-jdk7"]
path = exo-docker/ubuntu-jdk7
url = [email protected]:exo-docker/ubuntu-jdk7.git
[submodule "exo-docker/ubuntu-jdk7-exo"]
path = exo-docker/ubuntu-jdk7-exo
url = [email protected]:exo-docker/ubuntu-jdk7-exo.git
[submodule "exo-docker/ubuntu-jdk7-exo-chat"]
path = exo-docker/ubuntu-jdk7-exo-chat
url = [email protected]:exo-docker/ubuntu-jdk7-exo-chat.git
[submodule "exo-docker/exo-maven"]
path = exo-docker/exo-maven
url = [email protected]:exo-docker/exo-maven.git
[submodule "exo-docker/exo-addons"]
path = exo-docker/exo-addons
url = [email protected]:exo-docker/exo-addons.git
[submodule "exo-docker/base-jdk"]
path = exo-docker/base-jdk
url = [email protected]:exo-docker/base-jdk.git
[submodule "exo-docker/exo-trial"]
path = exo-docker/exo-trial
url = [email protected]:exo-docker/exo-trial.git
[submodule "exo-docker/exo"]
path = exo-docker/exo
url = [email protected]:exo-docker/exo.git
[submodule "exo-docker/exo-smtp"]
path = exo-docker/exo-smtp
url = [email protected]:exo-docker/exo-smtp.git
[submodule "exo-docker/exo-ci"]
path = exo-docker/exo-ci
url = [email protected]:exo-docker/exo-ci.git
[submodule "exo-docker/sensu"]
path = exo-docker/sensu
url = [email protected]:exo-docker/sensu.git
[submodule "exo-docker/exo-che"]
path = exo-docker/exo-che
url = [email protected]:exo-docker/exo-che.git
[submodule "exo-docker/exo-elasticsearch"]
path = exo-docker/exo-elasticsearch
url = [email protected]:exo-docker/exo-elasticsearch.git
[submodule "exo-docker/exo-jitsi-meet"]
path = exo-docker/exo-jitsi-meet
url = [email protected]:exo-docker/exo-jitsi-meet.git
[submodule "exo-docker/exo-release"]
path = exo-docker/exo-release
url = [email protected]:exo-docker/exo-release.git
[submodule "exo-docker/exo-oracle"]
path = exo-docker/exo-oracle
url = [email protected]:exo-docker/exo-oracle.git
[submodule "exo-docker/exo-sqlserver"]
path = exo-docker/exo-sqlserver
url = [email protected]:exo-docker/exo-sqlserver.git
[submodule "exo-docker/wordpress"]
path = exo-docker/wordpress
url = [email protected]:exo-docker/wordpress.git
[submodule "exo-docker/exo-nginx"]
path = exo-docker/exo-nginx
url = [email protected]:exo-docker/exo-nginx.git
[submodule "exo-docker/jmxtrans"]
path = exo-docker/jmxtrans
url = [email protected]:exo-docker/jmxtrans.git
[submodule "exo-docker/exo-chat-server"]
path = exo-docker/exo-chat-server
url = [email protected]:exo-docker/exo-chat-server.git
[submodule "exo-docker/jmeter"]
path = exo-docker/jmeter
url = [email protected]:exo-docker/jmeter.git
[submodule "exo-docker/exo-mysqltuner"]
path = exo-docker/exo-mysqltuner
url = [email protected]:exo-docker/exo-mysqltuner.git
[submodule "exo-docker/docker-openldap"]
path = exo-docker/docker-openldap
url = [email protected]:exo-docker/docker-openldap.git
[submodule "exo-docker/ubuntu"]
path = exo-docker/ubuntu
url = [email protected]:exo-docker/ubuntu.git
[submodule "exo-docker/jdk"]
path = exo-docker/jdk
url = [email protected]:exo-docker/jdk.git
[submodule "exo-docker/exo-coturn"]
path = exo-docker/exo-coturn
url = [email protected]:exo-docker/exo-coturn.git
[submodule "exo-docker/exo-backstopjs"]
path = exo-docker/exo-backstopjs
url = [email protected]:exo-docker/exo-backstopjs.git
[submodule "exo-docker/lightweightCMISserver"]
path = exo-docker/lightweightCMISserver
url = [email protected]:exo-docker/lightweightCMISserver.git
[submodule "exo-docker/jira"]
path = exo-docker/jira
url = [email protected]:exo-docker/jira.git
[submodule "exo-docker/cmis-server"]
path = exo-docker/cmis-server
url = [email protected]:exo-docker/cmis-server.git
[submodule "exo-docker/exo-documentserver"]
path = exo-docker/exo-documentserver
url = [email protected]:exo-docker/exo-documentserver.git
[submodule "exo-docker/exo-documentserver-ie"]
path = exo-docker/exo-documentserver-ie
url = [email protected]:exo-docker/exo-documentserver-ie.git
[submodule "exo-docker/squash-tm"]
path = exo-docker/squash-tm
url = [email protected]:exo-docker/squash-tm.git
[submodule "exo-docker/jitsi-call"]
path = exo-docker/jitsi-call
url = [email protected]:exo-docker/jitsi-call.git
[submodule "exodev/exogtn"]
path = exodev/exogtn
url = [email protected]:exodev/exogtn.git
[submodule "exodev/cs"]
path = exodev/cs
url = [email protected]:exodev/cs.git
[submodule "exodev/gwtframework"]
path = exodev/gwtframework
url = [email protected]:exodev/gwtframework.git
[submodule "exodev/jcr-msofficeplugin"]
path = exodev/jcr-msofficeplugin
url = [email protected]:exodev/jcr-msofficeplugin.git
[submodule "exodev/jcr-openofficeplugin"]
path = exodev/jcr-openofficeplugin
url = [email protected]:exodev/jcr-openofficeplugin.git
[submodule "exodev/ide"]
path = exodev/ide
url = [email protected]:exodev/ide.git
[submodule "exodev/maven-sandbox-project"]
path = exodev/maven-sandbox-project
url = [email protected]:exodev/maven-sandbox-project.git
[submodule "exodev/webos"]
path = exodev/webos
url = [email protected]:exodev/webos.git
[submodule "exodev/xcmis"]
path = exodev/xcmis
url = [email protected]:exodev/xcmis.git
[submodule "exo-addons/twitter-integration"]
path = exo-addons/twitter-integration
url = [email protected]:exo-addons/twitter-integration.git
[submodule "exo-addons/setup-wizard-extension"]
path = exo-addons/setup-wizard-extension
url = [email protected]:exo-addons/setup-wizard-extension.git
[submodule "exo-addons/wiki-macro-loremipsum"]
path = exo-addons/wiki-macro-loremipsum
url = [email protected]:exo-addons/wiki-macro-loremipsum.git
[submodule "exo-addons/blog-extension"]
path = exo-addons/blog-extension
url = [email protected]:exo-addons/blog-extension.git
[submodule "exo-addons/sso-extension"]
path = exo-addons/sso-extension
url = [email protected]:exo-addons/sso-extension.git
[submodule "exo-addons/bonita-extension"]
path = exo-addons/bonita-extension
url = [email protected]:exo-addons/bonita-extension.git
[submodule "exo-addons/staging-extension"]
path = exo-addons/staging-extension
url = [email protected]:exo-addons/staging-extension.git
[submodule "exo-addons/intranet-extras"]
path = exo-addons/intranet-extras
url = [email protected]:exo-addons/intranet-extras.git
[submodule "exo-addons/documents-application"]
path = exo-addons/documents-application
url = [email protected]:exo-addons/documents-application.git
[submodule "exo-addons/google-docs-extension"]
path = exo-addons/google-docs-extension
url = [email protected]:exo-addons/google-docs-extension.git
[submodule "exo-addons/adn-gallery"]
path = exo-addons/adn-gallery
url = [email protected]:exo-addons/adn-gallery.git
[submodule "exo-addons/news-slider"]
path = exo-addons/news-slider
url = [email protected]:exo-addons/news-slider.git
[submodule "exo-addons/mobile-template-extension"]
path = exo-addons/mobile-template-extension
url = [email protected]:exo-addons/mobile-template-extension.git
[submodule "exo-addons/cloud-drive-extension"]
path = exo-addons/cloud-drive-extension
url = [email protected]:exo-addons/cloud-drive-extension.git
[submodule "exo-addons/demo-extension"]
path = exo-addons/demo-extension
url = [email protected]:exo-addons/demo-extension.git
[submodule "exo-addons/recentupdate-wiki-macro"]
path = exo-addons/recentupdate-wiki-macro
url = [email protected]:exo-addons/recentupdate-wiki-macro.git
[submodule "exo-addons/video-wiki-macro"]
path = exo-addons/video-wiki-macro
url = [email protected]:exo-addons/video-wiki-macro.git
[submodule "exo-addons/newrelic-extension"]
path = exo-addons/newrelic-extension
url = [email protected]:exo-addons/newrelic-extension.git
[submodule "exo-addons/resource-center"]
path = exo-addons/resource-center
url = [email protected]:exo-addons/resource-center.git
[submodule "exo-addons/pagesjaunes-extension"]
path = exo-addons/pagesjaunes-extension
url = [email protected]:exo-addons/pagesjaunes-extension.git
[submodule "exo-addons/exchange-extension"]
path = exo-addons/exchange-extension
url = [email protected]:exo-addons/exchange-extension.git
[submodule "exo-addons/extension-generator"]
path = exo-addons/extension-generator
url = [email protected]:exo-addons/extension-generator.git
[submodule "exo-addons/sirona-addon"]
path = exo-addons/sirona-addon
url = [email protected]:exo-addons/sirona-addon.git
[submodule "exo-addons/organization-service-mongodb"]
path = exo-addons/organization-service-mongodb
url = [email protected]:exo-addons/organization-service-mongodb.git
[submodule "exo-addons/gmail-addon"]
path = exo-addons/gmail-addon
url = [email protected]:exo-addons/gmail-addon.git
[submodule "exo-addons/atemis-addon"]
path = exo-addons/atemis-addon
url = [email protected]:exo-addons/atemis-addon.git
[submodule "exo-addons/jmxtrans-addon"]
path = exo-addons/jmxtrans-addon
url = [email protected]:exo-addons/jmxtrans-addon.git
[submodule "exo-addons/portlet-pack"]
path = exo-addons/portlet-pack
url = [email protected]:exo-addons/portlet-pack.git
[submodule "exo-addons/publication-noversion-extension"]
path = exo-addons/publication-noversion-extension
url = [email protected]:exo-addons/publication-noversion-extension.git
[submodule "exo-addons/cmis-search-connector"]
path = exo-addons/cmis-search-connector
url = [email protected]:exo-addons/cmis-search-connector.git
[submodule "exo-addons/sample-jsf-portlet"]
path = exo-addons/sample-jsf-portlet
url = [email protected]:exo-addons/sample-jsf-portlet.git
[submodule "exo-addons/sample-springmvc-portlet"]
path = exo-addons/sample-springmvc-portlet
url = [email protected]:exo-addons/sample-springmvc-portlet.git
[submodule "exo-addons/statistics-extension"]
path = exo-addons/statistics-extension
url = [email protected]:exo-addons/statistics-extension.git
[submodule "exo-addons/space-management-notification"]
path = exo-addons/space-management-notification
url = [email protected]:exo-addons/space-management-notification.git
[submodule "exo-addons/storage-library"]
path = exo-addons/storage-library
url = [email protected]:exo-addons/storage-library.git
[submodule "exo-addons/marketplace-extension"]
path = exo-addons/marketplace-extension
url = [email protected]:exo-addons/marketplace-extension.git
[submodule "exo-addons/mobile-notifications-addon"]
path = exo-addons/mobile-notifications-addon
url = [email protected]:exo-addons/mobile-notifications-addon.git
[submodule "exo-addons/responsive-addon"]
path = exo-addons/responsive-addon
url = [email protected]:exo-addons/responsive-addon.git
[submodule "exo-addons/spaces-administration"]
path = exo-addons/spaces-administration
url = [email protected]:exo-addons/spaces-administration.git
[submodule "exo-addons/elasticsearch-indexer"]
path = exo-addons/elasticsearch-indexer
url = [email protected]:exo-addons/elasticsearch-indexer.git
[submodule "exo-addons/brand-advocacy"]
path = exo-addons/brand-advocacy
url = [email protected]:exo-addons/brand-advocacy.git
[submodule "exo-addons/component-filter"]
path = exo-addons/component-filter
url = [email protected]:exo-addons/component-filter.git
[submodule "exo-addons/maintenance-warning-addon"]
path = exo-addons/maintenance-warning-addon
url = [email protected]:exo-addons/maintenance-warning-addon.git
[submodule "exo-addons/cloud-drive-sharepoint"]
path = exo-addons/cloud-drive-sharepoint
url = [email protected]:exo-addons/cloud-drive-sharepoint.git
[submodule "exo-addons/remove-my-account"]
path = exo-addons/remove-my-account
url = [email protected]:exo-addons/remove-my-account.git
[submodule "exo-addons/console-notification"]
path = exo-addons/console-notification
url = [email protected]:exo-addons/console-notification.git
[submodule "exo-addons/invite-friend"]
path = exo-addons/invite-friend
url = [email protected]:exo-addons/invite-friend.git
[submodule "exo-addons/dark-skin"]
path = exo-addons/dark-skin
url = [email protected]:exo-addons/dark-skin.git
[submodule "exo-addons/green-skin"]
path = exo-addons/green-skin
url = [email protected]:exo-addons/green-skin.git
[submodule "exo-addons/ldapui"]
path = exo-addons/ldapui
url = [email protected]:exo-addons/ldapui.git
[submodule "exo-addons/exoplatform-pulse"]
path = exo-addons/exoplatform-pulse
url = [email protected]:exo-addons/exoplatform-pulse.git
[submodule "exo-addons/josso-addon"]
path = exo-addons/josso-addon
url = [email protected]:exo-addons/josso-addon.git
[submodule "exo-addons/wai-sample"]
path = exo-addons/wai-sample
url = [email protected]:exo-addons/wai-sample.git
[submodule "exo-addons/acme-sample"]
path = exo-addons/acme-sample
url = [email protected]:exo-addons/acme-sample.git
[submodule "exo-addons/weemo-extension"]
path = exo-addons/weemo-extension
url = [email protected]:exo-addons/weemo-extension.git
[submodule "exo-addons/salesforce-integration"]
path = exo-addons/salesforce-integration
url = [email protected]:exo-addons/salesforce-integration.git
[submodule "exo-addons/moxtra-integration"]
path = exo-addons/moxtra-integration
url = [email protected]:exo-addons/moxtra-integration.git
[submodule "exo-addons/rest-api-doc"]
path = exo-addons/rest-api-doc
url = [email protected]:exo-addons/rest-api-doc.git
[submodule "exo-addons/sample-cdi-portlet"]
path = exo-addons/sample-cdi-portlet
url = [email protected]:exo-addons/sample-cdi-portlet.git
[submodule "exo-addons/import-users-csv"]
path = exo-addons/import-users-csv
url = [email protected]:exo-addons/import-users-csv.git
[submodule "exo-addons/change-password"]
path = exo-addons/change-password
url = [email protected]:exo-addons/change-password.git
[submodule "exo-addons/skinning"]
path = exo-addons/skinning
url = [email protected]:exo-addons/skinning.git
[submodule "exo-addons/github-oauth"]
path = exo-addons/github-oauth
url = [email protected]:exo-addons/github-oauth.git
[submodule "exo-addons/sdp-demo-extension"]
path = exo-addons/sdp-demo-extension
url = [email protected]:exo-addons/sdp-demo-extension.git
[submodule "exo-addons/space-categories"]
path = exo-addons/space-categories
url = [email protected]:exo-addons/space-categories.git
[submodule "exo-addons/portal-rdbms"]
path = exo-addons/portal-rdbms
url = [email protected]:exo-addons/portal-rdbms.git
[submodule "exo-addons/crash-addon"]
path = exo-addons/crash-addon
url = [email protected]:exo-addons/crash-addon.git
[submodule "exo-addons/exo-jdbc-driver-mysql"]
path = exo-addons/exo-jdbc-driver-mysql
url = [email protected]:exo-addons/exo-jdbc-driver-mysql.git
[submodule "exo-addons/exo-jdbc-driver-postgresql"]
path = exo-addons/exo-jdbc-driver-postgresql
url = [email protected]:exo-addons/exo-jdbc-driver-postgresql.git
[submodule "exo-addons/exo-jdbc-driver-sqlserver"]
path = exo-addons/exo-jdbc-driver-sqlserver
url = [email protected]:exo-addons/exo-jdbc-driver-sqlserver.git
[submodule "exo-addons/exo-jdbc-driver-oracle"]
path = exo-addons/exo-jdbc-driver-oracle
url = [email protected]:exo-addons/exo-jdbc-driver-oracle.git
[submodule "exo-addons/outlook"]
path = exo-addons/outlook
url = [email protected]:exo-addons/outlook.git
[submodule "exo-addons/external-user-invitation"]
path = exo-addons/external-user-invitation
url = [email protected]:exo-addons/external-user-invitation.git
[submodule "exo-addons/exo-crowdin"]
path = exo-addons/exo-crowdin
url = [email protected]:exo-addons/exo-crowdin.git
[submodule "exo-addons/html-wiki-macro"]
path = exo-addons/html-wiki-macro
url = [email protected]:exo-addons/html-wiki-macro.git
[submodule "exo-addons/monitoring"]
path = exo-addons/monitoring
url = [email protected]:exo-addons/monitoring.git
[submodule "exo-addons/linotp"]
path = exo-addons/linotp
url = [email protected]:exo-addons/linotp.git
[submodule "exo-addons/photo-localization"]
path = exo-addons/photo-localization
url = [email protected]:exo-addons/photo-localization.git
[submodule "exo-addons/skype"]
path = exo-addons/skype
url = [email protected]:exo-addons/skype.git
[submodule "exo-addons/data-injectors"]
path = exo-addons/data-injectors
url = [email protected]:exo-addons/data-injectors.git
[submodule "exo-addons/gatein-wsrp"]
path = exo-addons/gatein-wsrp
url = [email protected]:exo-addons/gatein-wsrp.git
[submodule "exo-addons/qa-users-groups-initializer"]
path = exo-addons/qa-users-groups-initializer
url = [email protected]:exo-addons/qa-users-groups-initializer.git
[submodule "exo-addons/net-promoter-score"]
path = exo-addons/net-promoter-score
url = [email protected]:exo-addons/net-promoter-score.git
[submodule "exo-addons/mandatory-spaces"]
path = exo-addons/mandatory-spaces
url = [email protected]:exo-addons/mandatory-spaces.git
[submodule "exo-addons/wiki-diagram"]
path = exo-addons/wiki-diagram
url = [email protected]:exo-addons/wiki-diagram.git
[submodule "exo-addons/intercom"]
path = exo-addons/intercom
url = [email protected]:exo-addons/intercom.git
[submodule "exo-addons/categories-management"]
path = exo-addons/categories-management
url = [email protected]:exo-addons/categories-management.git
[submodule "exo-addons/ideation"]
path = exo-addons/ideation
url = [email protected]:exo-addons/ideation.git
[submodule "exo-addons/github-integration"]
path = exo-addons/github-integration
url = [email protected]:exo-addons/github-integration.git
[submodule "exo-addons/activity-composer-configuration"]
path = exo-addons/activity-composer-configuration
url = [email protected]:exo-addons/activity-composer-configuration.git
[submodule "exo-addons/image-recognition"]
path = exo-addons/image-recognition
url = [email protected]:exo-addons/image-recognition.git
[submodule "exo-addons/ethereum-wallet"]
path = exo-addons/ethereum-wallet
url = [email protected]:exo-addons/ethereum-wallet.git
[submodule "exo-addons/catalog-viewer"]
path = exo-addons/catalog-viewer
url = [email protected]:exo-addons/catalog-viewer.git
[submodule "exo-addons/smart-activity-stream"]
path = exo-addons/smart-activity-stream
url = [email protected]:exo-addons/smart-activity-stream.git
[submodule "exo-addons/highlight-spaces"]
path = exo-addons/highlight-spaces
url = [email protected]:exo-addons/highlight-spaces.git
[submodule "exo-addons/learning"]
path = exo-addons/learning
url = [email protected]:exo-addons/learning.git
[submodule "exo-addons/demo-cms-templates"]
path = exo-addons/demo-cms-templates
url = [email protected]:exo-addons/demo-cms-templates.git
[submodule "exo-addons/functional-configuration"]
path = exo-addons/functional-configuration
url = [email protected]:exo-addons/functional-configuration.git
[submodule "exo-addons/office-online"]
path = exo-addons/office-online
url = [email protected]:exo-addons/office-online.git
[submodule "exo-addons/lead-capture"]
path = exo-addons/lead-capture
url = [email protected]:exo-addons/lead-capture.git
[submodule "exo-addons/time-tracker"]
path = exo-addons/time-tracker
url = [email protected]:exo-addons/time-tracker.git
[submodule "Meeds-io/eslint-config-meedsio"]
path = Meeds-io/eslint-config-meedsio
url = [email protected]:Meeds-io/eslint-config-meedsio.git
[submodule "exo-addons/write-in-ldap"]
path = exo-addons/write-in-ldap
url = [email protected]:exo-addons/write-in-ldap.git
[submodule "exo-addons/mfa-oidc"]
path = exo-addons/mfa-oidc
url = [email protected]:exo-addons/mfa-oidc.git
[submodule "exo-addons/mfa-fido"]
path = exo-addons/mfa-fido
url = [email protected]:exo-addons/mfa-fido.git
[submodule "exoplatform/platform-qa"]
path = exoplatform/platform-qa
url = [email protected]:exoplatform/platform-qa.git
[submodule "exoplatform/jitsi"]
path = exoplatform/jitsi
url = [email protected]:exoplatform/jitsi.git
[submodule "exoplatform/jitsi-call"]
path = exoplatform/jitsi-call
url = [email protected]:exoplatform/jitsi-call.git
[submodule "exoplatform/infrak8s"]
path = exoplatform/infrak8s
url = [email protected]:exoplatform/infrak8s.git
[submodule "exoplatform/platform-qa-tribe"]
path = exoplatform/platform-qa-tribe
url = [email protected]:exoplatform/platform-qa-tribe.git
[submodule "exo-samples/sample-dynamic-container"]
path = exo-samples/sample-dynamic-container
url = [email protected]:exo-samples/sample-dynamic-container.git
[submodule "exo-samples/docs-samples"]
path = exo-samples/docs-samples
url = [email protected]:exo-samples/docs-samples.git
[submodule "exo-samples/sample-for-SWF-3974"]
path = exo-samples/sample-for-SWF-3974
url = [email protected]:exo-samples/sample-for-SWF-3974.git
[submodule "exo-samples/exo-ldap"]
path = exo-samples/exo-ldap
url = [email protected]:exo-samples/exo-ldap.git
[submodule "exo-docker/docker-jitsi-meet"]
path = exo-docker/docker-jitsi-meet
url = [email protected]:exo-docker/docker-jitsi-meet.git
[submodule "Meeds-io/.github"]