-
-
Notifications
You must be signed in to change notification settings - Fork 108
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
32 lines (29 loc) · 741 Bytes
/
Copy pathsettings.gradle.kts
File metadata and controls
32 lines (29 loc) · 741 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
30
31
32
pluginManagement {
repositories {
google()
gradlePluginPortal()
mavenCentral()
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.PREFER_PROJECT)
repositories {
google()
mavenCentral()
}
}
//gradleEnterprise {
// // configuration
// buildScan {
// // Connecting to scans.gradle.com by agreeing to the terms of service
// termsOfServiceUrl = "https://gradle.com/terms-of-service"
// termsOfServiceAgree = "yes"
// }
//}
rootProject.name = "KeyPass"
include(":app")
include(":shared")
include(":common")
//include(":desktop")
include(":baselineprofile")