Skip to content

Commit

Permalink
Bump to 1.2.0-SNAPSHOT
Browse files Browse the repository at this point in the history
  • Loading branch information
t-horikawa committed Dec 8, 2023
1 parent 3bd629d commit b80f512
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ plugins {
}

group = 'com.tsurugidb.tsubakuro-examples'
version = '1.1.0-SNAPSHOT'
version = '1.2.0-SNAPSHOT'

ext {
tsubakuroVersion = '1.1.0-SNAPSHOT'
tsubakuroVersion = '1.2.0-SNAPSHOT'
}

if (hasProperty('mavenLocal')) {
Expand Down
13 changes: 13 additions & 0 deletions modules/cases/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -54,3 +54,16 @@ tasks.register('run345', JavaExec) {
systemProperty 'org.slf4j.simpleLogger.showShortLogName', 'true'
systemProperty 'org.slf4j.simpleLogger.levelInBrackets', 'true'
}


tasks.register('run406', JavaExec) {
classpath = sourceSets.main.runtimeClasspath
mainClass = 'com.tsurugidb.tsubakuro.examples.connectRace.Main'

systemProperty 'tsurugi.dbname', findProperty('tsurugi.dbname') ?: 'ipc:tsurugi'

systemProperty 'org.slf4j.simpleLogger.defaultLogLevel', findProperty('loglevel') ?: 'info'
systemProperty 'org.slf4j.simpleLogger.showThreadName', 'false'
systemProperty 'org.slf4j.simpleLogger.showShortLogName', 'true'
systemProperty 'org.slf4j.simpleLogger.levelInBrackets', 'true'
}

0 comments on commit b80f512

Please sign in to comment.