mirror of
https://github.com/jlengrand/compose-multiplatform.git
synced 2026-03-10 08:11:20 +00:00
Before this change, the following Groovy DSL code would not work:
```
dependency {
implementation compose.desktop.currentOS
}
// or
kotlin {
jvm { withJava() }
sourceSets {
named("jvmMain") {
dependencies {
implementation(compose.desktop.currentOs)
}
}
}
}
```
JetBrains Compose gradle plugin for easy configuration
Environment variables:
COMPOSE_GRADLE_PLUGIN_VERSION- version of pluginCOMPOSE_GRADLE_PLUGIN_COMPOSE_VERSION- version of JetBrains Compose used by the plugin