Files
meldestelle/members/members-api/build.gradle.kts
T
stefan a256622f37 refactor: Migrate from monolithic to modular architecture
- Restructure project into domain-specific modules (core, masterdata, members, horses, events, infrastructure)
- Create shared client components in common-ui module
- Implement CI/CD workflows with GitHub Actions
- Consolidate documentation in docs directory
- Remove deprecated modules and documentation files
- Add cleanup and migration scripts for transition
- Update README with new project structure and setup instructions
2025-07-22 18:44:18 +02:00

17 lines
425 B
Kotlin

plugins {
kotlin("jvm")
kotlin("plugin.spring")
}
dependencies {
implementation(projects.platform.platformDependencies)
implementation(projects.members.membersDomain)
implementation(projects.members.membersApplication)
implementation("org.springframework:spring-web")
implementation("org.springdoc:springdoc-openapi-starter-common")
testImplementation(projects.platform.platformTesting)
}