meldestelle/settings.gradle.kts
Stefan Mogeritsch c53daa926a
All checks were successful
Build and Publish Docker Images / build-and-push (., backend/infrastructure/gateway/Dockerfile, api-gateway, api-gateway) (push) Successful in 7m12s
Build and Publish Docker Images / build-and-push (., backend/services/ping/Dockerfile, ping-service, ping-service) (push) Successful in 6m42s
Build and Publish Docker Images / build-and-push (., config/docker/caddy/web-app/Dockerfile, web-app, web-app) (push) Successful in 6m28s
Build and Publish Docker Images / build-and-push (., config/docker/keycloak/Dockerfile, keycloak, keycloak) (push) Successful in 1m51s
feat(horses-service): remove legacy configuration and repository classes
- Deleted outdated `ApplicationConfiguration` and `HorseRepositoryImpl` classes.
- Migrated to streamlined modular Gradle configuration in `build.gradle.kts`.
- Updated domain models and dependencies to use multiplatform and serialization plugins.
- Added modular setup for `horses` namespace in `settings.gradle.kts`.
- Reorganized database configuration with minimal JDBC bindings for development.

Signed-off-by: Stefan Mogeritsch <stefan.mo.co@gmail.com>
2026-03-23 13:47:04 +01:00

169 lines
6.4 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

rootProject.name = "Meldestelle"
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
pluginManagement {
repositories {
gradlePluginPortal()
mavenCentral()
google()
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
maven("https://us-central1-maven.pkg.dev/varabyte-repos/public")
maven("https://oss.sonatype.org/content/repositories/snapshots/")
maven("https://jitpack.io")
}
}
plugins {
// Settings plugins cannot easily use version catalogs because the catalog is loaded
// as part of the settings evaluation. We must hard-code the version here.
id("org.gradle.toolchains.foojay-resolver-convention") version "1.0.0"
}
dependencyResolutionManagement {
repositories {
gradlePluginPortal()
mavenCentral()
google()
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
maven("https://us-central1-maven.pkg.dev/varabyte-repos/public")
maven("https://oss.sonatype.org/content/repositories/snapshots/")
maven("https://jitpack.io")
}
}
// ==========================================================================
// CONTRACTS
// ==========================================================================
include(":contracts:ping-api")
// ==========================================================================
// Backend
// ==========================================================================
// === BACKEND - INFRASTRUCTURE ===
// --- CACHE ---
include(":backend:infrastructure:cache:cache-api")
include(":backend:infrastructure:cache:valkey-cache")
// --- EVENT STORE ---
include(":backend:infrastructure:event-store:event-store-api")
include(":backend:infrastructure:event-store:valkey-event-store")
// --- GATEWAY ---
include(":backend:infrastructure:gateway")
// --- MESSAGING ---
include(":backend:infrastructure:messaging:messaging-client")
include(":backend:infrastructure:messaging:messaging-config")
// --- MONITORING ---
include(":backend:infrastructure:monitoring:monitoring-client")
include(":backend:infrastructure:monitoring:monitoring-server")
// --- PERSISTENCE ---
include(":backend:infrastructure:persistence")
// --- SECURITY ---
include(":backend:infrastructure:security")
// === BACKEND - SERVICES ===
// --- ENTRIES (Nennungen) ---
include(":backend:services:entries:entries-api")
// entries-service: ON HOLD pausiert bis Domain-Workshop (siehe MASTER_ROADMAP Phase 3)
// Code liegt im Branch: feature/entries-service
// include(":backend:services:entries:entries-service")
// --- HORSES (Pferde-Verwaltung) ---
// Namespace ':horses:*' damit projects.horses.* Accessors funktionieren
include(":horses")
project(":horses").projectDir = file("backend/services/horses")
include(":horses:horses-domain")
// horses-common: ON HOLD veraltete API-Referenzen
// include(":horses:horses-common")
include(":horses:horses-infrastructure")
// horses-api: ON HOLD Ktor-basiert, wird separat aktiviert
// include(":horses:horses-api")
include(":horses:horses-service")
project(":horses:horses-domain").projectDir = file("backend/services/horses/horses-domain")
// project(":horses:horses-common").projectDir = file("backend/services/horses/horses-common")
project(":horses:horses-infrastructure").projectDir = file("backend/services/horses/horses-infrastructure")
project(":horses:horses-service").projectDir = file("backend/services/horses/horses-service")
// --- PERSONS (Personen/Reiter) ---
include(":persons")
project(":persons").projectDir = file("backend/services/persons")
include(":persons:persons-domain")
include(":persons:persons-infrastructure")
include(":persons:persons-service")
project(":persons:persons-domain").projectDir = file("backend/services/persons/persons-domain")
project(":persons:persons-infrastructure").projectDir = file("backend/services/persons/persons-infrastructure")
project(":persons:persons-service").projectDir = file("backend/services/persons/persons-service")
// --- CLUBS (Vereine) ---
include(":clubs")
project(":clubs").projectDir = file("backend/services/clubs")
include(":clubs:clubs-domain")
include(":clubs:clubs-infrastructure")
include(":clubs:clubs-service")
project(":clubs:clubs-domain").projectDir = file("backend/services/clubs/clubs-domain")
project(":clubs:clubs-infrastructure").projectDir = file("backend/services/clubs/clubs-infrastructure")
project(":clubs:clubs-service").projectDir = file("backend/services/clubs/clubs-service")
// --- OFFICIALS (Richter) ---
include(":officials")
project(":officials").projectDir = file("backend/services/officials")
include(":officials:officials-domain")
include(":officials:officials-infrastructure")
include(":officials:officials-service")
project(":officials:officials-domain").projectDir = file("backend/services/officials/officials-domain")
project(":officials:officials-infrastructure").projectDir = file("backend/services/officials/officials-infrastructure")
project(":officials:officials-service").projectDir = file("backend/services/officials/officials-service")
// --- PING (Ping Service) ---
include(":backend:services:ping:ping-service")
// ==========================================================================
// CORE
// ==========================================================================
include(":core:core-domain")
include(":core:core-utils")
// ==========================================================================
// DOCUMENTATION
// ==========================================================================
include(":docs")
// ==========================================================================
// FRONTEND
// ==========================================================================
// --- CORE ---
// frontend/core/auth
include(":frontend:core:auth")
include(":frontend:core:domain")
include(":frontend:core:design-system")
include(":frontend:core:navigation")
include(":frontend:core:network")
include(":frontend:core:local-db")
include(":frontend:core:sync")
// --- FEATURES ---
// include(":frontend:features:members-feature")
include(":frontend:features:ping-feature")
include(":frontend:features:nennung-feature")
// --- SHELLS ---
include(":frontend:shells:meldestelle-portal")
// ==========================================================================
// PLATFORM
// ==========================================================================
// --- BOM ---
include(":platform:platform-bom")
// --- DEPENDENCIES ---
include(":platform:platform-dependencies")
// --- TESTING ---
include(":platform:platform-testing")
include(":platform:architecture-tests")