-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
46 lines (42 loc) · 1.18 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
buildscript {
ext.kotlin_version = '1.0.6'
ext.support = '25.1.0'
ext.retrofit = '2.1.0'
ext.rxjava = '1.2.5'
ext.rxandroid = '1.2.1'
ext.okhttp = '3.5.0'
ext.gson = '2.8.0'
ext.javapoet = '1.8.0'
ext.anko = '0.9'
ext.rxbinding = '1.0.0'
ext.buildToolsVersion = "25.0.2"
ext.compileVersion = 25
ext.minSdk = 16
ext.targetSdk = 25
ext.versionCode = 1
ext.versionName = "1.0.3"
ext.group = "com.eigengraph.egf2"
repositories {
maven { url uri('repo') }
mavenCentral()
jcenter()
maven { url "https://dl.bintray.com/dmitry-shingarev/egf2-android-client" }
}
dependencies {
classpath 'com.android.tools.build:gradle:2.2.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
classpath "com.eigengraph.egf2:gradle-plugin:$versionName"
classpath "com.github.ben-manes:gradle-versions-plugin:0.13.0"
}
}
allprojects {
repositories {
maven { url uri('repo') }
mavenCentral()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}