-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
28 lines (25 loc) · 875 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
plugins {
id 'java'
id 'jacoco'
id 'com.github.kt3k.coveralls' version '2.8.2'
}
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
compileOnly group: 'com.googlecode.objectify', name: 'objectify', version: '6.0.2'
compileOnly group: 'com.google.appengine', name: 'appengine-api-1.0-sdk', version: '1.9.65'
testCompile 'junit:junit:4.+'
testCompile 'com.google.appengine:appengine-api-stubs:1.9.65'
testCompile 'com.google.appengine:appengine-testing:1.9.65'
testCompile group: 'com.googlecode.objectify', name: 'objectify', version: '6.0.2'
testCompile group: 'com.google.appengine', name: 'appengine-api-1.0-sdk', version: '1.9.65'
}
jacocoTestReport {
reports {
xml.enabled = true // coveralls plugin depends on xml format report
html.enabled = true
}
}