URL-3 Spring Boot skeletons for the service

This commit is contained in:
LenaGmbh
2025-12-16 17:58:35 +01:00
parent 9ecf26eee5
commit 23241f4af1
13 changed files with 213 additions and 11 deletions

View File

@@ -1,2 +1,15 @@
rootProject.name = 'URLShortener'
include 'test'
include 'services'
include 'services:analytics-service'
findProject(':services:analytics-service')?.name = 'analytics-service'
include 'services:auth-service'
findProject(':services:auth-service')?.name = 'auth-service'
include 'services:redirect-service'
findProject(':services:redirect-service')?.name = 'redirect-service'
include 'services:shortener-service'
findProject(':services:shortener-service')?.name = 'shortener-service'