-
Notifications
You must be signed in to change notification settings - Fork 8
/
build.gradle
42 lines (37 loc) · 966 Bytes
/
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
buildscript {
ext {
// Plugin versions
androidGradlePluginVersion = "3.2.0"
sonarqubeGradlePluginVersion = "2.6.2"
// Dependency versions
appcompatVersion = "28.0.0"
butterknife = "8.8.1"
supportAnnotationsVersion = "28.0.0"
}
repositories {
google()
mavenCentral()
jcenter()
}
dependencies {
classpath "com.android.tools.build:gradle:$androidGradlePluginVersion"
classpath "org.sonarsource.scanner.gradle:sonarqube-gradle-plugin:$sonarqubeGradlePluginVersion"
}
}
allprojects {
group "de.psdev.formvalidations"
version "1.2.1-SNAPSHOT"
repositories {
google()
mavenCentral()
jcenter()
}
apply from: rootProject.file('gradle/versioning.gradle')
}
task clean(type: Delete) {
delete rootProject.buildDir
}
task wrapper(type: Wrapper) {
gradleVersion = '4.10.2'
distributionType = "all"
}