-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathbuild.gradle
More file actions
29 lines (28 loc) · 792 Bytes
/
build.gradle
File metadata and controls
29 lines (28 loc) · 792 Bytes
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
subprojects {
buildscript {
repositories {
jcenter()
mavenCentral()
maven {
url "https://oss.sonatype.org/content/repositories/snapshots"
}
maven {
url "http://ci.novoda.com/maven/releases/"
}
}
dependencies {
classpath 'com.android.tools.build:gradle:0.12.1'
classpath 'org.robolectric:robolectric-gradle-plugin:0.11.+'
classpath 'com.stanfy.spoon:spoon-gradle-plugin:0.10.0'
}
}
repositories {
mavenCentral()
maven {
url "https://oss.sonatype.org/content/repositories/snapshots"
}
maven {
url "http://ci.novoda.com/maven/releases/"
}
}
}