Skip to content

Commit

Permalink
build: fix warnings for incompatible with Gradle 9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
akirakw committed Jan 31, 2024
1 parent 1b8e263 commit 23ea7b2
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion buildSrc/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ repositories {
}

dependencies {
implementation 'gradle.plugin.com.github.spotbugs.snom:spotbugs-gradle-plugin:4.7.1'
implementation 'com.github.spotbugs.snom:spotbugs-gradle-plugin:6.0.7'
}
2 changes: 2 additions & 0 deletions modules/kvs/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ sourceSets {
}
}

spotbugsKvsIntegrationTest.enabled = false

configurations {
kvsIntegrationTestImplementation.extendsFrom testImplementation
kvsIntegrationTestRuntime.extendsFrom testRuntime
Expand Down
3 changes: 1 addition & 2 deletions modules/tpcc/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,10 @@ tasks.register('runTpcc', JavaExec) {
systemProperty 'org.slf4j.simpleLogger.levelInBrackets', 'true'
}

startScripts {
application {
applicationName = 'tpcc'
mainClass = 'com.tsurugidb.tsubakuro.examples.tpcc.Main'
applicationDefaultJvmArgs = [
'-Dcom.tsurugidb.tsubakuro.jniverify=false',
'-Dtsurugi.dbname=ipc:tsurugi'
]
}
Expand Down
3 changes: 1 addition & 2 deletions modules/tpccLoader/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,10 @@ tasks.register('runTpccLoader', JavaExec) {
systemProperty 'org.slf4j.simpleLogger.levelInBrackets', 'true'
}

startScripts {
application {
applicationName = 'tpccLoader'
mainClass = 'com.tsurugidb.tsubakuro.examples.tpccLoader.Main'
applicationDefaultJvmArgs = [
'-Dcom.tsurugidb.tsubakuro.jniverify=false',
'-Dtsurugi.dbname=ipc:tsurugi'
]
}
Expand Down

0 comments on commit 23ea7b2

Please sign in to comment.