2015-06-27 04:26:16 +08:00
|
|
|
buildscript {
|
|
|
|
ext {
|
2019-08-06 23:09:26 +08:00
|
|
|
springBootVersion = '1.5.23.BUILD-SNAPSHOT'
|
2015-06-27 04:26:16 +08:00
|
|
|
}
|
|
|
|
repositories {
|
|
|
|
// NOTE: You should declare only repositories that you need here
|
|
|
|
mavenLocal()
|
|
|
|
mavenCentral()
|
2018-03-28 00:02:52 +08:00
|
|
|
maven { url "https://repo.spring.io/release" }
|
|
|
|
maven { url "https://repo.spring.io/milestone" }
|
|
|
|
maven { url "https://repo.spring.io/snapshot" }
|
2015-06-27 04:26:16 +08:00
|
|
|
}
|
|
|
|
dependencies {
|
|
|
|
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
apply plugin: 'java'
|
|
|
|
apply plugin: 'eclipse'
|
|
|
|
apply plugin: 'idea'
|
2016-10-05 21:54:23 +08:00
|
|
|
apply plugin: 'org.springframework.boot'
|
2015-06-27 04:26:16 +08:00
|
|
|
|
|
|
|
jar {
|
|
|
|
baseName = 'spring-boot-sample-simple'
|
|
|
|
version = '0.0.0'
|
|
|
|
}
|
|
|
|
|
2015-11-27 17:23:12 +08:00
|
|
|
bootRun {
|
2015-06-27 04:26:16 +08:00
|
|
|
systemProperties = System.properties
|
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
// NOTE: You should declare only repositories that you need here
|
|
|
|
mavenLocal()
|
|
|
|
mavenCentral()
|
2018-03-28 00:02:52 +08:00
|
|
|
maven { url "https://repo.spring.io/release" }
|
|
|
|
maven { url "https://repo.spring.io/milestone" }
|
|
|
|
maven { url "https://repo.spring.io/snapshot" }
|
2015-06-27 04:26:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compile("org.springframework.boot:spring-boot-starter")
|
|
|
|
testCompile("org.springframework.boot:spring-boot-starter-test")
|
|
|
|
}
|
|
|
|
|
|
|
|
task wrapper(type: Wrapper) {
|
|
|
|
gradleVersion = '1.6'
|
|
|
|
}
|