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

32 строки
597 B
Groovy
Исходник Постоянная ссылка Обычный вид История

2015-03-31 13:50:03 +03:00
buildscript {
repositories {
mavenCentral()
}
dependencies {
2017-04-21 17:20:58 +03:00
classpath("org.springframework.boot:spring-boot-gradle-plugin:1.5.3.RELEASE")
2015-03-31 13:50:03 +03:00
}
}
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
apply plugin: 'org.springframework.boot'
2015-03-31 13:50:03 +03:00
jar {
baseName = 'gs-spring-boot-docker'
version = '0.1.0'
}
repositories {
mavenCentral()
}
2015-06-12 20:49:45 +03:00
sourceCompatibility = 1.8
targetCompatibility = 1.8
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")
}