mirror of
https://github.com/kestra-io/kestra.git
synced 2025-12-19 09:50:29 -05:00
Bumps [jakarta.xml.bind:jakarta.xml.bind-api](https://github.com/jakartaee/jaxb-api) from 4.0.2 to 4.0.4. - [Release notes](https://github.com/jakartaee/jaxb-api/releases) - [Commits](https://github.com/jakartaee/jaxb-api/compare/4.0.2...4.0.4) --- updated-dependencies: - dependency-name: jakarta.xml.bind:jakarta.xml.bind-api dependency-version: 4.0.4 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
22 lines
692 B
Groovy
22 lines
692 B
Groovy
configurations {
|
|
implementation.extendsFrom(micronaut)
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(":core")
|
|
implementation project(":scheduler")
|
|
implementation project(":executor")
|
|
implementation project(":worker")
|
|
|
|
implementation("io.micronaut.data:micronaut-data-jdbc")
|
|
implementation("io.micronaut.sql:micronaut-jdbc-hikari")
|
|
implementation("io.micronaut.sql:micronaut-jooq")
|
|
implementation("io.micronaut.flyway:micronaut-flyway")
|
|
|
|
// see https://github.com/jOOQ/jOOQ/issues/14865
|
|
compileOnly ("jakarta.xml.bind:jakarta.xml.bind-api:4.0.4")
|
|
|
|
testImplementation project(':tests')
|
|
testImplementation project(':core').sourceSets.test.output
|
|
}
|