forked from vmadalin/easypermissions-ktx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
49 lines (40 loc) · 1.29 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
buildscript {
ext.kotlin_version = '1.4.10'
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.1.1'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.4'
classpath 'com.vanniktech:gradle-android-junit-jacoco-plugin:0.16.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "org.jetbrains.kotlin:kotlin-allopen:$kotlin_version"
}
}
plugins {
id 'com.diffplug.spotless' version '5.8.2'
id 'io.gitlab.arturbosch.detekt' version '1.0.0'
id 'org.jlleitschuh.gradle.ktlint' version '8.2.0'
id 'org.jetbrains.dokka' version '1.4.20'
}
allprojects {
apply from: rootProject.file('detekt.gradle')
apply from: rootProject.file('ktlint.gradle')
apply from: rootProject.file('spotless.gradle')
repositories {
google()
jcenter()
}
}
ext {
projectName = 'EasyPermissions-ktx'
projectDesc = 'A Kotlin wrapper library for basic Android M system permissions logic'
githubUrl = 'https://github.com/VMadalin/easypermissions-ktx'
mavenGroup = 'com.vmadalin'
mavenArtifactId = 'easypermissions-ktx'
mavenVersion = '0.1.0'
bintrayOrg = 'mvalceleanu'
compileSdk = 29
targetSdk = 29
}