Skip to content
This repository was archived by the owner on Feb 11, 2022. It is now read-only.

Commit 1d11926

Browse files
committed
Merge pull request #45 from novoda/move_fully_to_gradle
Update Gradle setup
2 parents f246ec7 + 7457888 commit 1d11926

2 files changed

Lines changed: 19 additions & 4 deletions

File tree

core/build.gradle

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,21 +6,36 @@ buildscript {
66
jcenter()
77
}
88
dependencies {
9-
classpath 'com.android.tools.build:gradle:0.13.2'
9+
classpath 'com.android.tools.build:gradle:1.2.2'
1010
classpath 'com.novoda:bintray-release:0.2.4'
1111
}
1212
}
1313

1414
android {
15-
compileSdkVersion 20
16-
buildToolsVersion "20.0.0"
15+
compileSdkVersion 22
16+
buildToolsVersion "22.0.1"
1717
sourceSets {
1818
main {
1919
manifest.srcFile 'AndroidManifest.xml'
2020
}
2121
}
2222
}
2323

24+
repositories {
25+
jcenter()
26+
}
27+
28+
dependencies {
29+
testCompile "org.scala-lang:scala-library:2.9.1"
30+
testCompile "org.scalatest:scalatest_2.9.1:1.8.RC1"
31+
testCompile "junit:junit:4.10"
32+
testCompile "com.pivotallabs:robolectric:1.1"
33+
testCompile "com.novocode:junit-interface:0.8"
34+
testCompile "org.mockito:mockito-core:1.9.0"
35+
testCompile "com.google.android:android:4.0.1.2"
36+
testCompile "com.google.android:android-test:4.0.1.2"
37+
}
38+
2439
publish {
2540
userOrg = 'novoda'
2641
groupId = 'com.novoda'

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=http\://services.gradle.org/distributions/gradle-2.1-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-2.3-all.zip

0 commit comments

Comments
 (0)