-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathbuild.gradle
55 lines (48 loc) · 1.22 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath "org.springframework.boot:spring-boot-gradle-plugin:1.3.3.RELEASE"
}
}
def vJavaLang = 1.8
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'spring-boot'
repositories {
jcenter()
}
dependencies {
compile "org.projectlombok:lombok:1.16.2"
compile "org.springframework.boot:spring-boot-starter-web"
compile "org.springframework.boot:spring-boot-starter-thymeleaf"
compile "org.springframework.boot:spring-boot-starter-data-jpa"
compile "com.h2database:h2"
testCompile "org.springframework.boot:spring-boot-starter-test"
}
bootRun {
systemProperties = System.properties
}
test {
testLogging {
events 'started'
}
systemProperties = System.properties
}
idea {
module {
inheritOutputDirs = false
outputDir = file("${buildDir}/classes/main")
}
project {
languageLevel = vJavaLang
ipr {
withXml { provider ->
def mapping = provider.node.component.find { it.@name == 'VcsDirectoryMappings' }.mapping
mapping.@vcs = 'Git'
mapping.@directory = '$PROJECT_DIR$'
}
}
}
}