-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle
60 lines (52 loc) · 1.72 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
56
57
58
59
60
buildscript {
repositories {
jcenter()
maven { url 'http://repo.spring.io/snapshot' }
maven { url 'http://repo.spring.io/milestone' }
}
dependencies {
// TODO after M4 is uploaded
classpath 'org.springframework.boot:spring-boot-gradle-plugin:2.0.0.M3'
}
}
plugins {
id 'jacoco'
id 'com.github.kt3k.coveralls' version '2.8.1'
}
apply plugin: 'java'
apply plugin: 'groovy'
apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'
apply plugin: "jacoco"
apply plugin: 'war'
// 9 is future
sourceCompatibility = 1.8
targetCompatibility = 1.8
tasks.withType(JavaCompile) { options.encoding = 'UTF-8' }
jar {
baseName = 'spring-boot-elasticsearch'
version = '1.0-SNAPSHOT'
}
repositories {
jcenter()
maven { url "http://repo.spring.io/snapshot" }
maven { url "http://repo.spring.io/milestone" }
}
dependencies {
compile group: 'com.google.guava', name: 'guava', version: '23.0'
compile "org.springframework.boot:spring-boot-starter-web"
compile 'org.springframework.boot:spring-boot-starter-data-elasticsearch'
providedCompile group: 'org.projectlombok', name: 'lombok', version: '1.16.18'
testCompile "org.springframework.boot:spring-boot-starter-test"
testCompile group: 'org.codehaus.groovy', name: 'groovy-all', version: '2.4.12'
testCompile group: 'org.spockframework', name: 'spock-core', version: '1.1-groovy-2.4'
testCompile group: 'org.spockframework', name: 'spock-spring', version: '1.1-groovy-2.4'
}
task wrapper(type: Wrapper) { gradleVersion = '4.2' }
jacocoTestReport {
reports {
xml.enabled true
html.enabled true
html.destination file("${buildDir}/jacocoHtml")
}
}