reworked login to actually use a database

* added a very basic login setup, see wiki.mosad.xyz for more information
* updated spring boot to 2.2.2
This commit is contained in:
2019-12-08 17:16:17 +01:00
parent adf1502b2b
commit a44efe06b7
13 changed files with 234 additions and 71 deletions

View File

@ -3,7 +3,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:2.2.1.RELEASE")
classpath("org.springframework.boot:spring-boot-gradle-plugin:2.2.2.RELEASE")
}
}
@ -20,9 +20,11 @@ sourceCompatibility = 1.8
targetCompatibility = 1.8
dependencies {
compile("org.springframework.boot:spring-boot-starter-web")
compile("org.springframework.boot:spring-boot-starter-thymeleaf")
compile("org.springframework.boot:spring-boot-devtools")
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
implementation 'org.springframework.boot:spring-boot-starter-data-jdbc'
implementation 'org.springframework.boot:spring-boot-devtools'
implementation 'org.hsqldb:hsqldb'
testCompile("org.springframework.boot:spring-boot-starter-test")
}