31 lines
659 B
Groovy
31 lines
659 B
Groovy
buildscript{
|
|
ext{
|
|
springBootVersion = '2.1.7.RELEASE'
|
|
}
|
|
repositories {
|
|
mavenCentral()
|
|
jcenter()
|
|
}
|
|
dependencies {
|
|
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
|
|
}
|
|
}
|
|
|
|
apply plugin: 'java'
|
|
apply plugin: 'eclipse'
|
|
apply plugin: 'org.springframework.boot'
|
|
apply plugin: 'io.spring.dependency-management'
|
|
|
|
group 'com.banjjoknim.book'
|
|
version '1.0-SNAPSHOT'
|
|
sourceCompatibility = 1.8
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
compile('org.springframework.boot:spring-boot-starter-web')
|
|
testCompile('org.springframework.boot:spring-boot-starter-test')
|
|
}
|