Files
javacodingdojo/tmp/demo/build.gradle
Christoph Kroczek bc8e880b0e refactoring
2019-07-10 21:21:48 +02:00

20 lines
396 B
Groovy

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'
}