Files
kestra/jdbc/build.gradle
dependabot[bot] d53b933bdf build(deps): bump jakarta.xml.bind:jakarta.xml.bind-api
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>
2025-09-17 11:32:43 +02:00

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
}