scanner: add a test for the local Debian Maven repo

This commit is contained in:
relan 2019-08-29 21:21:09 +03:00
parent 3a7ad650e3
commit 079754c56c
1 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,18 @@
buildscript {
repositories {
maven { url 'file:///usr/share/maven-repo' }
maven { url 'https://maven.google.com' }
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.2.2'
}
}
allprojects {
repositories {
maven { url 'file:///usr/share/maven-repo' }
maven { url 'https://maven.google.com' }
jcenter()
}
}