refactoring

This commit is contained in:
Christoph Kroczek
2019-07-10 21:21:48 +02:00
parent 55b00b5e65
commit bc8e880b0e
31 changed files with 838 additions and 0 deletions

19
tmp/demo/build.gradle Normal file
View File

@@ -0,0 +1,19 @@
plugins {
id 'org.springframework.boot' version '2.1.6.RELEASE'
id 'java'
}
apply plugin: 'io.spring.dependency-management'
group = 'com.example'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '1.8'
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
}