diff options
author | Vitaly Takmazov | 2016-07-01 10:35:02 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2016-07-01 10:35:45 +0300 |
commit | b9879afad02609f08280155d286ba62775fcec14 (patch) | |
tree | 8b28a0a447e412ceb16a747a41e24a687a34eed3 /build.gradle | |
parent | 15ceb8125d4f5c99af53ff0606076518aa4e292e (diff) |
add Gradle wrapper
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/build.gradle b/build.gradle index c973749c..b860c09e 100644 --- a/build.gradle +++ b/build.gradle @@ -1,4 +1,13 @@ +buildscript { + dependencies { + classpath 'com.github.dcendents:android-maven-gradle-plugin:1.3' // Add this line + } +} + apply plugin: "java" +apply plugin: 'com.github.dcendents.android-maven' + +group='com.github.juick' dependencies { testCompile 'junit:junit:4.12' |