gs-spring-boot-docker/initial/build.gradle

35 строки
642 B
Groovy
Исходник Обычный вид История

2015-03-31 13:50:03 +03:00
buildscript {
repositories {
mavenCentral()
}
dependencies {
2015-06-09 16:42:10 +03:00
classpath("org.springframework.boot:spring-boot-gradle-plugin:1.2.4.RELEASE")
2015-03-31 13:50:03 +03:00
}
}
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
apply plugin: 'spring-boot'
jar {
baseName = 'gs-spring-boot-docker'
version = '0.1.0'
}
repositories {
mavenCentral()
}
sourceCompatibility = 1.7
targetCompatibility = 1.7
2015-03-31 13:50:03 +03:00
dependencies {
compile("org.springframework.boot:spring-boot-starter-web")
testCompile("org.springframework.boot:spring-boot-starter-test")
}
task wrapper(type: Wrapper) {
gradleVersion = '2.3'
}