Initial commit

This commit is contained in:
2020-08-28 19:19:33 +02:00
commit 504df2b15d
19 changed files with 690 additions and 0 deletions

24
build.gradle Normal file
View File

@@ -0,0 +1,24 @@
plugins {
id 'org.springframework.boot' version '2.2.2.RELEASE'
id 'java'
}
apply plugin: 'io.spring.dependency-management'
sourceCompatibility = '11'
repositories {
mavenCentral()
}
sourceSets.main.resources.srcDirs = ["src/main/resources"]
dependencies {
implementation 'org.springframework.boot:spring-boot-starter'
implementation 'org.springframework.boot:spring-boot-starter-actuator'
implementation 'org.springframework.boot:spring-boot-starter-validation'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-security'
runtimeOnly 'com.h2database:h2'
compile("org.springframework.boot:spring-boot-starter-web")
}