forked from gdg-x/frisbee
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
32 lines (30 loc) · 975 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
mavenCentral()
jcenter()
maven {
url "http://m2-gdgx.cloud.gdgx.io/m2/"
}
maven { url "https://github.com/ben-manes/gradle-versions-plugin/raw/mvnrepo" }
maven { url 'https://maven.fabric.io/public' }
}
dependencies {
classpath 'com.android.tools.build:gradle:1.0.0'
classpath 'com.github.ben-manes:gradle-versions-plugin:0.5-beta-2'
classpath 'io.fabric.tools:gradle:1.14.4'
}
}
allprojects {
repositories {
maven {
url "http://dl.bintray.com/populov/maven"
}
mavenCentral()
maven {
url "http://m2-gdgx.cloud.gdgx.io/m2/"
}
maven { url "https://github.com/ben-manes/gradle-versions-plugin/raw/mvnrepo" }
maven { url 'https://maven.fabric.io/public' }
}
}