-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
66 lines (52 loc) · 2.14 KB
/
build.gradle
File metadata and controls
66 lines (52 loc) · 2.14 KB
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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
gradle_version = '3.1.4'
kotlin_version = '1.2.61'
fuel_version = '1.15.0'
okhttp_version = '3.11.0'
retrofit2_version = '2.4.0'
dokka_plugin_version = '0.9.17'
bintray_plugin_version = '1.8.4'
android_maven_gradle_plugin_version = '2.0'
bintrayRepo = 'maven'
bintrayName = 'paymenthighway-android-sdk'
bintrayOrganization = 'paymenthighway'
publishedGroupId = 'io.paymenthighway.sdk'
libraryName = 'paymenthighway-android-sdk'
artifact = 'paymenthighway-android-sdk'
libraryDescription = 'This is the Payment Highway Android SDK. Payment Highway is the app payments toolkit built for developers who are busy building great apps.'
siteUrl = 'https://www.paymenthighway.io/'
gitUrl = 'https://github.com/PaymentHighway/paymenthighway-android-sdk'
libraryVersion = '2.0.0'
vcsLibraryTag = "v-$libraryVersion"
developerId = 'arnohietanen'
developerName = 'Arno Hietanen'
developerEmail = 'arno.hietanen@paymenthighway.fi'
licenseName = 'MIT License'
licenseUrl = 'https://github.com/PaymentHighway/paymenthighway-android-sdk/blob/master/LICENSE'
allLicenses = ["MIT"]
}
repositories {
google()
jcenter()
}
dependencies {
classpath "com.android.tools.build:gradle:$gradle_version"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "org.jetbrains.dokka:dokka-gradle-plugin:$dokka_plugin_version"
classpath "com.jfrog.bintray.gradle:gradle-bintray-plugin:$bintray_plugin_version"
classpath "com.github.dcendents:android-maven-gradle-plugin:$android_maven_gradle_plugin_version"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}