commit dfa85ed08a0fa0f61954d4a5c374f13d6d1b1740 Author: l.matrone Date: Wed May 20 10:14:51 2026 +0200 chore: initial bundle of selected Azure repos as submodules 83 submodules from Azure DevOps (Isypol + BeTransformation orgs): - Security, Payment, Events, Document, Comunication, Common, Campain (all) - ProcessoVendita, Anagrafe, Batch, CreditAgricole (all) - FabricaProdotto/FabricaProdotto, Polizze/Polizze, Pricing/PricingManager Each submodule pinned to current local branch HEAD (release/2.11, release/2.10, release/2.12, develop, master) reflecting Azure origin/. diff --git a/.add-submodules.sh b/.add-submodules.sh new file mode 100644 index 0000000..7f888eb --- /dev/null +++ b/.add-submodules.sh @@ -0,0 +1,151 @@ +#!/bin/bash +# Adds all selected Azure repos as submodules into this container. +# Uses --reference to local clones in AnalisiMig/isypol2-project-rag to avoid re-downloading objects. + +set -u +RAG_MODULES="/c/Users/Luigi1/Desktop/AnalisiMig/isypol2-project-rag/.git/modules/projects" +LOG="$(pwd)/.add-submodules.log" +: > "$LOG" + +# Format per riga: +# org = Isypol → be-isypol +# org = BeTransformation → be-transformation +REPOS=$(cat <<'EOF' +BeTransformation Security IAM +BeTransformation Security Profile +BeTransformation Security Security +BeTransformation Payment PaymentAddebitoDirettoCA +BeTransformation Payment PaymentAddebitoDirettoContract +BeTransformation Payment PaymentCash +BeTransformation Payment PaymentEventContract +BeTransformation Payment PaymentManager +BeTransformation Events EventDispatcher +BeTransformation Events EventScheduleAndMonitor +BeTransformation Events FileManager +BeTransformation Document BeyhondDoc-image +BeTransformation Document BeyhondDocPublish +BeTransformation Document DocumentArchiver +BeTransformation Document DocumentChecklist +BeTransformation Document DocumentContract +BeTransformation Document DocumentGenerator +BeTransformation Document DocumentGeneratorBdoc +BeTransformation Document DocumentGeneratorContract +BeTransformation Document DocumentGeneratorIsy1 +BeTransformation Document DocumentSignature +BeTransformation Document DocumentStore +BeTransformation Comunication ComunicationManager +BeTransformation Common BeyondocSimulator +BeTransformation Common ConfigManager +BeTransformation Common Contabilita +BeTransformation Common Domain +BeTransformation Common EspressionLanguage +BeTransformation Common Language +BeTransformation Common LanguageSqlGenerator +BeTransformation Common LiquibaseFilter +BeTransformation Common MicroFrontendCommons +BeTransformation Common QuarkusArchetype +BeTransformation Common survey +BeTransformation Common workflow +BeTransformation Campain CampainManager +Isypol ProcessoVendita CoherenceService +Isypol ProcessoVendita Dossier +Isypol ProcessoVendita DossierInitializer +Isypol ProcessoVendita PostVendita +Isypol Anagrafe Anagrafe +Isypol Anagrafe AnagrafeConnector +Isypol Anagrafe AnagrafeConnectorCA +Isypol Anagrafe AnagrafeConnectorContract +Isypol Anagrafe AnagrafeConnectorDev +Isypol Anagrafe AnagrafeConnectorIsy1 +Isypol Anagrafe AnagrafeGestore +Isypol Anagrafe AnagrafeGestoreSimulator +Isypol Anagrafe AnagrafeSql +Isypol Anagrafe GestoriFlussoManager +Isypol Anagrafe ServizioConsRappAnagrafeConnecDev +Isypol Anagrafe ServizioConsRappAnagrafeConnector +Isypol Anagrafe ServizioConsRappAnagrafeContract +Isypol Batch DWH +Isypol CreditAgricole APISimulator +Isypol CreditAgricole AnagrafeSqlReport +Isypol CreditAgricole Anonimizzatore +Isypol CreditAgricole BE4API +Isypol CreditAgricole CABL +Isypol CreditAgricole CACartaceoService +Isypol CreditAgricole CAData +Isypol CreditAgricole CADocuemntSignatureOTP +Isypol CreditAgricole CADocuemntSignatureOTPSimulator +Isypol CreditAgricole CAInfoSinistri +Isypol CreditAgricole CAJbpm +Isypol CreditAgricole CAJbpmSimulator +Isypol CreditAgricole CASIS +Isypol CreditAgricole CAWSO2Simulator +Isypol CreditAgricole CaWso2TokenSimulator +Isypol CreditAgricole ConnectorTester +Isypol CreditAgricole ContabilitaReport +Isypol CreditAgricole DWHReport +Isypol CreditAgricole Dynatrace +Isypol CreditAgricole FreeBridge +Isypol CreditAgricole NRT_CA +Isypol CreditAgricole PSASimulator +Isypol CreditAgricole PaymentAddebitoDirettoCASimulator +Isypol CreditAgricole PreventivatoreAuto +Isypol CreditAgricole SDUConnector +Isypol CreditAgricole SDUSimulator +Isypol FabricaProdotto FabricaProdotto +Isypol Polizze Polizze +Isypol Pricing PricingManager +EOF +) + +TOTAL=$(echo "$REPOS" | wc -l | tr -d ' ') +i=0 +ok=0 +fail=0 + +while IFS=' ' read -r ORG AREA REPO; do + i=$((i+1)) + if [ "$ORG" = "Isypol" ]; then + REF="$RAG_MODULES/be-isypol/modules/$AREA/$REPO" + SRC_WORKTREE="/c/Users/Luigi1/Desktop/AnalisiMig/isypol2-project-rag/projects/be-isypol/$AREA/$REPO" + else + REF="$RAG_MODULES/be-transformation/modules/$AREA/$REPO" + SRC_WORKTREE="/c/Users/Luigi1/Desktop/AnalisiMig/isypol2-project-rag/projects/be-transformation/$AREA/$REPO" + fi + URL="git@ssh.dev.azure.com:v3/$ORG/$AREA/$REPO" + PATH_IN_CONTAINER="$AREA/$REPO" + + printf "[%d/%d] %s " "$i" "$TOTAL" "$PATH_IN_CONTAINER" + if [ -d "$PATH_IN_CONTAINER/.git" ] || [ -f "$PATH_IN_CONTAINER/.git" ]; then + echo "... SKIP (already present)" + ok=$((ok+1)) + continue + fi + + if [ ! -d "$REF" ]; then + echo "... FAIL (reference missing: $REF)" | tee -a "$LOG" + fail=$((fail+1)) + continue + fi + + BRANCH=$(git -C "$SRC_WORKTREE" branch --show-current 2>/dev/null) + if [ -z "$BRANCH" ]; then + BRANCH=$(git -C "$SRC_WORKTREE" symbolic-ref --short HEAD 2>/dev/null) + fi + if [ -z "$BRANCH" ]; then + echo "... FAIL (cannot detect local branch in $SRC_WORKTREE)" | tee -a "$LOG" + fail=$((fail+1)) + continue + fi + + printf "[branch=%s] ... " "$BRANCH" + if git submodule add --reference "$REF" -b "$BRANCH" "$URL" "$PATH_IN_CONTAINER" >>"$LOG" 2>&1; then + echo "OK" + ok=$((ok+1)) + else + echo "FAIL (see $LOG)" + fail=$((fail+1)) + fi +done <<< "$REPOS" + +echo "" +echo "Done. OK=$ok FAIL=$fail TOTAL=$TOTAL" diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..cefec41 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.add-submodules.log diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..d0c3a2b --- /dev/null +++ b/.gitmodules @@ -0,0 +1,331 @@ +[submodule "Security/IAM"] + path = Security/IAM + url = git@ssh.dev.azure.com:v3/BeTransformation/Security/IAM + branch = develop +[submodule "Security/Profile"] + path = Security/Profile + url = git@ssh.dev.azure.com:v3/BeTransformation/Security/Profile + branch = develop +[submodule "Security/Security"] + path = Security/Security + url = git@ssh.dev.azure.com:v3/BeTransformation/Security/Security + branch = develop +[submodule "Payment/PaymentAddebitoDirettoCA"] + path = Payment/PaymentAddebitoDirettoCA + url = git@ssh.dev.azure.com:v3/BeTransformation/Payment/PaymentAddebitoDirettoCA + branch = develop +[submodule "Payment/PaymentAddebitoDirettoContract"] + path = Payment/PaymentAddebitoDirettoContract + url = git@ssh.dev.azure.com:v3/BeTransformation/Payment/PaymentAddebitoDirettoContract + branch = develop +[submodule "Payment/PaymentCash"] + path = Payment/PaymentCash + url = git@ssh.dev.azure.com:v3/BeTransformation/Payment/PaymentCash + branch = develop +[submodule "Payment/PaymentEventContract"] + path = Payment/PaymentEventContract + url = git@ssh.dev.azure.com:v3/BeTransformation/Payment/PaymentEventContract + branch = main +[submodule "Payment/PaymentManager"] + path = Payment/PaymentManager + url = git@ssh.dev.azure.com:v3/BeTransformation/Payment/PaymentManager + branch = release/2.10 +[submodule "Events/EventDispatcher"] + path = Events/EventDispatcher + url = git@ssh.dev.azure.com:v3/BeTransformation/Events/EventDispatcher + branch = 2.10 +[submodule "Events/EventScheduleAndMonitor"] + path = Events/EventScheduleAndMonitor + url = git@ssh.dev.azure.com:v3/BeTransformation/Events/EventScheduleAndMonitor + branch = rilascio_giugno +[submodule "Events/FileManager"] + path = Events/FileManager + url = git@ssh.dev.azure.com:v3/BeTransformation/Events/FileManager + branch = release/2.10 +[submodule "Document/BeyhondDoc-image"] + path = Document/BeyhondDoc-image + url = git@ssh.dev.azure.com:v3/BeTransformation/Document/BeyhondDoc-image + branch = main +[submodule "Document/BeyhondDocPublish"] + path = Document/BeyhondDocPublish + url = git@ssh.dev.azure.com:v3/BeTransformation/Document/BeyhondDocPublish + branch = develop +[submodule "Document/DocumentArchiver"] + path = Document/DocumentArchiver + url = git@ssh.dev.azure.com:v3/BeTransformation/Document/DocumentArchiver + branch = develop +[submodule "Document/DocumentChecklist"] + path = Document/DocumentChecklist + url = git@ssh.dev.azure.com:v3/BeTransformation/Document/DocumentChecklist + branch = release/2.11 +[submodule "Document/DocumentContract"] + path = Document/DocumentContract + url = git@ssh.dev.azure.com:v3/BeTransformation/Document/DocumentContract + branch = develop +[submodule "Document/DocumentGenerator"] + path = Document/DocumentGenerator + url = git@ssh.dev.azure.com:v3/BeTransformation/Document/DocumentGenerator + branch = release/2.11 +[submodule "Document/DocumentGeneratorBdoc"] + path = Document/DocumentGeneratorBdoc + url = git@ssh.dev.azure.com:v3/BeTransformation/Document/DocumentGeneratorBdoc + branch = develop +[submodule "Document/DocumentGeneratorContract"] + path = Document/DocumentGeneratorContract + url = git@ssh.dev.azure.com:v3/BeTransformation/Document/DocumentGeneratorContract + branch = develop +[submodule "Document/DocumentGeneratorIsy1"] + path = Document/DocumentGeneratorIsy1 + url = git@ssh.dev.azure.com:v3/BeTransformation/Document/DocumentGeneratorIsy1 + branch = release/2.11 +[submodule "Document/DocumentSignature"] + path = Document/DocumentSignature + url = git@ssh.dev.azure.com:v3/BeTransformation/Document/DocumentSignature + branch = develop +[submodule "Document/DocumentStore"] + path = Document/DocumentStore + url = git@ssh.dev.azure.com:v3/BeTransformation/Document/DocumentStore + branch = develop +[submodule "Comunication/ComunicationManager"] + path = Comunication/ComunicationManager + url = git@ssh.dev.azure.com:v3/BeTransformation/Comunication/ComunicationManager + branch = release/2.11 +[submodule "Common/BeyondocSimulator"] + path = Common/BeyondocSimulator + url = git@ssh.dev.azure.com:v3/BeTransformation/Common/BeyondocSimulator + branch = main +[submodule "Common/ConfigManager"] + path = Common/ConfigManager + url = git@ssh.dev.azure.com:v3/BeTransformation/Common/ConfigManager + branch = main +[submodule "Common/Contabilita"] + path = Common/Contabilita + url = git@ssh.dev.azure.com:v3/BeTransformation/Common/Contabilita + branch = release/2.11 +[submodule "Common/Domain"] + path = Common/Domain + url = git@ssh.dev.azure.com:v3/BeTransformation/Common/Domain + branch = release/2.9 +[submodule "Common/EspressionLanguage"] + path = Common/EspressionLanguage + url = git@ssh.dev.azure.com:v3/BeTransformation/Common/EspressionLanguage + branch = develop +[submodule "Common/Language"] + path = Common/Language + url = git@ssh.dev.azure.com:v3/BeTransformation/Common/Language + branch = develop +[submodule "Common/LanguageSqlGenerator"] + path = Common/LanguageSqlGenerator + url = git@ssh.dev.azure.com:v3/BeTransformation/Common/LanguageSqlGenerator + branch = main +[submodule "Common/LiquibaseFilter"] + path = Common/LiquibaseFilter + url = git@ssh.dev.azure.com:v3/BeTransformation/Common/LiquibaseFilter + branch = develop +[submodule "Common/MicroFrontendCommons"] + path = Common/MicroFrontendCommons + url = git@ssh.dev.azure.com:v3/BeTransformation/Common/MicroFrontendCommons + branch = develop +[submodule "Common/QuarkusArchetype"] + path = Common/QuarkusArchetype + url = git@ssh.dev.azure.com:v3/BeTransformation/Common/QuarkusArchetype + branch = develop +[submodule "Common/survey"] + path = Common/survey + url = git@ssh.dev.azure.com:v3/BeTransformation/Common/survey + branch = release/2.11 +[submodule "Common/workflow"] + path = Common/workflow + url = git@ssh.dev.azure.com:v3/BeTransformation/Common/workflow + branch = release/2.10 +[submodule "Campain/CampainManager"] + path = Campain/CampainManager + url = git@ssh.dev.azure.com:v3/BeTransformation/Campain/CampainManager + branch = release/2.10 +[submodule "ProcessoVendita/CoherenceService"] + path = ProcessoVendita/CoherenceService + url = git@ssh.dev.azure.com:v3/Isypol/ProcessoVendita/CoherenceService + branch = develop +[submodule "ProcessoVendita/Dossier"] + path = ProcessoVendita/Dossier + url = git@ssh.dev.azure.com:v3/Isypol/ProcessoVendita/Dossier + branch = release/2.12 +[submodule "ProcessoVendita/DossierInitializer"] + path = ProcessoVendita/DossierInitializer + url = git@ssh.dev.azure.com:v3/Isypol/ProcessoVendita/DossierInitializer + branch = release/2.11 +[submodule "ProcessoVendita/PostVendita"] + path = ProcessoVendita/PostVendita + url = git@ssh.dev.azure.com:v3/Isypol/ProcessoVendita/PostVendita + branch = release/2.11 +[submodule "Anagrafe/AnagrafeConnector"] + path = Anagrafe/AnagrafeConnector + url = git@ssh.dev.azure.com:v3/Isypol/Anagrafe/AnagrafeConnector + branch = develop +[submodule "Anagrafe/AnagrafeConnectorCA"] + path = Anagrafe/AnagrafeConnectorCA + url = git@ssh.dev.azure.com:v3/Isypol/Anagrafe/AnagrafeConnectorCA + branch = develop +[submodule "Anagrafe/AnagrafeConnectorContract"] + path = Anagrafe/AnagrafeConnectorContract + url = git@ssh.dev.azure.com:v3/Isypol/Anagrafe/AnagrafeConnectorContract + branch = develop +[submodule "Anagrafe/AnagrafeConnectorDev"] + path = Anagrafe/AnagrafeConnectorDev + url = git@ssh.dev.azure.com:v3/Isypol/Anagrafe/AnagrafeConnectorDev + branch = develop +[submodule "Anagrafe/AnagrafeConnectorIsy1"] + path = Anagrafe/AnagrafeConnectorIsy1 + url = git@ssh.dev.azure.com:v3/Isypol/Anagrafe/AnagrafeConnectorIsy1 + branch = develop +[submodule "Anagrafe/AnagrafeGestore"] + path = Anagrafe/AnagrafeGestore + url = git@ssh.dev.azure.com:v3/Isypol/Anagrafe/AnagrafeGestore + branch = develop +[submodule "Anagrafe/AnagrafeGestoreSimulator"] + path = Anagrafe/AnagrafeGestoreSimulator + url = git@ssh.dev.azure.com:v3/Isypol/Anagrafe/AnagrafeGestoreSimulator + branch = develop +[submodule "Anagrafe/AnagrafeSql"] + path = Anagrafe/AnagrafeSql + url = git@ssh.dev.azure.com:v3/Isypol/Anagrafe/AnagrafeSql + branch = release/2.11 +[submodule "Anagrafe/GestoriFlussoManager"] + path = Anagrafe/GestoriFlussoManager + url = git@ssh.dev.azure.com:v3/Isypol/Anagrafe/GestoriFlussoManager + branch = develop +[submodule "Anagrafe/ServizioConsRappAnagrafeConnecDev"] + path = Anagrafe/ServizioConsRappAnagrafeConnecDev + url = git@ssh.dev.azure.com:v3/Isypol/Anagrafe/ServizioConsRappAnagrafeConnecDev + branch = develop +[submodule "Anagrafe/ServizioConsRappAnagrafeConnector"] + path = Anagrafe/ServizioConsRappAnagrafeConnector + url = git@ssh.dev.azure.com:v3/Isypol/Anagrafe/ServizioConsRappAnagrafeConnector + branch = develop +[submodule "Anagrafe/ServizioConsRappAnagrafeContract"] + path = Anagrafe/ServizioConsRappAnagrafeContract + url = git@ssh.dev.azure.com:v3/Isypol/Anagrafe/ServizioConsRappAnagrafeContract + branch = develop +[submodule "Batch/DWH"] + path = Batch/DWH + url = git@ssh.dev.azure.com:v3/Isypol/Batch/DWH + branch = release/2.11 +[submodule "CreditAgricole/APISimulator"] + path = CreditAgricole/APISimulator + url = git@ssh.dev.azure.com:v3/Isypol/CreditAgricole/APISimulator + branch = main +[submodule "CreditAgricole/AnagrafeSqlReport"] + path = CreditAgricole/AnagrafeSqlReport + url = git@ssh.dev.azure.com:v3/Isypol/CreditAgricole/AnagrafeSqlReport + branch = develop +[submodule "CreditAgricole/Anonimizzatore"] + path = CreditAgricole/Anonimizzatore + url = git@ssh.dev.azure.com:v3/Isypol/CreditAgricole/Anonimizzatore + branch = release/2.10 +[submodule "CreditAgricole/BE4API"] + path = CreditAgricole/BE4API + url = git@ssh.dev.azure.com:v3/Isypol/CreditAgricole/BE4API + branch = release/2.11 +[submodule "CreditAgricole/CABL"] + path = CreditAgricole/CABL + url = git@ssh.dev.azure.com:v3/Isypol/CreditAgricole/CABL + branch = develop +[submodule "CreditAgricole/CACartaceoService"] + path = CreditAgricole/CACartaceoService + url = git@ssh.dev.azure.com:v3/Isypol/CreditAgricole/CACartaceoService + branch = develop +[submodule "CreditAgricole/CAData"] + path = CreditAgricole/CAData + url = git@ssh.dev.azure.com:v3/Isypol/CreditAgricole/CAData + branch = develop +[submodule "CreditAgricole/CADocuemntSignatureOTP"] + path = CreditAgricole/CADocuemntSignatureOTP + url = git@ssh.dev.azure.com:v3/Isypol/CreditAgricole/CADocuemntSignatureOTP + branch = release/2.10 +[submodule "CreditAgricole/CADocuemntSignatureOTPSimulator"] + path = CreditAgricole/CADocuemntSignatureOTPSimulator + url = git@ssh.dev.azure.com:v3/Isypol/CreditAgricole/CADocuemntSignatureOTPSimulator + branch = develop +[submodule "CreditAgricole/CAInfoSinistri"] + path = CreditAgricole/CAInfoSinistri + url = git@ssh.dev.azure.com:v3/Isypol/CreditAgricole/CAInfoSinistri + branch = rilascio_giugno +[submodule "CreditAgricole/CAJbpm"] + path = CreditAgricole/CAJbpm + url = git@ssh.dev.azure.com:v3/Isypol/CreditAgricole/CAJbpm + branch = develop +[submodule "CreditAgricole/CAJbpmSimulator"] + path = CreditAgricole/CAJbpmSimulator + url = git@ssh.dev.azure.com:v3/Isypol/CreditAgricole/CAJbpmSimulator + branch = develop +[submodule "CreditAgricole/CASIS"] + path = CreditAgricole/CASIS + url = git@ssh.dev.azure.com:v3/Isypol/CreditAgricole/CASIS + branch = develop +[submodule "CreditAgricole/CAWSO2Simulator"] + path = CreditAgricole/CAWSO2Simulator + url = git@ssh.dev.azure.com:v3/Isypol/CreditAgricole/CAWSO2Simulator + branch = develop +[submodule "CreditAgricole/CaWso2TokenSimulator"] + path = CreditAgricole/CaWso2TokenSimulator + url = git@ssh.dev.azure.com:v3/Isypol/CreditAgricole/CaWso2TokenSimulator + branch = main +[submodule "CreditAgricole/ConnectorTester"] + path = CreditAgricole/ConnectorTester + url = git@ssh.dev.azure.com:v3/Isypol/CreditAgricole/ConnectorTester + branch = main +[submodule "CreditAgricole/ContabilitaReport"] + path = CreditAgricole/ContabilitaReport + url = git@ssh.dev.azure.com:v3/Isypol/CreditAgricole/ContabilitaReport + branch = release/2.11 +[submodule "CreditAgricole/DWHReport"] + path = CreditAgricole/DWHReport + url = git@ssh.dev.azure.com:v3/Isypol/CreditAgricole/DWHReport + branch = release/2.11 +[submodule "CreditAgricole/Dynatrace"] + path = CreditAgricole/Dynatrace + url = git@ssh.dev.azure.com:v3/Isypol/CreditAgricole/Dynatrace + branch = main +[submodule "CreditAgricole/FreeBridge"] + path = CreditAgricole/FreeBridge + url = git@ssh.dev.azure.com:v3/Isypol/CreditAgricole/FreeBridge + branch = develop +[submodule "CreditAgricole/NRT_CA"] + path = CreditAgricole/NRT_CA + url = git@ssh.dev.azure.com:v3/Isypol/CreditAgricole/NRT_CA + branch = main +[submodule "CreditAgricole/PSASimulator"] + path = CreditAgricole/PSASimulator + url = git@ssh.dev.azure.com:v3/Isypol/CreditAgricole/PSASimulator + branch = develop +[submodule "CreditAgricole/PaymentAddebitoDirettoCASimulator"] + path = CreditAgricole/PaymentAddebitoDirettoCASimulator + url = git@ssh.dev.azure.com:v3/Isypol/CreditAgricole/PaymentAddebitoDirettoCASimulator + branch = develop +[submodule "CreditAgricole/PreventivatoreAuto"] + path = CreditAgricole/PreventivatoreAuto + url = git@ssh.dev.azure.com:v3/Isypol/CreditAgricole/PreventivatoreAuto + branch = develop +[submodule "CreditAgricole/SDUConnector"] + path = CreditAgricole/SDUConnector + url = git@ssh.dev.azure.com:v3/Isypol/CreditAgricole/SDUConnector + branch = develop +[submodule "CreditAgricole/SDUSimulator"] + path = CreditAgricole/SDUSimulator + url = git@ssh.dev.azure.com:v3/Isypol/CreditAgricole/SDUSimulator + branch = develop +[submodule "FabricaProdotto/FabricaProdotto"] + path = FabricaProdotto/FabricaProdotto + url = git@ssh.dev.azure.com:v3/Isypol/FabricaProdotto/FabricaProdotto + branch = release/2.11 +[submodule "Polizze/Polizze"] + path = Polizze/Polizze + url = git@ssh.dev.azure.com:v3/Isypol/Polizze/Polizze + branch = release/2.11 +[submodule "Pricing/PricingManager"] + path = Pricing/PricingManager + url = git@ssh.dev.azure.com:v3/Isypol/Pricing/PricingManager + branch = release/2.11 +[submodule "Anagrafe/Anagrafe"] + path = Anagrafe/Anagrafe + url = git@ssh.dev.azure.com:v3/Isypol/Anagrafe/Anagrafe diff --git a/Anagrafe/Anagrafe b/Anagrafe/Anagrafe new file mode 160000 index 0000000..f84e831 --- /dev/null +++ b/Anagrafe/Anagrafe @@ -0,0 +1 @@ +Subproject commit f84e831cbb5f12457f1d24b1f5118e138dd5486e diff --git a/Anagrafe/AnagrafeConnector b/Anagrafe/AnagrafeConnector new file mode 160000 index 0000000..9a56485 --- /dev/null +++ b/Anagrafe/AnagrafeConnector @@ -0,0 +1 @@ +Subproject commit 9a56485ee2dda5de9245495bff40f4a3401ba75c diff --git a/Anagrafe/AnagrafeConnectorCA b/Anagrafe/AnagrafeConnectorCA new file mode 160000 index 0000000..0609680 --- /dev/null +++ b/Anagrafe/AnagrafeConnectorCA @@ -0,0 +1 @@ +Subproject commit 0609680ab86d0ae66c272558147a2b66dedbfea2 diff --git a/Anagrafe/AnagrafeConnectorContract b/Anagrafe/AnagrafeConnectorContract new file mode 160000 index 0000000..a13aeb9 --- /dev/null +++ b/Anagrafe/AnagrafeConnectorContract @@ -0,0 +1 @@ +Subproject commit a13aeb9aff02e03d08f3678ecf9985a7ac50a5d5 diff --git a/Anagrafe/AnagrafeConnectorDev b/Anagrafe/AnagrafeConnectorDev new file mode 160000 index 0000000..a81c176 --- /dev/null +++ b/Anagrafe/AnagrafeConnectorDev @@ -0,0 +1 @@ +Subproject commit a81c176737845eb69925ae47b7c4b454f00bf0ed diff --git a/Anagrafe/AnagrafeConnectorIsy1 b/Anagrafe/AnagrafeConnectorIsy1 new file mode 160000 index 0000000..be36f7b --- /dev/null +++ b/Anagrafe/AnagrafeConnectorIsy1 @@ -0,0 +1 @@ +Subproject commit be36f7b93509c3fa140df451831418e6806f93f5 diff --git a/Anagrafe/AnagrafeGestore b/Anagrafe/AnagrafeGestore new file mode 160000 index 0000000..a43d0a5 --- /dev/null +++ b/Anagrafe/AnagrafeGestore @@ -0,0 +1 @@ +Subproject commit a43d0a578f5e0bc40964740619ec89a9c5eec64c diff --git a/Anagrafe/AnagrafeGestoreSimulator b/Anagrafe/AnagrafeGestoreSimulator new file mode 160000 index 0000000..f9b722a --- /dev/null +++ b/Anagrafe/AnagrafeGestoreSimulator @@ -0,0 +1 @@ +Subproject commit f9b722a854096e60a5e1a05da0df6dc85cfbd586 diff --git a/Anagrafe/AnagrafeSql b/Anagrafe/AnagrafeSql new file mode 160000 index 0000000..c21bee7 --- /dev/null +++ b/Anagrafe/AnagrafeSql @@ -0,0 +1 @@ +Subproject commit c21bee7b8ce67544ea4708f4fb99fc20e1b9d98e diff --git a/Anagrafe/GestoriFlussoManager b/Anagrafe/GestoriFlussoManager new file mode 160000 index 0000000..8eeb4d1 --- /dev/null +++ b/Anagrafe/GestoriFlussoManager @@ -0,0 +1 @@ +Subproject commit 8eeb4d1a9f9eda2e6d2d2547c593186aac85bec7 diff --git a/Anagrafe/ServizioConsRappAnagrafeConnecDev b/Anagrafe/ServizioConsRappAnagrafeConnecDev new file mode 160000 index 0000000..fa09d4d --- /dev/null +++ b/Anagrafe/ServizioConsRappAnagrafeConnecDev @@ -0,0 +1 @@ +Subproject commit fa09d4d1c7de4ad1f667fe8a281cf6ffc30c60cc diff --git a/Anagrafe/ServizioConsRappAnagrafeConnector b/Anagrafe/ServizioConsRappAnagrafeConnector new file mode 160000 index 0000000..84559da --- /dev/null +++ b/Anagrafe/ServizioConsRappAnagrafeConnector @@ -0,0 +1 @@ +Subproject commit 84559dadf3afa0b9fa051d6e9c7cc137dac3d101 diff --git a/Anagrafe/ServizioConsRappAnagrafeContract b/Anagrafe/ServizioConsRappAnagrafeContract new file mode 160000 index 0000000..03abd51 --- /dev/null +++ b/Anagrafe/ServizioConsRappAnagrafeContract @@ -0,0 +1 @@ +Subproject commit 03abd517d39c912695fc556a56b1f566f0f03ee3 diff --git a/Batch/DWH b/Batch/DWH new file mode 160000 index 0000000..421ce06 --- /dev/null +++ b/Batch/DWH @@ -0,0 +1 @@ +Subproject commit 421ce067f63c71f11365cf1ab37adfffc70c03e7 diff --git a/Campain/CampainManager b/Campain/CampainManager new file mode 160000 index 0000000..5ee953c --- /dev/null +++ b/Campain/CampainManager @@ -0,0 +1 @@ +Subproject commit 5ee953c9e8f8d0f305f4fdddf52a496b9d6b6790 diff --git a/Common/BeyondocSimulator b/Common/BeyondocSimulator new file mode 160000 index 0000000..7e1bf1e --- /dev/null +++ b/Common/BeyondocSimulator @@ -0,0 +1 @@ +Subproject commit 7e1bf1e5e35b9b629708361b51cb3e3796be4775 diff --git a/Common/ConfigManager b/Common/ConfigManager new file mode 160000 index 0000000..f759ec5 --- /dev/null +++ b/Common/ConfigManager @@ -0,0 +1 @@ +Subproject commit f759ec5e3f6da413ae45e1af31a9fe0cd07da06c diff --git a/Common/Contabilita b/Common/Contabilita new file mode 160000 index 0000000..2211975 --- /dev/null +++ b/Common/Contabilita @@ -0,0 +1 @@ +Subproject commit 2211975215c7d9005c80fb0cc1970580c0408043 diff --git a/Common/Domain b/Common/Domain new file mode 160000 index 0000000..010c61e --- /dev/null +++ b/Common/Domain @@ -0,0 +1 @@ +Subproject commit 010c61e6ae72f8ce86631a4c5b7334a1c98350a5 diff --git a/Common/EspressionLanguage b/Common/EspressionLanguage new file mode 160000 index 0000000..2aa9a6b --- /dev/null +++ b/Common/EspressionLanguage @@ -0,0 +1 @@ +Subproject commit 2aa9a6bd5ae199c92b288b17e276ef803bcd5b38 diff --git a/Common/Language b/Common/Language new file mode 160000 index 0000000..df00f4d --- /dev/null +++ b/Common/Language @@ -0,0 +1 @@ +Subproject commit df00f4d84e77ec71ef33e767454377c38876188b diff --git a/Common/LanguageSqlGenerator b/Common/LanguageSqlGenerator new file mode 160000 index 0000000..0c42598 --- /dev/null +++ b/Common/LanguageSqlGenerator @@ -0,0 +1 @@ +Subproject commit 0c42598cbde18d00d393e2b11360d777e2cdda15 diff --git a/Common/LiquibaseFilter b/Common/LiquibaseFilter new file mode 160000 index 0000000..68f4fc3 --- /dev/null +++ b/Common/LiquibaseFilter @@ -0,0 +1 @@ +Subproject commit 68f4fc34daa1b20c37ab084b6892e2161168210b diff --git a/Common/MicroFrontendCommons b/Common/MicroFrontendCommons new file mode 160000 index 0000000..df5d61c --- /dev/null +++ b/Common/MicroFrontendCommons @@ -0,0 +1 @@ +Subproject commit df5d61c14252fdaef053bfa0aa6615f74a154999 diff --git a/Common/QuarkusArchetype b/Common/QuarkusArchetype new file mode 160000 index 0000000..05ed28a --- /dev/null +++ b/Common/QuarkusArchetype @@ -0,0 +1 @@ +Subproject commit 05ed28ad68dc2285f02668ba55718cf72d7352ce diff --git a/Common/survey b/Common/survey new file mode 160000 index 0000000..3487ba6 --- /dev/null +++ b/Common/survey @@ -0,0 +1 @@ +Subproject commit 3487ba688487e5f8367bad9f00588f9823db0612 diff --git a/Common/workflow b/Common/workflow new file mode 160000 index 0000000..0b163ef --- /dev/null +++ b/Common/workflow @@ -0,0 +1 @@ +Subproject commit 0b163ef8bb58c71431812bb29f01801c2cf06281 diff --git a/Comunication/ComunicationManager b/Comunication/ComunicationManager new file mode 160000 index 0000000..7384beb --- /dev/null +++ b/Comunication/ComunicationManager @@ -0,0 +1 @@ +Subproject commit 7384beb3819c22f4df6d6629cbae479154db5859 diff --git a/CreditAgricole/APISimulator b/CreditAgricole/APISimulator new file mode 160000 index 0000000..3cab830 --- /dev/null +++ b/CreditAgricole/APISimulator @@ -0,0 +1 @@ +Subproject commit 3cab8309a08544a0830dfcfdaddf301cf8648c90 diff --git a/CreditAgricole/AnagrafeSqlReport b/CreditAgricole/AnagrafeSqlReport new file mode 160000 index 0000000..be4ebc4 --- /dev/null +++ b/CreditAgricole/AnagrafeSqlReport @@ -0,0 +1 @@ +Subproject commit be4ebc4865bae63758c8f0a0d387297b34714fe5 diff --git a/CreditAgricole/Anonimizzatore b/CreditAgricole/Anonimizzatore new file mode 160000 index 0000000..2882f31 --- /dev/null +++ b/CreditAgricole/Anonimizzatore @@ -0,0 +1 @@ +Subproject commit 2882f3152ac181a157522bccb3e6cb5086c227b0 diff --git a/CreditAgricole/BE4API b/CreditAgricole/BE4API new file mode 160000 index 0000000..ffa125c --- /dev/null +++ b/CreditAgricole/BE4API @@ -0,0 +1 @@ +Subproject commit ffa125c11173822408d61dd675faa39be1bd5043 diff --git a/CreditAgricole/CABL b/CreditAgricole/CABL new file mode 160000 index 0000000..0b9857e --- /dev/null +++ b/CreditAgricole/CABL @@ -0,0 +1 @@ +Subproject commit 0b9857edba6dc6663e9bc912f277b4da57f890c2 diff --git a/CreditAgricole/CACartaceoService b/CreditAgricole/CACartaceoService new file mode 160000 index 0000000..aa711b1 --- /dev/null +++ b/CreditAgricole/CACartaceoService @@ -0,0 +1 @@ +Subproject commit aa711b1734ca466c6f72092687f3fb0e2eee83ba diff --git a/CreditAgricole/CAData b/CreditAgricole/CAData new file mode 160000 index 0000000..21e47d4 --- /dev/null +++ b/CreditAgricole/CAData @@ -0,0 +1 @@ +Subproject commit 21e47d4c3339183da1f6d13dc679ff00537e10c3 diff --git a/CreditAgricole/CADocuemntSignatureOTP b/CreditAgricole/CADocuemntSignatureOTP new file mode 160000 index 0000000..b8cfa3b --- /dev/null +++ b/CreditAgricole/CADocuemntSignatureOTP @@ -0,0 +1 @@ +Subproject commit b8cfa3ba4ca71d7e8a6b6bcea90752a8e66b0c6d diff --git a/CreditAgricole/CADocuemntSignatureOTPSimulator b/CreditAgricole/CADocuemntSignatureOTPSimulator new file mode 160000 index 0000000..0c6316b --- /dev/null +++ b/CreditAgricole/CADocuemntSignatureOTPSimulator @@ -0,0 +1 @@ +Subproject commit 0c6316bdca5074bc6ba54854dd6fe3033b87854f diff --git a/CreditAgricole/CAInfoSinistri b/CreditAgricole/CAInfoSinistri new file mode 160000 index 0000000..1808e6d --- /dev/null +++ b/CreditAgricole/CAInfoSinistri @@ -0,0 +1 @@ +Subproject commit 1808e6d31ca43b264ae6415a402c48fad2c8bfe8 diff --git a/CreditAgricole/CAJbpm b/CreditAgricole/CAJbpm new file mode 160000 index 0000000..ed35816 --- /dev/null +++ b/CreditAgricole/CAJbpm @@ -0,0 +1 @@ +Subproject commit ed35816466d84a4dcde83d439a167bb140390639 diff --git a/CreditAgricole/CAJbpmSimulator b/CreditAgricole/CAJbpmSimulator new file mode 160000 index 0000000..1a758b6 --- /dev/null +++ b/CreditAgricole/CAJbpmSimulator @@ -0,0 +1 @@ +Subproject commit 1a758b691a555c820ea972cb5f7ec88e92b66680 diff --git a/CreditAgricole/CASIS b/CreditAgricole/CASIS new file mode 160000 index 0000000..33d10d1 --- /dev/null +++ b/CreditAgricole/CASIS @@ -0,0 +1 @@ +Subproject commit 33d10d1641499f8b6a58de2a03478c2e52658910 diff --git a/CreditAgricole/CAWSO2Simulator b/CreditAgricole/CAWSO2Simulator new file mode 160000 index 0000000..7c96327 --- /dev/null +++ b/CreditAgricole/CAWSO2Simulator @@ -0,0 +1 @@ +Subproject commit 7c96327cc53a3a5604f28e753ee063d0c0a69826 diff --git a/CreditAgricole/CaWso2TokenSimulator b/CreditAgricole/CaWso2TokenSimulator new file mode 160000 index 0000000..36e74f3 --- /dev/null +++ b/CreditAgricole/CaWso2TokenSimulator @@ -0,0 +1 @@ +Subproject commit 36e74f3f9b1095e189b470c7512e7d7329e4b33c diff --git a/CreditAgricole/ConnectorTester b/CreditAgricole/ConnectorTester new file mode 160000 index 0000000..0613b22 --- /dev/null +++ b/CreditAgricole/ConnectorTester @@ -0,0 +1 @@ +Subproject commit 0613b228e8ee2232d328134a9ec9fd21f20397eb diff --git a/CreditAgricole/ContabilitaReport b/CreditAgricole/ContabilitaReport new file mode 160000 index 0000000..cf03039 --- /dev/null +++ b/CreditAgricole/ContabilitaReport @@ -0,0 +1 @@ +Subproject commit cf03039202fa56648340ac3d829e9750c3ee80ce diff --git a/CreditAgricole/DWHReport b/CreditAgricole/DWHReport new file mode 160000 index 0000000..817a3f7 --- /dev/null +++ b/CreditAgricole/DWHReport @@ -0,0 +1 @@ +Subproject commit 817a3f7f78646fe35bfef760eb2d391e29dfb8aa diff --git a/CreditAgricole/Dynatrace b/CreditAgricole/Dynatrace new file mode 160000 index 0000000..94b9a76 --- /dev/null +++ b/CreditAgricole/Dynatrace @@ -0,0 +1 @@ +Subproject commit 94b9a76920a401d7f20c3fd9f3758e8d94965d21 diff --git a/CreditAgricole/FreeBridge b/CreditAgricole/FreeBridge new file mode 160000 index 0000000..a2b00aa --- /dev/null +++ b/CreditAgricole/FreeBridge @@ -0,0 +1 @@ +Subproject commit a2b00aae97a52e851a02501eca4cee7b18f007e0 diff --git a/CreditAgricole/NRT_CA b/CreditAgricole/NRT_CA new file mode 160000 index 0000000..c56bb82 --- /dev/null +++ b/CreditAgricole/NRT_CA @@ -0,0 +1 @@ +Subproject commit c56bb826fab3bc7cddcbfe7c0e1136d5a3b81b3c diff --git a/CreditAgricole/PSASimulator b/CreditAgricole/PSASimulator new file mode 160000 index 0000000..90d392c --- /dev/null +++ b/CreditAgricole/PSASimulator @@ -0,0 +1 @@ +Subproject commit 90d392cca4b8adc3fa60562db0de69f550610e89 diff --git a/CreditAgricole/PaymentAddebitoDirettoCASimulator b/CreditAgricole/PaymentAddebitoDirettoCASimulator new file mode 160000 index 0000000..42bc153 --- /dev/null +++ b/CreditAgricole/PaymentAddebitoDirettoCASimulator @@ -0,0 +1 @@ +Subproject commit 42bc153968b21dc871069f07dba11b232b7163e6 diff --git a/CreditAgricole/PreventivatoreAuto b/CreditAgricole/PreventivatoreAuto new file mode 160000 index 0000000..d3717bb --- /dev/null +++ b/CreditAgricole/PreventivatoreAuto @@ -0,0 +1 @@ +Subproject commit d3717bb823dcd2a43ff17c86f5b8974030fd2e39 diff --git a/CreditAgricole/SDUConnector b/CreditAgricole/SDUConnector new file mode 160000 index 0000000..f8be34d --- /dev/null +++ b/CreditAgricole/SDUConnector @@ -0,0 +1 @@ +Subproject commit f8be34df3e0f05a2c876fb01b80d946fbec5a810 diff --git a/CreditAgricole/SDUSimulator b/CreditAgricole/SDUSimulator new file mode 160000 index 0000000..d78c811 --- /dev/null +++ b/CreditAgricole/SDUSimulator @@ -0,0 +1 @@ +Subproject commit d78c811f34b4e1845963a53c35d386e8d348cb15 diff --git a/Document/BeyhondDoc-image b/Document/BeyhondDoc-image new file mode 160000 index 0000000..8140ab9 --- /dev/null +++ b/Document/BeyhondDoc-image @@ -0,0 +1 @@ +Subproject commit 8140ab94b1d8dba4877a80ff719dba7482a72f48 diff --git a/Document/BeyhondDocPublish b/Document/BeyhondDocPublish new file mode 160000 index 0000000..ba08278 --- /dev/null +++ b/Document/BeyhondDocPublish @@ -0,0 +1 @@ +Subproject commit ba08278bd7226860ca7f0f88b4916c649d647206 diff --git a/Document/DocumentArchiver b/Document/DocumentArchiver new file mode 160000 index 0000000..628b2cb --- /dev/null +++ b/Document/DocumentArchiver @@ -0,0 +1 @@ +Subproject commit 628b2cb03c4ee68ec7006f31b5214863df9517ed diff --git a/Document/DocumentChecklist b/Document/DocumentChecklist new file mode 160000 index 0000000..07f1b75 --- /dev/null +++ b/Document/DocumentChecklist @@ -0,0 +1 @@ +Subproject commit 07f1b75903f9d69fbaa236aa3f764b07da06d014 diff --git a/Document/DocumentContract b/Document/DocumentContract new file mode 160000 index 0000000..d2297f5 --- /dev/null +++ b/Document/DocumentContract @@ -0,0 +1 @@ +Subproject commit d2297f5e213d669f7cb1ccc95eb09182b617e761 diff --git a/Document/DocumentGenerator b/Document/DocumentGenerator new file mode 160000 index 0000000..3fb8b2a --- /dev/null +++ b/Document/DocumentGenerator @@ -0,0 +1 @@ +Subproject commit 3fb8b2a075f4dda1c4ce4c5efe6829f87e4c886b diff --git a/Document/DocumentGeneratorBdoc b/Document/DocumentGeneratorBdoc new file mode 160000 index 0000000..42fdff2 --- /dev/null +++ b/Document/DocumentGeneratorBdoc @@ -0,0 +1 @@ +Subproject commit 42fdff2aaa9f20c6b734decc78855e120b1d5978 diff --git a/Document/DocumentGeneratorContract b/Document/DocumentGeneratorContract new file mode 160000 index 0000000..91bae8a --- /dev/null +++ b/Document/DocumentGeneratorContract @@ -0,0 +1 @@ +Subproject commit 91bae8a4681e3dd1092d2603f089e415377fbfed diff --git a/Document/DocumentGeneratorIsy1 b/Document/DocumentGeneratorIsy1 new file mode 160000 index 0000000..f8cfa71 --- /dev/null +++ b/Document/DocumentGeneratorIsy1 @@ -0,0 +1 @@ +Subproject commit f8cfa71ddb8df3e250dd2dcbdff382a1bb74f402 diff --git a/Document/DocumentSignature b/Document/DocumentSignature new file mode 160000 index 0000000..3205738 --- /dev/null +++ b/Document/DocumentSignature @@ -0,0 +1 @@ +Subproject commit 320573805b06f9ed29271618443324495fc926e7 diff --git a/Document/DocumentStore b/Document/DocumentStore new file mode 160000 index 0000000..ad6188a --- /dev/null +++ b/Document/DocumentStore @@ -0,0 +1 @@ +Subproject commit ad6188a46dab78ca189813e06144ff6ce83527a1 diff --git a/Events/EventDispatcher b/Events/EventDispatcher new file mode 160000 index 0000000..a552b04 --- /dev/null +++ b/Events/EventDispatcher @@ -0,0 +1 @@ +Subproject commit a552b0440f78e08a9cb2ba2f4b2086d314974bac diff --git a/Events/EventScheduleAndMonitor b/Events/EventScheduleAndMonitor new file mode 160000 index 0000000..0023e57 --- /dev/null +++ b/Events/EventScheduleAndMonitor @@ -0,0 +1 @@ +Subproject commit 0023e571876bb0b46550cd8e13223243f4a48ef1 diff --git a/Events/FileManager b/Events/FileManager new file mode 160000 index 0000000..6d01303 --- /dev/null +++ b/Events/FileManager @@ -0,0 +1 @@ +Subproject commit 6d01303d9d1c65325cb3c2a4d7e4527b2cefae3c diff --git a/FabricaProdotto/FabricaProdotto b/FabricaProdotto/FabricaProdotto new file mode 160000 index 0000000..e70d1cf --- /dev/null +++ b/FabricaProdotto/FabricaProdotto @@ -0,0 +1 @@ +Subproject commit e70d1cf635d24a7eb870135fb2c82bf645af73f7 diff --git a/Payment/PaymentAddebitoDirettoCA b/Payment/PaymentAddebitoDirettoCA new file mode 160000 index 0000000..a95bde2 --- /dev/null +++ b/Payment/PaymentAddebitoDirettoCA @@ -0,0 +1 @@ +Subproject commit a95bde2acce3aa8e995a6f437eb9bf0e6aff61dc diff --git a/Payment/PaymentAddebitoDirettoContract b/Payment/PaymentAddebitoDirettoContract new file mode 160000 index 0000000..bb6645f --- /dev/null +++ b/Payment/PaymentAddebitoDirettoContract @@ -0,0 +1 @@ +Subproject commit bb6645f923832bb5107eff741f32627ac352bf12 diff --git a/Payment/PaymentCash b/Payment/PaymentCash new file mode 160000 index 0000000..84954ec --- /dev/null +++ b/Payment/PaymentCash @@ -0,0 +1 @@ +Subproject commit 84954ecca537b78064e57ece660d7cac039e854f diff --git a/Payment/PaymentEventContract b/Payment/PaymentEventContract new file mode 160000 index 0000000..1eaaeaf --- /dev/null +++ b/Payment/PaymentEventContract @@ -0,0 +1 @@ +Subproject commit 1eaaeaf34aa6446c6f69e5f83c58c96c3cc407a9 diff --git a/Payment/PaymentManager b/Payment/PaymentManager new file mode 160000 index 0000000..05cf732 --- /dev/null +++ b/Payment/PaymentManager @@ -0,0 +1 @@ +Subproject commit 05cf732f6b839e90c627d5331cdf524220323052 diff --git a/Polizze/Polizze b/Polizze/Polizze new file mode 160000 index 0000000..b243c6f --- /dev/null +++ b/Polizze/Polizze @@ -0,0 +1 @@ +Subproject commit b243c6f412d0e5a5a98cde1da065f6f44ce36350 diff --git a/Pricing/PricingManager b/Pricing/PricingManager new file mode 160000 index 0000000..49ea930 --- /dev/null +++ b/Pricing/PricingManager @@ -0,0 +1 @@ +Subproject commit 49ea930b5d02d74f75d9c476e6e7d834918fb778 diff --git a/ProcessoVendita/CoherenceService b/ProcessoVendita/CoherenceService new file mode 160000 index 0000000..81d06b4 --- /dev/null +++ b/ProcessoVendita/CoherenceService @@ -0,0 +1 @@ +Subproject commit 81d06b4258b723c86fbf89c7c5d2c371fd6cad1c diff --git a/ProcessoVendita/Dossier b/ProcessoVendita/Dossier new file mode 160000 index 0000000..eca102d --- /dev/null +++ b/ProcessoVendita/Dossier @@ -0,0 +1 @@ +Subproject commit eca102d32d098e99b7f1972316f7aa1000f6e659 diff --git a/ProcessoVendita/DossierInitializer b/ProcessoVendita/DossierInitializer new file mode 160000 index 0000000..782a37c --- /dev/null +++ b/ProcessoVendita/DossierInitializer @@ -0,0 +1 @@ +Subproject commit 782a37cc9949fe0ea8e84fce5d3f1b8c2ac672c2 diff --git a/ProcessoVendita/PostVendita b/ProcessoVendita/PostVendita new file mode 160000 index 0000000..27b5f31 --- /dev/null +++ b/ProcessoVendita/PostVendita @@ -0,0 +1 @@ +Subproject commit 27b5f31a56bea75ec0fb4f9a94395e80639957bc diff --git a/README.md b/README.md new file mode 100644 index 0000000..7e5f575 --- /dev/null +++ b/README.md @@ -0,0 +1,30 @@ +# isypol2-projects + +Bundle delle repo Azure Isypol2 selezionate per condivisione. + +## Cosa contiene + +Submodule Git che puntano direttamente alle repo Azure DevOps (`ssh.dev.azure.com`). +Per clonare tutto: + +```bash +git clone --recursive +``` + +Oppure dopo un clone normale: + +```bash +git submodule update --init --recursive +``` + +## Requisiti + +- Accesso SSH a Azure DevOps organization **Isypol** e **BeTransformation**. +- Chiave SSH configurata in `~/.ssh/`. + +## Struttura + +Le repo sono raggruppate per area (mirror della struttura Azure): + +- `Anagrafe/`, `Batch/`, `CreditAgricole/`, `FabricaProdotto/`, `Polizze/`, `Pricing/`, `ProcessoVendita/` — area business (org Azure: `Isypol`) +- `Campain/`, `Common/`, `Comunication/`, `Document/`, `Events/`, `Payment/`, `Security/` — area infrastruttura (org Azure: `BeTransformation`) diff --git a/Security/IAM b/Security/IAM new file mode 160000 index 0000000..5786fd5 --- /dev/null +++ b/Security/IAM @@ -0,0 +1 @@ +Subproject commit 5786fd50a56a7bbc335866bb77be24e5c95371b1 diff --git a/Security/Profile b/Security/Profile new file mode 160000 index 0000000..071af17 --- /dev/null +++ b/Security/Profile @@ -0,0 +1 @@ +Subproject commit 071af17b1d982bf15152480f960f0fc60955212c diff --git a/Security/Security b/Security/Security new file mode 160000 index 0000000..efd7741 --- /dev/null +++ b/Security/Security @@ -0,0 +1 @@ +Subproject commit efd774139253439a9a447715ac37d4b6cbd09462