-
-
Notifications
You must be signed in to change notification settings - Fork 158
/
Copy pathbuild.gradle.kts
27 lines (24 loc) · 1021 Bytes
/
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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id("com.android.application") version "8.5.2" apply false
id("org.jetbrains.kotlin.android") version "1.9.0" apply false
id("com.android.library") version "8.5.2" 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
}
allprojects {
extra["groupId"] = "org.gofeatureflag.openfeature"
ext["version"] = "0.0.1-beta.1"
}
group = project.extra["groupId"].toString()
version = project.extra["version"].toString()
nexusPublishing {
this.repositories {
sonatype {
nexusUrl.set(uri("https://s01.oss.sonatype.org/service/local/"))
snapshotRepositoryUrl.set(uri("https://s01.oss.sonatype.org/content/repositories/snapshots/"))
username.set(System.getenv("OSSRH_USERNAME"))
password.set(System.getenv("OSSRH_PASSWORD"))
}
}
}