-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
50 lines (37 loc) · 1.53 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
jcenter()
maven { url "https://oss.sonatype.org/content/repositories/snapshots" }
maven { url 'http://oss.jfrog.org/artifactory/oss-snapshot-local' }
}
dependencies {
classpath 'com.android.tools.build:gradle:3.2.1'
classpath "org.jfrog.buildinfo:build-info-extractor-gradle:4.6.2"
classpath 'org.sonarsource.scanner.gradle:sonarqube-gradle-plugin:2.6.1'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
maven { url "https://oss.sonatype.org/content/repositories/snapshots" }
maven { url 'http://oss.jfrog.org/artifactory/oss-snapshot-local' }
}
}
ext {
variantProd = 'release'
qaInstrumentationRunner = "android.support.test.runner.AndroidJUnitRunner"
/* Shared Dependencies (across modules) */
supportAppcompatV7 = "com.android.support:appcompat-v7:$project.supportLibraryVersion" // Google Support
lombok = "org.projectlombok:lombok:$project.lombokVersion" // Lombok
/* QA Shared Dependencies (across modules) */
jUnit = "junit:junit:$project.jUnitVersion" // JUnit
espressoCore = "com.android.support.test.espresso:espresso-core:$project.espressoCoreVersion" // Espresso
}
task clean(type: Delete) {
delete rootProject.buildDir
}