-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathbuild.gradle
38 lines (34 loc) · 993 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
buildscript {
repositories {
jcenter()
maven {
url 'http://oss.jfrog.org/artifactory/oss-snapshot-local'
}
}
dependencies {
classpath 'com.android.tools.build:gradle:2.1.0'
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
classpath 'io.realm:realm-gradle-plugin:1.1.1'
classpath 'me.tatarka:gradle-retrolambda:3.3.0-beta4'
classpath "com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.1"
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.4.1'
}
}
allprojects {
repositories {
jcenter()
maven { url "https://jitpack.io" }
maven {
url 'http://oss.jfrog.org/artifactory/oss-snapshot-local'
}
maven {
url "https://oss.sonatype.org/content/repositories/snapshots/"
}
}
}
task wrapper(type: Wrapper) {
gradleVersion = '2.14.1'
}
task clean(type: Delete) {
delete rootProject.buildDir
}