-
Notifications
You must be signed in to change notification settings - Fork 9
/
build.gradle
69 lines (61 loc) · 1.98 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
64
65
66
67
68
69
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '1.1.1'
repositories {
jcenter()
mavenCentral()
maven { url "https://oss.sonatype.org/content/repositories/snapshots" }
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.3'
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
classpath 'me.tatarka:gradle-retrolambda:3.3.1'
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
ext {
groupNameAndArtifactPrefix ='com.mateuszkoslacz.moviper:moviper-'
releaseVersionCode = 14
releaseVersionName = '2.0.4'
minSdkVersion = 16
targetSdkVersion = 25
compileSdkVersion = 25
buildToolsVersion = '25.0.2'
supportVersion = '25.3.1'
mosbyVersion = '2.0.1'
rxJavaVersion = '2.0.8'
rxAndroidVersion = '2.0.1'
databindingVersion = '1.3.1'
rxBindingVersion = '1.0.0'
butterKnifeVersion = '8.5.1'
retrofitVersion = '2.0.2'
retrofitRxVersion = '1.0.0'
okHttpVersion = '3.2.0'
glideVersion = '3.7.0'
robolectricVersion = '3.2-rc1'
robolectricShadowsSupportV3Version = '3.0'
junitVersion = '4.12'
mockitoVersion = '2.5.4'
espressoVersion = '2.2.2'
openglApiVersion = 'gl1.1-android-2.1_r1'
kotlinVersion = '1.0.6'
picassoVersion = '2.5.2'
adapterdelegates3Version = '3.0.0'
leakCanaryVersion = '1.5'
retrolambdaVersion = '2.3.0'
daggerVersion = '2.7'
jsr250ApiVersion = '1.0'
kotlinVersion = kotlin_version
}