More dependabot (#7577)

This commit is contained in:
Trask Stalnaker 2023-01-15 23:53:20 -08:00 committed by GitHub
parent 911b3b5feb
commit ba09a69a0f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 18 additions and 8 deletions

View File

@ -72,3 +72,10 @@ updates:
schedule:
interval: "daily"
open-pull-requests-limit: 10
- package-ecosystem: "gradle"
directory: "/benchmark-overhead"
rebase-strategy: "disabled"
schedule:
interval: "daily"
open-pull-requests-limit: 10

View File

@ -1,6 +1,6 @@
plugins {
id("java")
id("com.diffplug.spotless") version "6.9.0"
id("com.diffplug.spotless") version "6.12.1"
}
spotless {
@ -16,15 +16,18 @@ repositories {
}
dependencies {
api(enforcedPlatform("org.junit:junit-bom:5.9.2"))
testImplementation("org.testcontainers:testcontainers:1.16.2")
testImplementation("org.testcontainers:postgresql:1.15.3")
testImplementation("org.junit.jupiter:junit-jupiter-api:5.9.0")
testImplementation("org.junit.jupiter:junit-jupiter-params:5.9.0")
testImplementation("com.squareup.okhttp3:okhttp:4.9.1")
testImplementation("org.testcontainers:postgresql:1.17.6")
testImplementation("org.junit.jupiter:junit-jupiter-api")
testImplementation("org.junit.jupiter:junit-jupiter-params")
testImplementation("com.squareup.okhttp3:okhttp:4.10.0")
testImplementation("org.jooq:joox:1.6.2")
testImplementation("com.jayway.jsonpath:json-path:2.6.0")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.9.0")
testImplementation("org.slf4j:slf4j-simple:2.0.0")
testImplementation("com.jayway.jsonpath:json-path:2.7.0")
testImplementation("org.slf4j:slf4j-simple:2.0.6")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine")
}
tasks {