Skip to content
Closed
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

Large diffs are not rendered by default.

276 changes: 262 additions & 14 deletions libraries/skiko/intellij.libraries.skiko.iml

Large diffs are not rendered by default.

22 changes: 0 additions & 22 deletions platform/jewel/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -22,29 +22,7 @@ dependencies {
sarif(projects.ui)
}

// TODO remove this once the Skiko fix makes it into CMP 1.7.1
allprojects {
configurations.all {
resolutionStrategy {
eachDependency {
if (requested.group == "org.jetbrains.skiko") {
useVersion("0.8.17")
because("Contains important memory usage fix")
}
}
}
}
}

tasks {
// val mergeSarifReports by
// registering(MergeSarifTask::class) {
// source(configurations.outgoingSarif)
// include { it.file.extension == "sarif" }
// }
//
// register("check") { dependsOn(mergeSarifReports) }

register("tagRelease") {
description = "Tags main branch and releases branches with provided tag name"
group = "release"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ apiValidation {
nonPublicMarkers.add("org.jetbrains.jewel.InternalJewelApi")
}

kotlin { explicitApi() }
kotlin { compilerOptions { freeCompilerArgs.add("-Xexplicit-api=strict") } }

val extension = project.extensions.create("publicApiValidation", ApiValidationExtension::class.java)

Expand Down
26 changes: 13 additions & 13 deletions platform/jewel/buildSrc/src/main/kotlin/jewel.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -40,19 +40,19 @@ val jdkLevel = project.property("jdk.level") as String
kotlin {
jvmToolchain { languageVersion = JavaLanguageVersion.of(jdkLevel) }

compilerOptions.jvmTarget.set(JvmTarget.fromTarget(jdkLevel))

target {
compilations.all { kotlinOptions { freeCompilerArgs += "-Xcontext-receivers" } }
sourceSets.all {
languageSettings {
optIn("androidx.compose.foundation.ExperimentalFoundationApi")
optIn("androidx.compose.ui.ExperimentalComposeUiApi")
optIn("kotlin.experimental.ExperimentalTypeInference")
optIn("kotlinx.coroutines.ExperimentalCoroutinesApi")
optIn("org.jetbrains.jewel.foundation.ExperimentalJewelApi")
optIn("org.jetbrains.jewel.foundation.InternalJewelApi")
}
compilerOptions {
freeCompilerArgs.add("-Xcontext-receivers")
jvmTarget.set(JvmTarget.fromTarget(jdkLevel))
}

sourceSets.all {
languageSettings {
optIn("androidx.compose.foundation.ExperimentalFoundationApi")
optIn("androidx.compose.ui.ExperimentalComposeUiApi")
optIn("kotlin.experimental.ExperimentalTypeInference")
optIn("kotlinx.coroutines.ExperimentalCoroutinesApi")
optIn("org.jetbrains.jewel.foundation.ExperimentalJewelApi")
optIn("org.jetbrains.jewel.foundation.InternalJewelApi")
}
}
}
Expand Down
144 changes: 72 additions & 72 deletions platform/jewel/foundation/intellij.platform.jewel.foundation.iml

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion platform/jewel/gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[versions]
commonmark = "0.24.0"
composeDesktop = "1.7.1"
composeDesktop = "1.8.0-alpha04"
detekt = "1.23.6"
dokka = "1.9.20"
idea = "2024.3.2.2"
Expand Down
144 changes: 72 additions & 72 deletions platform/jewel/ide-laf-bridge/intellij.platform.jewel.ideLafBridge.iml

Large diffs are not rendered by default.

144 changes: 72 additions & 72 deletions platform/jewel/markdown/core/intellij.platform.jewel.markdown.core.iml

Large diffs are not rendered by default.

Loading