-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle.kts
66 lines (57 loc) · 1.53 KB
/
settings.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
//import com.zpw.myplayground.myGitRepositories
//import me.champeau.gradle.igp.gitRepositories
pluginManagement {
repositories {
mavenLocal()
gradlePluginPortal()
google()
mavenCentral()
maven { setUrl("https://plugins.gradle.org/m2/") }
}
includeBuild("plugin")
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.PREFER_SETTINGS)
repositories {
mavenLocal()
google()
mavenCentral()
// Add these two maven entries.
maven { setUrl("./flutter") }
maven { setUrl("https://storage.googleapis.com/download.flutter.io") }
}
}
enableFeaturePreview("VERSION_CATALOGS")
rootProject.name = "MyPlayGround"
include(":app")
//include(":library1")
//include(":library2")
//include(":library3")
include(":annotation")
include(":compiler")
include(":hilt")
//include(":plugin")
//include(":plugintest")
//plugins {
// id("com.dropbox.focus") version "0.4.0"
//}
//focus {
// allSettingsFileName = "settings-all.gradle"
// focusFileName = "settings-focus.gradle"
//}
//plugins {
// id("me.champeau.includegit") version "0.1.5"
// id("com.zpw.myplugin") version "1.0.0-SNAPSHOT"
//}
//gitRepositories {
// include("circleimageview") {
// uri.set("https://github.com/hdodenhof/CircleImageView.git")
// branch.set("master")
// }
//}
//myGitRepositories {
// include("Circleimageview") {
// uri.set("https://github.com/hdodenhof/CircleImageView.git")
// branch.set("master")
// }
//}