gradle time

This commit is contained in:
2020-03-19 17:08:03 +01:00
parent db7eda0743
commit 295e8c479a
17 changed files with 222 additions and 622 deletions

18
build.gradle Normal file
View File

@@ -0,0 +1,18 @@
plugins {
id 'org.springframework.boot' version '2.1.13.RELEASE'
id 'io.spring.dependency-management' version '1.0.9.RELEASE'
id 'java'
}
group = 'com.frontend.stage'
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'
}