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/<branch>.
This commit is contained in:
l.matrone
2026-05-20 10:14:51 +02:00
commit dfa85ed08a
87 changed files with 596 additions and 0 deletions

151
.add-submodules.sh Normal file
View File

@@ -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> <area> <repo>
# 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"

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
.add-submodules.log

331
.gitmodules vendored Normal file
View File

@@ -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

1
Anagrafe/Anagrafe Submodule

Submodule Anagrafe/Anagrafe added at f84e831cbb

1
Anagrafe/AnagrafeSql Submodule

Submodule Anagrafe/AnagrafeSql added at c21bee7b8c

1
Batch/DWH Submodule

Submodule Batch/DWH added at 421ce067f6

1
Common/ConfigManager Submodule

Submodule Common/ConfigManager added at f759ec5e3f

1
Common/Contabilita Submodule

Submodule Common/Contabilita added at 2211975215

1
Common/Domain Submodule

Submodule Common/Domain added at 010c61e6ae

1
Common/Language Submodule

Submodule Common/Language added at df00f4d84e

1
Common/survey Submodule

Submodule Common/survey added at 3487ba6884

1
Common/workflow Submodule

Submodule Common/workflow added at 0b163ef8bb

1
CreditAgricole/BE4API Submodule

Submodule CreditAgricole/BE4API added at ffa125c111

1
CreditAgricole/CABL Submodule

Submodule CreditAgricole/CABL added at 0b9857edba

1
CreditAgricole/CAData Submodule

Submodule CreditAgricole/CAData added at 21e47d4c33

1
CreditAgricole/CAJbpm Submodule

Submodule CreditAgricole/CAJbpm added at ed35816466

1
CreditAgricole/CASIS Submodule

Submodule CreditAgricole/CASIS added at 33d10d1641

1
CreditAgricole/NRT_CA Submodule

Submodule CreditAgricole/NRT_CA added at c56bb826fa

1
Events/FileManager Submodule

Submodule Events/FileManager added at 6d01303d9d

1
Payment/PaymentCash Submodule

Submodule Payment/PaymentCash added at 84954ecca5

1
Polizze/Polizze Submodule

Submodule Polizze/Polizze added at b243c6f412

30
README.md Normal file
View File

@@ -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 <gitlab-url>
```
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`)

1
Security/IAM Submodule

Submodule Security/IAM added at 5786fd50a5

1
Security/Profile Submodule

Submodule Security/Profile added at 071af17b1d

1
Security/Security Submodule

Submodule Security/Security added at efd7741392