-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
45 lines (38 loc) · 1.21 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
mavenCentral()
maven { url 'https://maven.fabric.io/public' }
maven { url "https://plugins.gradle.org/m2/" }
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.2' // libraries, SeriesGuide
classpath 'com.google.cloud.tools:endpoints-framework-gradle-plugin:1.0.0-beta3' // SeriesGuide
classpath 'io.codearte.gradle.nexus:gradle-nexus-staging-plugin:0.7.0' // api
classpath 'io.fabric.tools:gradle:1.22.1' // SeriesGuide
classpath "org.sonarsource.scanner.gradle:sonarqube-gradle-plugin:2.4"
}
}
plugins {
id "com.github.ben-manes.versions" version "0.14.0"
id "org.sonarqube" version "2.4"
}
apply plugin: "org.sonarqube"
subprojects {
repositories {
jcenter()
mavenCentral()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
ext {
androidCompileSdkVersion = 25
androidBuildToolsVersion = '25.0.2'
// API level 15+ -> version 15xxx
androidVersionCode = 15256
androidVersionName = '37-beta7'
supportVersion = '25.3.1'
}