Files
compose-multiplatform/gradle-plugins
Alexey Tsvetkov bef34ad7d2 Add compose Gradle extension to dependency blocks
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)
            }
        }
    }
}
```
2020-11-13 13:43:40 +03:00
..
2020-10-29 20:40:27 +03:00

JetBrains Compose gradle plugin for easy configuration

Environment variables:

  • COMPOSE_GRADLE_PLUGIN_VERSION - version of plugin
  • COMPOSE_GRADLE_PLUGIN_COMPOSE_VERSION - version of JetBrains Compose used by the plugin