-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.gradle.kts
31 lines (27 loc) · 947 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
29
30
31
buildscript {
repositories {
google()
gradlePluginPortal()
mavenCentral()
}
dependencies {
// Leaving this plugin here so it can be automatically
// updated by Android Studio
classpath("com.android.tools.build:gradle:7.1.2")
classpath(BuildPlugins.kotlin)
classpath(BuildPlugins.sqlDelight)
classpath(BuildPlugins.composeDesktop)
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
mavenCentral()
maven(url = "https://www.jitpack.io")
maven(url = "https://maven.pkg.jetbrains.space/public/p/compose/dev")
maven(url = "https://maven.pkg.jetbrains.space/kotlin/p/kotlin/kotlin-js-wrappers")
maven(url = "https://maven.pkg.jetbrains.space/public/p/kotlinx-coroutines/maven")
}
}