forked from webex/webex-android-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
executable file
·48 lines (43 loc) · 1.18 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
apply plugin: 'com.github.ben-manes.versions'
apply plugin: "org.sonarqube"
buildscript {
repositories {
jcenter()
google()
maven {
url 'https://maven.fabric.io/public'
}
}
dependencies {
classpath "org.sonarsource.scanner.gradle:sonarqube-gradle-plugin:2.6.1"
classpath 'com.github.ben-manes:gradle-versions-plugin:0.12.0'
classpath 'com.jakewharton.sdkmanager:gradle-plugin:0.12.0'
classpath "com.android.tools.build:gradle:3.3.2"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.71"
}
}
allprojects {
repositories {
jcenter()
google()
maven {
url 'https://devhub.cisco.com/artifactory/webexsdk/'
}
}
}
subprojects {
afterEvaluate { project ->
if (!(project.plugins.hasPlugin('com.android.application') || project.plugins.hasPlugin('com.android.library'))) {
return
}
android {
lintOptions {
lintConfig file('lint.xml')
abortOnError true
}
}
}
}
configurations.all {
resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
}