Files
kestra/cli/build.gradle
Roman Acevedo 1791127acb test: unflaky FileChangedEventListener and PluginDefaultServiceTest, debug log on JdbcServiceLivenessCoordinatorTest
* test: parallelize AbstractRunnerTest

* test: add TestsUtils.randomTenant(..) function

* test: i think i found a bug

* revert debug

* test: add comment on potential bug, make test pass

* test: fix test metadata

* test: unflaky PluginDefaultServiceTest by separating class

* test: add log on JdbcServiceLivenessCoordinatorTest to debug

* test: cleanup debug log

* fix
2025-09-15 17:07:37 +02:00

45 lines
1.3 KiB
Groovy

configurations {
implementation.extendsFrom(micronaut)
}
dependencies {
// micronaut
implementation "info.picocli:picocli"
implementation "io.micronaut.picocli:micronaut-picocli"
implementation "io.micronaut:micronaut-management"
implementation "io.micronaut:micronaut-http-server-netty"
// logs
implementation 'ch.qos.logback.contrib:logback-json-classic'
implementation 'ch.qos.logback.contrib:logback-jackson'
// OTLP metrics
implementation "io.micronaut.micrometer:micronaut-micrometer-registry-otlp"
// aether still use javax.inject
compileOnly 'javax.inject:javax.inject:1'
// modules
implementation project(":core")
implementation project(":script")
implementation project(":repository-memory")
implementation project(":runner-memory")
implementation project(":jdbc")
implementation project(":jdbc-h2")
implementation project(":jdbc-mysql")
implementation project(":jdbc-postgres")
implementation project(":storage-local")
// Kestra server components
implementation project(":executor")
implementation project(":scheduler")
implementation project(":webserver")
implementation project(":worker")
//test
testImplementation project(':tests')
testImplementation "org.wiremock:wiremock-jetty12"
}