|
|
|
buildscript {
|
|
|
|
ext {
|
|
|
|
springBootVersion = '2.0.0.BUILD-SNAPSHOT'
|
|
|
|
}
|
|
|
|
repositories {
|
|
|
|
// NOTE: You should declare only repositories that you need here
|
|
|
|
mavenLocal()
|
|
|
|
mavenCentral()
|
|
|
|
maven { url "http://repo.spring.io/release" }
|
|
|
|
maven { url "http://repo.spring.io/milestone" }
|
|
|
|
maven { url "http://repo.spring.io/snapshot" }
|
|
|
|
}
|
|
|
|
dependencies {
|
|
|
|
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
apply plugin: 'java'
|
|
|
|
apply plugin: 'eclipse'
|
|
|
|
apply plugin: 'idea'
|
|
|
|
apply plugin: 'org.springframework.boot'
|
|
|
|
apply plugin: 'io.spring.dependency-management'
|
|
|
|
|
|
|
|
version = springBootVersion
|
|
|
|
group = 'org.springframework.boot'
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
// NOTE: You should declare only repositories that you need here
|
|
|
|
mavenLocal()
|
|
|
|
mavenCentral()
|
|
|
|
maven { url "http://repo.spring.io/release" }
|
|
|
|
maven { url "http://repo.spring.io/milestone" }
|
|
|
|
maven { url "http://repo.spring.io/snapshot" }
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compile("org.springframework.boot:spring-boot-starter")
|
|
|
|
compile("org.hibernate:hibernate-validator")
|
|
|
|
testCompile("org.springframework.boot:spring-boot-starter-test")
|
|
|
|
}
|