-
Notifications
You must be signed in to change notification settings - Fork 15
/
build.gradle
63 lines (55 loc) · 1.89 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
61
62
63
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.2.3'
classpath 'me.tatarka:gradle-retrolambda:3.4.0'
classpath 'me.tatarka.retrolambda.projectlombok:lombok.ast:0.2.3.a2'
classpath 'com.ofg:uptodate-gradle-plugin:1.6.2'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.1'
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5'
classpath 'com.dicedmelon.gradle:jacoco-android:0.1.1'
classpath 'de.mobilej.unmock:UnMockPlugin:0.5.0'
}
configurations.classpath.exclude group: 'com.android.tools.external.lombok'
}
allprojects {
repositories {
jcenter()
maven { url "https://jitpack.io" }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
ext {
userName = 'Piasy'
developer = [id : 'piasy',
name : 'piasy',
email: '[email protected]']
license = [id : 'MIT',
name: 'The MIT License (MIT)',
url : 'http://opensource.org/licenses/MIT']
groupName = 'com.github.piasy'
artifactName = 'YaMvp'
artifactDescription = 'Yet another Mvp library. Super simple, but with enough functionality.'
artifactLabels = ['MVP', 'RxJava', 'RxBinding', 'ButterKnife']
releaseVersionCode = 6
releaseVersionName = '1.3.1'
androidCompileSdkVersion = 25
androidBuildToolsVersion = '25.0.2'
androidSupportSdkVersion = '25.1.0'
minSdkVersion = 16
targetSdkVersion = 25
junitVersion = '4.12'
mockitoVersion = '2.5.3'
dexMakerVersion = '2.2.0'
truthVersion = '0.30'
espressoVersion = '2.2.2'
testSupportLibVersion = '0.5'
conditionWatcherVersion = '0.1'
rxjava2Version = '2.0.4'
daggerVersion = '2.8'
}