forked from pires/obd-java-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
54 lines (47 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
buildscript {
repositories {
maven { url "http://mvnrepository.com/"}
mavenCentral()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.2.3'
}
}
apply plugin: 'com.android.library'
repositories {
maven { url "http://mvnrepository.com/"}
maven { url 'http://download.crashlytics.com/maven' }
maven { url "https://repo.commonsware.com.s3.amazonaws.com" }
mavenCentral()
jcenter()
}
android {
compileSdkVersion 20
buildToolsVersion '22.0.1'
defaultConfig {
minSdkVersion 17
targetSdkVersion 20
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
lintOptions {
abortOnError false
}
}
dependencies {
// EasyMock
testCompile 'org.easymock:easymock:3.3.1'
// PowerMock
testCompile 'org.powermock:powermock-core:1.6.2'
testCompile 'org.powermock:powermock-module-junit4:1.6.2'
// PowerMock + EasyMock extension
testCompile 'org.powermock:powermock-api-easymock:1.6.2'
testCompile 'org.testng:testng:6.9.6'
}