You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
620 B
29 lines
620 B
3 years ago
|
// Add compose gradle plugin
|
||
|
plugins {
|
||
|
kotlin("multiplatform") version "1.5.10"
|
||
3 years ago
|
id("org.jetbrains.compose") version "0.5.0-build226"
|
||
3 years ago
|
}
|
||
|
group = "com.theapache64.composebird"
|
||
|
version = "1.0.0-alpha01"
|
||
|
|
||
|
// Add maven repositories
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
|
||
|
}
|
||
|
|
||
|
kotlin {
|
||
|
js(IR) {
|
||
|
browser()
|
||
|
binaries.executable()
|
||
|
}
|
||
|
sourceSets {
|
||
|
val jsMain by getting {
|
||
|
dependencies {
|
||
|
implementation(compose.web.core)
|
||
|
implementation(compose.runtime)
|
||
|
}
|
||
|
}
|
||
|
}
|
||
3 years ago
|
}
|