-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle.kts
29 lines (27 loc) · 1.09 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id("com.android.library").version("7.4.2").apply(false)
id("org.jetbrains.kotlin.android").version("1.8.0").apply(false)
id("org.jlleitschuh.gradle.ktlint").version("11.3.2").apply(true)
kotlin("plugin.serialization").version("1.8.10").apply(true)
id("com.android.application") version "7.4.2" apply false
id("io.github.gradle-nexus.publish-plugin").version("1.3.0").apply(true)
id("org.jetbrains.kotlinx.binary-compatibility-validator").version("0.15.0-Beta.3").apply(false)
id("org.jetbrains.kotlinx.kover").version("0.8.2").apply(true)
}
allprojects {
extra["groupId"] = "com.spotify.confidence"
// x-release-please-start-version
ext["version"] = "0.3.5"
// x-release-please-end
}
group = project.extra["groupId"].toString()
version = project.extra["version"].toString()
nexusPublishing {
this.repositories {
sonatype {
username = System.getenv("OSSRH_USERNAME")
password = System.getenv("OSSRH_PASSWORD")
}
}
}