Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use libs.versions.toml #133

Merged
merged 1 commit into from
Sep 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
63 changes: 45 additions & 18 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,12 @@ val jvm = JvmTarget.JVM_1_8
val onCI: Boolean = System.getenv("CI")?.toBooleanLenient() ?: false

plugins {
kotlin("multiplatform") version "2.0.20"
alias(libs.plugins.kotest.multiplatform)
alias(libs.plugins.kotlin.multiplatform)
alias(libs.plugins.ktlint)
alias(libs.plugins.nexuspublish)
id("maven-publish")
id("signing")
id("io.github.gradle-nexus.publish-plugin") version "2.0.0"
id("org.jlleitschuh.gradle.ktlint") version "12.1.1"
idea
}

Expand All @@ -36,6 +37,7 @@ group = projectGroup
val projectVersion = System.getenv("CI_VERSION") ?: "0.6.2-SNAPSHOT"
version = projectVersion

//region Kotlin and test configuration
kotlin {
// Since we are a library, prevent accidentally making things part of the public API
explicitApi()
Expand All @@ -47,15 +49,12 @@ kotlin {
}
}

// start of kotlin targets
//region kotlin targets
androidNativeArm32()
androidNativeArm64()
androidNativeX86()
androidNativeX64()
jvm {
testRuns["test"].executionTask.configure {
useJUnitPlatform()
}
@OptIn(ExperimentalKotlinGradlePluginApi::class)
compilerOptions {
// note lang toolchain cannot be used here
Expand Down Expand Up @@ -93,25 +92,49 @@ kotlin {
wasmWasi {
nodejs()
}
// end of kotlin targets
//endregion

sourceSets {
commonMain {
dependencies {
api(kotlin("stdlib"))
}
// Shared dependencies
commonMain.dependencies {
api(kotlin("stdlib"))
}
commonTest {
dependencies {
implementation(kotlin("test"))
}
// Shared test dependencies
commonTest.dependencies {
implementation(kotlin("test"))
// implementation(kotlin("test-annotations-common"))
// implementation(kotlin("test-common"))
// implementation(libs.kotest.assertions.core)
// implementation(libs.kotest.framework.datatest)
// implementation(libs.kotest.framework.engine)
}
jvmTest.dependencies {
// implementation(libs.kotest.runner.junit5)
}
}
}
configure<org.jlleitschuh.gradle.ktlint.KtlintExtension> {
version = "1.3.1"
version = libs.versions.ktlint.get()
}
tasks.named<Test>("jvmTest") {
useJUnitPlatform()
filter {
isFailOnNoMatchingTests = true
}
testLogging {
showExceptions = true
showStandardStreams = true
events =
setOf(
org.gradle.api.tasks.testing.logging.TestLogEvent.FAILED,
org.gradle.api.tasks.testing.logging.TestLogEvent.PASSED,
)
exceptionFormat = org.gradle.api.tasks.testing.logging.TestExceptionFormat.FULL
}
}
//endregion

//region Publishing configuration
val javaDocJar =
tasks.register<Jar>("stubJavadoc") {
archiveClassifier = "javadoc"
Expand Down Expand Up @@ -163,7 +186,8 @@ signing {
}
sign(publishing.publications)
}
//region Fix Gradle warning about signing tasks using publishing task outputs without explicit dependencies

// Fix Gradle warning about signing tasks using publishing task outputs without explicit dependencies
// https:/gradle/gradle/issues/26091
tasks.withType<AbstractPublishToMaven>().configureEach {
val signingTasks = tasks.withType<Sign>()
Expand All @@ -180,10 +204,13 @@ nexusPublishing {
}
}
}
//endregion

//region IDE configuration
idea {
module {
isDownloadJavadoc = true
isDownloadSources = true
}
}
//endregion
18 changes: 18 additions & 0 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
[versions]
kotest = "5.9.1"
kotlin = "2.0.20"
ktlint = "1.3.1"

[libraries]
kotest-assertions-core = { module = "io.kotest:kotest-assertions-core", version.ref = "kotest" }
kotest-framework-datatest = { module = "io.kotest:kotest-framework-datatest", version.ref = "kotest" }
kotest-framework-engine = { module = "io.kotest:kotest-framework-engine", version.ref = "kotest" }
kotest-runner-junit5 = { module = "io.kotest:kotest-runner-junit5", version.ref = "kotest" }
# Not actually used as dependency, but hopefully this causes dependabot to pick up on ktlint versions
ktlint = { module = "com.pinterest:ktlint-bom", version.ref = "ktlint" }

[plugins]
kotest-multiplatform = { id = "io.kotest.multiplatform", version.ref = "kotest" }
kotlin-multiplatform = { id = "org.jetbrains.kotlin.multiplatform", version.ref = "kotlin" }
ktlint = { id = "org.jlleitschuh.gradle.ktlint", version = "12.1.1" }
nexuspublish = { id = "io.github.gradle-nexus.publish-plugin", version = "2.0.0" }