-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
49 lines (41 loc) · 1.03 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
// Top-level build file
buildscript {
ext {
targetSdk = 31
compileSdk = 31
minSdk = 21
}
repositories {
google()
mavenCentral()
}
dependencies {
classpath GradleTools
classpath GradleKotlin
classpath GradleOWASP
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
plugins {
id 'org.jetbrains.kotlin.android' version '1.5.30' apply false
}
// This defines the maven group and version for all modules
// The maven artifactId will come from the modules name by convention
subprojects {
group="com.iproov.android-api-client"
version = "3.0.0"
}
allprojects {
repositories {
google()
mavenCentral()
}
}
project.ext {
versionCode = (System.getenv("BITRISE_BUILD_NUMBER") != null) ? System.getenv("BITRISE_BUILD_NUMBER").toInteger() : 1
deployPath = "${projectDir}/maven"
}
task clean(type: Delete) {
delete rootProject.buildDir
}