-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
28 lines (26 loc) · 987 Bytes
/
build.gradle.kts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
plugins {
// this is necessary to avoid the plugins to be loaded multiple times
// in each subproject's classloader
kotlin("multiplatform").apply(false)
id("com.android.application").apply(false)
id("com.android.library").apply(false)
id("org.jetbrains.kotlin.jvm").apply(false)
id("org.jetbrains.compose").apply(false)
}
buildscript {
dependencies {
classpath("org.jetbrains.compose:compose-gradle-plugin:1.4.0")
classpath ("org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.20")
classpath("org.jetbrains.kotlin:kotlin-serialization:1.8.20")
classpath("app.cash.molecule:molecule-gradle-plugin:0.7.1")
classpath("com.codingfeline.buildkonfig:buildkonfig-gradle-plugin:0.13.3")
}
}
allprojects {
repositories {
google()
mavenCentral()
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
maven("https://s01.oss.sonatype.org/content/repositories/snapshots/")
}
}