Skip to content

Commit

Permalink
Deps.
Browse files Browse the repository at this point in the history
  • Loading branch information
donbeave committed Nov 20, 2023
1 parent 1279fbf commit 31d603b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ grpc = "1.59.0"
guava = "32.1.3-jre"
mapstruct = "1.5.5.Final"
micronaut = "4.2.0"
micronaut-graphql = "4.1.0"
okhttp = "4.12.0"
protobuf = "3.24.4"
slugify = "3.0.6"
Expand All @@ -41,6 +42,8 @@ opentelemetry = "1.32.0"
opentelemetry-semconv = "1.22.0-alpha"
spotbugs = "4.8.1"
junit = "5.10.0"
flyway = "9.22.3"
slf4j = "2.0.9"

[libraries]
# Libraries
Expand All @@ -62,8 +65,11 @@ error-prone-annotations = { module = "com.google.errorprone:error_prone_annotati
icu4j = { module = "com.ibm.icu:icu4j", version.ref = "icu4j" }
spock-core = { module = "org.spockframework:spock-core", version.ref = "spock" }
micronaut-inject-java = { module = "io.micronaut:micronaut-inject-java", version.ref = "micronaut" }
micronaut-graphql = { module = "io.micronaut.graphql:micronaut-graphql", version.ref = "micronaut-graphql" }
jooq = { module = "org.jooq:jooq", version.ref = "jooq" }
opentelemetry-api = { module = "io.opentelemetry:opentelemetry-api", version.ref = "opentelemetry" }
opentelemetry-semconv = { module = "io.opentelemetry.semconv:opentelemetry-semconv", version.ref = "opentelemetry-semconv" }
spotbugs-annotations = { module = "com.github.spotbugs:spotbugs-annotations", version.ref = "spotbugs" }
junit-jupiter-api = { module = "org.junit.jupiter:junit-jupiter-api", version.ref = "junit" }
flyway-core = { module = "org.flywaydb:flyway-core", version.ref = "flyway" }
slf4j-api = { module = "org.slf4j:slf4j-api", version.ref = "slf4j" }
2 changes: 1 addition & 1 deletion jambalaya-micronaut-graphql/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ apply(plugin = "jambalaya-library-conventions")
dependencies {
api(project(":jambalaya-checks"))

implementation("io.micronaut.graphql:micronaut-graphql:4.0.2")
implementation(jambalayaLibs.micronaut.graphql)
}
4 changes: 2 additions & 2 deletions jambalaya-tenancy-flyway/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ apply(plugin = "jambalaya-library-conventions")
dependencies {
api(project(":jambalaya-checks"))

implementation("org.flywaydb:flyway-core:9.22.3")
implementation("org.slf4j:slf4j-api:2.0.9")
implementation(jambalayaLibs.flyway.core)
implementation(jambalayaLibs.slf4j.api)
}

0 comments on commit 31d603b

Please sign in to comment.