Merge remote-tracking branch 'origin/master' into feature/config

This commit is contained in:
2020-06-14 21:15:37 +02:00
171 changed files with 6705 additions and 2636 deletions

View File

@ -3,7 +3,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:2.2.2.RELEASE")
classpath("org.springframework.boot:spring-boot-gradle-plugin:2.2.7.RELEASE")
}
}
@ -27,7 +27,7 @@ dependencies {
// implementation 'org.springframework.session:spring-session-jdbc'
implementation 'com.github.gwenn:sqlite-dialect:0.1.0'
implementation 'org.springframework.boot:spring-boot-devtools'
implementation 'org.xerial:sqlite-jdbc:3.28.0'
implementation 'org.xerial:sqlite-jdbc:3.31.1'
implementation 'org.yaml:snakeyaml:1.26'
testCompile("org.springframework.boot:spring-boot-starter-test")
}
@ -36,5 +36,5 @@ group 'org.hso'
version '0.1.0'
bootRun {
args = ["--spring.profiles.active=dev"]
args = ["--spring.profiles.active=dev --spring.config.location=classpath:/application.properties"]
}