2014-06-23 18:00:03 +08:00
|
|
|
buildscript {
|
|
|
|
ext {
|
2018-09-12 00:11:47 +08:00
|
|
|
springBootVersion = '1.5.17.BUILD-SNAPSHOT'
|
2014-06-23 18:00:03 +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" }
|
2014-06-23 18:00:03 +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'
|
2014-06-23 18:00:03 +08:00
|
|
|
|
|
|
|
jar {
|
|
|
|
baseName = 'spring-boot-sample-profile'
|
|
|
|
version = '0.0.0'
|
|
|
|
excludes = ['**/application.yml']
|
|
|
|
}
|
|
|
|
|
|
|
|
task('execJar', type:Jar, dependsOn: 'jar') {
|
|
|
|
baseName = 'spring-boot-sample-profile'
|
|
|
|
version = '0.0.0'
|
|
|
|
classifier = 'exec'
|
|
|
|
from sourceSets.main.output
|
|
|
|
}
|
|
|
|
|
|
|
|
bootRepackage {
|
|
|
|
withJarTask = tasks['execJar']
|
|
|
|
}
|
|
|
|
|
|
|
|
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" }
|
2014-06-23 18:00:03 +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'
|
|
|
|
}
|