-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
31 lines (30 loc) · 1.35 KB
/
build.gradle.kts
File metadata and controls
31 lines (30 loc) · 1.35 KB
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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id("com.android.library").version("8.13.0").apply(false)
id("com.android.application").version("8.13.0").apply(false)
id("org.jetbrains.kotlin.multiplatform").version("2.2.10").apply(false)
id("org.jetbrains.kotlin.plugin.compose").version("2.2.10").apply(false)
id("org.jetbrains.dokka").version("2.1.0").apply(false)
id("org.jlleitschuh.gradle.ktlint").version("11.6.1").apply(true)
id("io.github.gradle-nexus.publish-plugin").version("2.0.0").apply(true)
id("org.jetbrains.kotlinx.binary-compatibility-validator").version("0.18.1").apply(false)
id("com.vanniktech.maven.publish").version("0.34.0").apply(false)
}
allprojects {
extra["groupId"] = "dev.openfeature"
// x-release-please-start-version
ext["version"] = "0.8.0"
// x-release-please-end
}
group = project.extra["groupId"].toString()
version = project.extra["version"].toString()
nexusPublishing {
this.repositories {
sonatype {
nexusUrl.set(uri("https://ossrh-staging-api.central.sonatype.com/service/local/"))
snapshotRepositoryUrl.set(uri("https://central.sonatype.com/repository/maven-snapshots/"))
username = System.getenv("CENTRAL_USERNAME")
password = System.getenv("CENTRAL_PASSWORD")
}
}
}