forked from WorldWindEarth/WorldWindKotlin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
43 lines (38 loc) · 1.14 KB
/
build.gradle.kts
File metadata and controls
43 lines (38 loc) · 1.14 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
32
33
34
35
36
37
38
39
40
41
42
43
plugins {
val kotlinVersion = "2.3.0"
kotlin("multiplatform") version kotlinVersion apply false
kotlin("plugin.serialization") version kotlinVersion apply false
kotlin("android") version kotlinVersion apply false
id("com.android.library") apply false
id("com.android.application") apply false
id("org.jetbrains.dokka") version "2.1.0" apply false
id("io.github.gradle-nexus.publish-plugin") version "2.0.0"
}
buildscript {
dependencies {
classpath(libs.moko.resources.generator)
}
}
allprojects {
group = "earth.worldwind"
version = "1.9.9"
extra.apply {
set("minSdk", 24)
set("targetSdk", 36)
set("versionCode", 20)
}
repositories {
google()
mavenCentral()
}
}
nexusPublishing {
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.set(System.getenv("SONATYPE_USERNAME"))
password.set(System.getenv("SONATYPE_PASSWORD"))
}
}
}