a256622f37
- 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
33 lines
1.1 KiB
Kotlin
33 lines
1.1 KiB
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
kotlin("plugin.spring")
|
|
id("org.springframework.boot")
|
|
}
|
|
|
|
springBoot {
|
|
mainClass.set("at.mocode.masterdata.service.MasterdataServiceApplicationKt")
|
|
}
|
|
|
|
dependencies {
|
|
implementation(projects.platform.platformDependencies)
|
|
|
|
implementation(projects.masterdata.masterdataDomain)
|
|
implementation(projects.masterdata.masterdataApplication)
|
|
implementation(projects.masterdata.masterdataInfrastructure)
|
|
implementation(projects.masterdata.masterdataApi)
|
|
|
|
implementation(projects.infrastructure.auth.authClient)
|
|
implementation(projects.infrastructure.cache.redisCache)
|
|
implementation(projects.infrastructure.messaging.messagingClient)
|
|
implementation(projects.infrastructure.monitoring.monitoringClient)
|
|
|
|
implementation("org.springframework.boot:spring-boot-starter-web")
|
|
implementation("org.springframework.boot:spring-boot-starter-validation")
|
|
implementation("org.springframework.boot:spring-boot-starter-actuator")
|
|
implementation("org.springdoc:springdoc-openapi-starter-webmvc-ui")
|
|
|
|
runtimeOnly("org.postgresql:postgresql")
|
|
|
|
testImplementation(projects.platform.platformTesting)
|
|
}
|