-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
37 lines (30 loc) · 915 Bytes
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
buildscript {
ext {
springBootVersion = '1.5.4.RELEASE'
}
repositories {
jcenter()
maven { url 'http://repo.spring.io/plugins-release' }
}
dependencies {
classpath "org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}"
classpath 'io.spring.gradle:propdeps-plugin:0.0.9.RELEASE'
}
}
apply plugin: 'java'
apply plugin: 'org.springframework.boot'
apply plugin: 'propdeps'
version = '1.0.0-M1-SNAPSHOT'
sourceCompatibility = project.sourceCompatibility
repositories {
jcenter()
}
dependencies {
compile ('org.springframework.boot:spring-boot-starter-web')
optional "org.springframework.boot:spring-boot-configuration-processor"
compile "org.springframework.boot:spring-boot-configuration-metadata"
}
compileJava.dependsOn(processResources)
task wrapper(type: Wrapper, description: "Update the Gradle wrapper") {
gradleVersion = project.gradleVersion
}