- 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
17 lines
534 B
Plaintext
17 lines
534 B
Plaintext
plugins {
|
|
kotlin("jvm")
|
|
kotlin("plugin.spring")
|
|
}
|
|
|
|
dependencies {
|
|
implementation(projects.platform.platformDependencies)
|
|
|
|
implementation("org.springframework.boot:spring-boot-starter-actuator")
|
|
implementation("io.micrometer:micrometer-registry-prometheus")
|
|
implementation("io.zipkin.reporter2:zipkin-reporter-brave")
|
|
implementation("io.zipkin.reporter2:zipkin-sender-okhttp3")
|
|
implementation("io.micrometer:micrometer-tracing-bridge-brave")
|
|
|
|
testImplementation(projects.platform.platformTesting)
|
|
}
|