summaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
authorjandegr <jandegr@users.noreply.github.com>2018-05-25 06:58:49 +0200
committerGitHub <noreply@github.com>2018-05-25 06:58:49 +0200
commitac688b1c67fcfbbf6c59129f817cd406ae87dfb6 (patch)
tree90648c500ebe935a96fd18bfd10e56d169462ed9 /build.gradle
parentb74329764358cd2e34c87f5a235967f3736dd04d (diff)
downloadnavit-ac688b1c67fcfbbf6c59129f817cd406ae87dfb6.tar.gz
Add:Android:checkstyle-javadoc (#595)
* Android checkstyle and javadoc * bump gradle version * bump gradle version * Android checkstyle and javadoc * ArrayTypeStyle as failure * fix Array brackets at illegal position. * typo * fix Array brackets at illegal position. * CustomImportOrder severity error * optimize imports * optimize imports
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle11
1 files changed, 10 insertions, 1 deletions
diff --git a/build.gradle b/build.gradle
index 1ea4bd055..ec95872d8 100644
--- a/build.gradle
+++ b/build.gradle
@@ -3,9 +3,14 @@
buildscript {
repositories {
jcenter()
+ maven {
+ url 'https://maven.google.com/'
+ name 'Google'
+ }
+ google()
}
dependencies {
- classpath 'com.android.tools.build:gradle:2.3.0'
+ classpath 'com.android.tools.build:gradle:3.1.2'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
@@ -15,6 +20,10 @@ buildscript {
allprojects {
repositories {
jcenter()
+ maven {
+ url 'https://maven.google.com/'
+ name 'Google'
+ }
}
}