-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle.kts
47 lines (39 loc) · 1.11 KB
/
build.gradle.kts
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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
apply(from = "dependencies/dependencies.gradle.kts")
val kotlin_version: String by extra
repositories {
google()
mavenCentral()
}
dependencies {
classpath(libs.`android-gradle-plugin`)
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
classpath(kotlin("gradle-plugin", kotlin_version))
}
}
plugins {
kotlin("android") version "1.8.20" apply false
id("org.jetbrains.dokka") version "1.8.10" apply false
id("io.github.gradle-nexus.publish-plugin") version "1.3.0"
}
// Remember to use your own group if you fork this library
group = "com.swedbankpay.mobilesdk"
version = getVersionName()
allprojects {
group = rootProject.group
version = rootProject.version
repositories {
google()
mavenCentral()
}
}
task<Delete>("clean") {
delete(rootProject.buildDir)
}
nexusPublishing {
repositories {
sonatype()
}
}