Twidere-App-Android-Twitter.../build.gradle

28 lines
888 B
Groovy
Raw Normal View History

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()
maven { url 'https://plugins.gradle.org/m2/' }
2014-07-03 07:48:39 +02:00
}
dependencies {
2015-07-17 16:30:41 +02:00
classpath 'com.github.ben-manes:gradle-versions-plugin:0.11.3'
2015-08-16 11:34:49 +02:00
classpath 'com.android.tools.build:gradle:1.3.1'
2015-10-05 12:00:07 +02:00
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
classpath('fr.avianey.androidsvgdrawable:gradle-plugin:2.0.0') {
2015-05-04 17:53:52 +02:00
// 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()
maven { url 'https://jitpack.io' }
}
2015-03-11 15:15:32 +01:00
}