-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
29 lines (25 loc) · 737 Bytes
/
Copy pathsettings.gradle.kts
File metadata and controls
29 lines (25 loc) · 737 Bytes
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
import java.net.URI
include(":designsystem")
pluginManagement {
includeBuild("build-logic")
repositories {
gradlePluginPortal()
google()
mavenCentral()
maven { url = java.net.URI.create("https://dl.bintray.com/kotlin/kotlinx") }
maven { url = java.net.URI.create("https://androidx.dev/storage/compose-compiler/repository") }
}
}
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven (url = "https://jitpack.io")
}
}
rootProject.name = "VLR"
include (":app")
include (":benchmark")
include(":baselineprofile")