habitica-android/build.gradle

25 lines
844 B
Groovy
Raw Normal View History

2015-04-12 11:54:29 +00:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
}
dependencies {
2017-06-19 10:20:10 +00:00
classpath 'com.android.tools.build:gradle:2.3.3'
2015-12-16 16:55:57 +00:00
classpath 'com.android.databinding:dataBinder:1.0-rc4'
2015-12-16 16:52:46 +00:00
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
2016-06-27 18:28:00 +00:00
classpath 'com.google.gms:google-services:3.0.0'
classpath 'me.tatarka:gradle-retrolambda:3.3.1'
classpath 'me.tatarka.retrolambda.projectlombok:lombok.ast:0.2.3.a2'
2017-09-22 10:49:55 +00:00
classpath "io.realm:realm-gradle-plugin:3.7.2"
2015-04-12 11:54:29 +00:00
}
// Exclude the version that the android plugin depends on.
configurations.classpath.exclude group: 'com.android.tools.external.lombok'
2015-04-12 11:54:29 +00:00
}
allprojects {
repositories {
jcenter()
}
}