a9cd7750f4
CI / unit-test (push) Has been cancelled
CI / detect-changes (push) Has been cancelled
CI / build (push) Has been cancelled
Publish docs via GitHub Pages / Deploy docs (push) Has been cancelled
CI / test-harness (push) Has been cancelled
CI / generate-e2e-matrix (push) Has been cancelled
CI / e2e (push) Has been cancelled
CI / build-ui (push) Has been cancelled
Release Drafter / update_release_draft (push) Has been cancelled
UI v2 Integration CI / E2E (Integration) (push) Has been cancelled
UI v2 CI / Lint, Format & Test (push) Has been cancelled
UI v2 CI / E2E (Mocked) (push) Has been cancelled
45 lines
1.3 KiB
Groovy
45 lines
1.3 KiB
Groovy
dependencies {
|
|
// Core Conductor dependencies
|
|
implementation project(':conductor-common')
|
|
implementation project(':conductor-core')
|
|
|
|
// Spring Boot support
|
|
implementation 'org.springframework.boot:spring-boot-starter'
|
|
|
|
// Apache Commons Lang for utility classes
|
|
implementation 'org.apache.commons:commons-lang3'
|
|
|
|
// Reactive programming support with RxJava
|
|
implementation "io.reactivex:rxjava:${revRxJava}"
|
|
|
|
// SBMTODO: Remove Guava dependency if possible
|
|
// Guava should only be included if specifically needed
|
|
implementation "com.google.guava:guava:${revGuava}"
|
|
|
|
// Removed AWS SQS SDK as we are transitioning to Kafka
|
|
// implementation "com.amazonaws:aws-java-sdk-sqs:${revAwsSdk}"
|
|
|
|
// Test dependencies
|
|
testImplementation 'org.springframework.boot:spring-boot-starter-test'
|
|
testImplementation project(':conductor-common').sourceSets.test.output
|
|
|
|
|
|
// Add Kafka client dependency
|
|
implementation 'org.apache.kafka:kafka-clients:3.5.1'
|
|
|
|
// Add SLF4J API for logging
|
|
implementation 'org.slf4j:slf4j-api:2.0.9'
|
|
|
|
// Add SLF4J binding for logging with Logback
|
|
runtimeOnly 'ch.qos.logback:logback-classic:1.5.21'
|
|
}
|
|
|
|
// test {
|
|
// testLogging {
|
|
// events "passed", "skipped", "failed"
|
|
// showStandardStreams = true // Enable standard output
|
|
// }
|
|
// }
|
|
|
|
|