forked from realm/realm-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
32 lines (27 loc) · 867 Bytes
/
build.gradle
File metadata and controls
32 lines (27 loc) · 867 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
30
31
32
apply plugin:'java'
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.0.0'
classpath 'de.undercouch:gradle-download-task:1.0'
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.4'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:0.5' // Version 0.6 seems to require gradle 2.0+
classpath 'com.jakewharton.sdkmanager:gradle-plugin:0.12.0'
classpath 'com.novoda:gradle-android-command-plugin:1.3.0'
classpath 'com.github.skhatri:gradle-s3-plugin:1.0.0'
}
}
dependencies {
compile 'io.reactivex:rxjava:1.0.8'
compile 'io.reactivex:rxandroid:0.24.0'
}
allprojects {
apply plugin: 'android-sdk-manager'
group = 'io.realm'
version = new File("${rootDir}/version.txt").text
repositories {
jcenter()
}
}