-
Notifications
You must be signed in to change notification settings - Fork 492
/
build.gradle
57 lines (50 loc) · 1.81 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
/*
* Copyright (c) 2010 - 2015 Ushahidi Inc
* All rights reserved
* Contact: team@ushahidi.com
* Website: http://www.ushahidi.com
* GNU Lesser General Public License Usage
* This file may be used under the terms of the GNU Lesser
* General Public License version 3 as published by the Free Software
* Foundation and appearing in the file LICENSE.LGPL included in the
* packaging of this file. Please review the following information to
* ensure the GNU Lesser General Public License version 3 requirements
* will be met: http://www.gnu.org/licenses/lgpl.html.
*
* If you have questions regarding the use of this file, please contact
* Ushahidi developers at team@ushahidi.com.
*/
apply from: 'dependencies/dependencies.gradle'
buildscript {
repositories {
jcenter()
maven { url "http://oss.sonatype.org/content/repositories/snapshots/" }
maven { url 'https://jitpack.io' }
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.0-beta3'
classpath 'me.tatarka:gradle-retrolambda:3.5.0'
classpath 'me.tatarka.retrolambda.projectlombok:lombok.ast:0.2.3.a2'
classpath 'com.github.triplet.gradle:play-publisher:1.1.5'
classpath 'org.ajoberstar:gradle-git:1.6.0'
classpath 'com.google.gms:google-services:3.0.0'
}
// Exclude the version that the android plugin depends on.
configurations.classpath.exclude group: 'com.android.tools.external.lombok'
}
allprojects {
repositories {
jcenter()
maven {
url "http://repo.commonsware.com.s3.amazonaws.com"
}
}
ext {
androidVersionCode = 46
testInstrumentationRunner = "android.support.test.runner.AndroidJUnitRunner"
}
}
task wrapper(type: Wrapper) {
description 'Creates the gradle wrapper.'
gradleVersion '2.10'
}