Upgraded Gradle to 2.13, added local Maven repo.

This commit is contained in:
akwizgran
2016-05-12 13:36:34 +01:00
parent af1f267d4b
commit ec083d617e
8 changed files with 13 additions and 31 deletions

View File

@@ -1,11 +1,18 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
allprojects {
repositories {
jcenter()
mavenCentral()
mavenLocal()
}
}
buildscript {
repositories {
mavenCentral()
maven {
url "https://plugins.gradle.org/m2/"
}
jcenter()
mavenCentral()
mavenLocal()
}
dependencies {