-
Notifications
You must be signed in to change notification settings - Fork 264
/
Copy pathbuild.gradle
78 lines (63 loc) · 2.36 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
buildscript {
ext.gradleAndroidVersion = '3.0.0-beta7'
ext.kotlinVersion = '1.1.4-3'
ext.bintrayVersion = '1.7.3'
ext.mavenGradlePluginVersion = '2.0'
repositories {
jcenter()
google()
}
dependencies {
classpath "com.android.tools.build:gradle:$gradleAndroidVersion"
classpath "com.jfrog.bintray.gradle:gradle-bintray-plugin:$bintrayVersion"
classpath "com.github.dcendents:android-maven-gradle-plugin:$mavenGradlePluginVersion"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
}
}
allprojects {
repositories {
jcenter()
mavenCentral()
google()
}
}
configure(allprojects) {
/* Android config and dependency versions */
ext {
androidMinSdkVersion = 14
androidTargetSdkVersion = 25
androidCompileSdkVersion = 25
androidBuildToolsVersion = '26.0.2'
androidSupportLibraryVersion = '25.4.0'
junitVersion = '4.12'
mockitoVersion = '2.7.21'
mockitoKotlinVersion = '1.4.0'
robolectricVersion = '3.3.1'
assertjVersion = '1.1.1'
supportTestVersion = '1.0.1'
espressoVersion = '3.0.1'
testButlerVersion = '1.3.1'
/* Sample only */
butterknifeVersion = '8.5.1'
calligraphyVersion = '2.2.0'
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
ext {
bintrayRepo = 'maven'
bintrayName = POM_ARTIFACT_ID
publishedGroupId = POM_GROUP_ID
libraryName = 'Android Material Stepper'
libraryDescription = 'This library allows to use Material steppers inside Android applications.'
siteUrl = 'https://github.com/stepstone-tech/android-material-stepper'
gitUrl = 'https://github.com/stepstone-tech/android-material-stepper.git'
libraryVersion = POM_VERSION
developerId = 'zawadz88'
developerName = 'Piotr Zawadzki'
developerEmail = '[email protected]'
licenseName = 'The Apache Software License, Version 2.0'
licenseUrl = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
allLicenses = ["Apache-2.0"]
}