forked from SupasinTatiyanupanwong/map-kit-android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
42 lines (33 loc) · 1.11 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
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.0.1'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.4'
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
}
}
allprojects {
repositories {
google()
jcenter()
}
}
ext {
BINTRAY_REPOSITORY = 'android.libraries.kits.maps'
BINTRAY_LICENSES = ["Apache-2.0"]
POM_GROUP_ID = 'me.tatiyanupanwong.supasin.android.libraries.kits.maps'
POM_URL = 'https://github.com/SupasinTatiyanupanwong/map-kit-android'
POM_SCM_URL = 'https://github.com/SupasinTatiyanupanwong/map-kit-android'
POM_SCM_CONNECTION = 'https://github.com/SupasinTatiyanupanwong/map-kit-android.git'
POM_DEVELOPER_ID = 'supasintatiyanupanwong'
POM_DEVELOPER_NAME = 'Supasin Tatiyanupanwong'
POM_DEVELOPER_EMAIL = 'supasin@tatiyanupanwong.me'
POM_LICENCE_NAME = 'Apache License 2.0'
POM_LICENCE_URL = 'http://www.apache.org/licenses/LICENSE-2.0'
}
task clean(type: Delete) {
delete rootProject.buildDir
}