Skip to content

Commit

Permalink
Up deps.
Browse files Browse the repository at this point in the history
  • Loading branch information
donbeave committed Nov 20, 2023
1 parent 01d0c1f commit 1279fbf
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 14 deletions.
12 changes: 6 additions & 6 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
plugins {
// https://plugins.gradle.org/plugin/com.tailrocks.java
id("com.tailrocks.java") version "0.4.0"
id("com.tailrocks.java") version "0.5.1"

// https://plugins.gradle.org/plugin/com.tailrocks.spotless
id("com.tailrocks.spotless") version "0.4.0"
id("com.tailrocks.spotless") version "0.5.1"

// https://plugins.gradle.org/plugin/com.tailrocks.idea
id("com.tailrocks.idea") version "0.4.0" apply false
id("com.tailrocks.idea") version "0.5.1" apply false

// https://plugins.gradle.org/plugin/com.tailrocks.junit
id("com.tailrocks.junit") version "0.4.0" apply false
id("com.tailrocks.junit") version "0.5.1" apply false

// https://plugins.gradle.org/plugin/com.tailrocks.versions
id("com.tailrocks.versions") version "0.4.0" apply false
id("com.tailrocks.versions") version "0.5.1" apply false

// https://plugins.gradle.org/plugin/com.tailrocks.kotlin
id("com.tailrocks.kotlin") version "0.5.0" apply false
id("com.tailrocks.kotlin") version "0.6.1" apply false

// https://plugins.gradle.org/plugin/com.adarshr.test-logger
id("com.adarshr.test-logger") version "4.0.0" apply false
Expand Down
12 changes: 7 additions & 5 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,22 +24,23 @@ jambalaya-tenancy-spock = "0.6.0"

# Libraries
apollo = "3.8.2"
common-protos = "2.26.0"
common-protos = "2.28.0"
graphql-data-loader = "3.2.2"
grpc = "1.59.0"
guava = "31.1-jre"
guava = "32.1.3-jre"
mapstruct = "1.5.5.Final"
micronaut = "4.2.0"
okhttp = "4.10.0"
okhttp = "4.12.0"
protobuf = "3.24.4"
slugify = "3.0.6"
error-prone = "2.23.0"
icu4j = "72.1"
icu4j = "74.1"
spock = "2.3-groovy-4.0"
jooq = "3.18.7"
opentelemetry = "1.32.0"
opentelemetry-semconv = "1.22.0-alpha"
spotbugs = "4.8.0"
spotbugs = "4.8.1"
junit = "5.10.0"

[libraries]
# Libraries
Expand All @@ -65,3 +66,4 @@ 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" }
2 changes: 1 addition & 1 deletion jambalaya-junit-opentelemetry/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ dependencies {
api(jambalayaLibs.spotbugs.annotations)

// JUnit
implementation("org.junit.jupiter:junit-jupiter-api:5.10.0")
implementation(jambalayaLibs.junit.jupiter.api)
}
2 changes: 1 addition & 1 deletion jambalaya-tenancy-junit/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ dependencies {
api(project(":jambalaya-tenancy"))

// JUnit
implementation("org.junit.jupiter:junit-jupiter-api:5.10.0")
implementation(jambalayaLibs.junit.jupiter.api)
}
2 changes: 1 addition & 1 deletion jambalaya-tenancy/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ dependencies {

compileOnly("com.google.errorprone:error_prone_annotations:2.23.0")

implementation("org.junit.jupiter:junit-jupiter-api:5.10.0")
implementation(jambalayaLibs.junit.jupiter.api)
}

0 comments on commit 1279fbf

Please sign in to comment.