-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
23 lines (23 loc) · 686 Bytes
/
Copy pathsettings.gradle.kts
File metadata and controls
23 lines (23 loc) · 686 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
@file:Suppress("UnstableApiUsage")
pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
maven("https://redirector.kotlinlang.org/maven/compose-dev")
maven("https://maven.pkg.jetbrains.space/kotlin/p/wasm/experimental")
}
}
plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version "1.0.0"
}
dependencyResolutionManagement {
repositories {
google()
mavenCentral()
maven("https://redirector.kotlinlang.org/maven/compose-dev")
maven("https://maven.pkg.jetbrains.space/kotlin/p/wasm/experimental")
}
}
include(":webApp")
rootProject.name = "MobileDevEmoji"