2015-01-04 16:12:10 +01:00
|
|
|
apply plugin: 'com.github.ben-manes.versions'
|
|
|
|
|
2014-07-03 07:48:39 +02:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
jcenter()
|
|
|
|
}
|
|
|
|
dependencies {
|
2015-04-28 18:54:42 +02:00
|
|
|
classpath 'com.github.ben-manes:gradle-versions-plugin:0.9'
|
2015-05-15 20:01:26 +02:00
|
|
|
classpath 'com.android.tools.build:gradle:1.2.3'
|
2015-04-23 16:59:20 +02:00
|
|
|
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.4'
|
2015-05-04 17:53:52 +02:00
|
|
|
classpath('fr.avianey.androidsvgdrawable:gradle-plugin:1.0.1') {
|
|
|
|
// should be excluded to avoid conflict
|
|
|
|
exclude group: 'xerces'
|
|
|
|
}
|
2014-07-03 07:48:39 +02:00
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
|
|
// in the individual module build.gradle files
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
jcenter()
|
2015-05-26 13:19:03 +02:00
|
|
|
maven { url "https://jitpack.io" }
|
2014-11-21 04:00:46 +01:00
|
|
|
}
|
2015-03-11 15:15:32 +01:00
|
|
|
|
2014-11-21 04:00:46 +01:00
|
|
|
}
|