MinimalBible/build.gradle

22 lines
556 B
Groovy
Raw Normal View History

2014-07-04 22:09:25 -04:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '0.12.213'
2014-07-04 22:09:25 -04:00
repositories {
2014-11-21 18:23:52 -05:00
mavenCentral()
2014-07-04 22:09:25 -04:00
}
dependencies {
2015-06-13 19:41:40 -04:00
classpath 'com.android.tools.build:gradle:+'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
2014-07-04 22:09:25 -04:00
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
2014-11-21 18:23:52 -05:00
mavenCentral()
2014-07-04 22:09:25 -04:00
}
}