31 lines
629 B
Groovy
31 lines
629 B
Groovy
|
buildscript {
|
||
|
ext {
|
||
|
springBootVersion = '1.5.2.RELEASE'
|
||
|
}
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
}
|
||
|
dependencies {
|
||
|
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
|
||
|
}
|
||
|
}
|
||
|
|
||
|
apply plugin: 'java'
|
||
|
apply plugin: 'eclipse'
|
||
|
apply plugin: 'org.springframework.boot'
|
||
|
|
||
|
version = '0.0.1-SNAPSHOT'
|
||
|
sourceCompatibility = 1.8
|
||
|
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
}
|
||
|
|
||
|
|
||
|
dependencies {
|
||
|
compile('org.springframework.boot:spring-boot-starter-data-jpa')
|
||
|
compile('org.springframework.boot:spring-boot-starter-data-rest')
|
||
|
runtime('com.h2database:h2')
|
||
|
testCompile('org.springframework.boot:spring-boot-starter-test')
|
||
|
}
|