KSLog/build.gradle

92 lines
1.8 KiB
Groovy
Raw Permalink Normal View History

2022-06-07 09:17:21 +00:00
buildscript {
repositories {
google()
mavenCentral()
mavenLocal()
2023-09-21 19:46:05 +00:00
maven { url "https://plugins.gradle.org/m2/" }
2022-06-07 09:17:21 +00:00
}
2023-09-21 19:46:05 +00:00
2022-06-07 09:17:21 +00:00
dependencies {
2023-09-21 19:46:05 +00:00
classpath libs.android.tools.build
classpath libs.android.dexcount
classpath libs.kotlin.gradle.plugin
classpath libs.kotlin.dokka.plugin
classpath libs.github.release
2022-06-07 09:17:21 +00:00
}
}
2023-09-21 19:46:05 +00:00
2022-06-07 14:02:59 +00:00
plugins {
alias(libs.plugins.kotlin.multiplatform)
alias(libs.plugins.kotlin.dokka)
2023-07-28 06:13:27 +00:00
alias(libs.plugins.versions)
2022-06-07 14:02:59 +00:00
}
2023-09-21 19:46:05 +00:00
apply plugin: "com.android.library"
2022-06-07 14:02:59 +00:00
project.version = "$version"
project.group = "$group"
repositories {
mavenLocal()
mavenCentral()
google()
}
kotlin {
2022-06-15 10:14:59 +00:00
jvm {
2023-09-21 19:46:05 +00:00
compilations.main {
2022-06-15 10:14:59 +00:00
kotlinOptions {
jvmTarget = "1.8"
}
}
}
2022-06-07 14:45:14 +00:00
js(IR) {
2022-06-07 14:02:59 +00:00
browser()
nodejs()
}
2023-09-20 16:25:56 +00:00
androidTarget {
2022-06-07 14:02:59 +00:00
publishAllLibraryVariants()
compilations.all {
kotlinOptions {
2023-11-02 12:06:55 +00:00
jvmTarget = "17"
}
}
2022-06-07 14:02:59 +00:00
}
2022-09-12 09:44:59 +00:00
linuxArm64()
linuxArm32Hfp()
linuxX64()
2023-04-13 04:52:05 +00:00
wasm {
browser()
nodejs()
d8()
}
2022-09-12 09:44:59 +00:00
mingwX64()
2022-06-07 14:02:59 +00:00
sourceSets {
commonMain {
dependencies {
2023-09-21 19:46:05 +00:00
implementation libs.kotlin
2022-06-07 14:02:59 +00:00
}
}
2023-04-13 04:52:05 +00:00
commonTest {
dependencies {
2023-09-21 19:46:05 +00:00
implementation libs.kotlin.test.common
implementation libs.kotlin.test.annotations.common
implementation libs.kotlin.test.junit
2023-04-13 04:52:05 +00:00
}
}
2022-06-07 09:17:21 +00:00
}
}
2022-06-07 14:02:59 +00:00
java {
2022-06-15 10:14:59 +00:00
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
2022-06-07 14:02:59 +00:00
}
2023-09-21 19:46:05 +00:00
apply from: "defaultAndroidSettings.gradle"
apply from: "github_release.gradle"
apply from: "publish.gradle"
apply from: "dokka.gradle"