-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
39 lines (33 loc) · 984 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
38
39
project.ext {
major = 1
minor = 0
patch = 1
}
buildscript {
repositories {
maven { url "https://plugins.gradle.org/m2/" }
}
dependencies { classpath "org.kt3k.gradle.plugin:coveralls-gradle-plugin:2.8.2" }
}
allprojects {
group = 'io.zatarox.satellite'
version = "${major}.${minor}.${patch}-SNAPSHOT"
}
configure(subprojects.findAll {it.name == 'api' || it.name == 'impl'} ) {
apply plugin: 'java'
apply plugin: 'jacoco'
apply plugin: 'com.github.kt3k.coveralls'
sourceCompatibility = 1.6
targetCompatibility = 1.6
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
repositories {
mavenLocal()
maven { url "http://repo.maven.apache.org/maven2" }
}
dependencies {
testCompile group: 'org.powermock', name: 'powermock-api-mockito', version:'1.6.6'
testCompile group: 'org.powermock', name: 'powermock-module-junit4', version:'1.6.6'
}
}