Skip to content

Commit

Permalink
Merge pull request #22 from project-tsurugi/fix-ci-warnings
Browse files Browse the repository at this point in the history
Fix build warnings for incompatible with Gradle 9.0
  • Loading branch information
t-horikawa authored Jan 31, 2024
2 parents 93c2947 + 23ea7b2 commit 1b8b282
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ jobs:

steps:
- name: Setup_Java
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '11'

- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Assemble
run: |
Expand Down
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 1b8b282

Please sign in to comment.