-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
108 lines (100 loc) · 3.11 KB
/
Copy pathsettings.gradle.kts
File metadata and controls
108 lines (100 loc) · 3.11 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
pluginManagement {
includeBuild("build-logic")
repositories {
google {
content {
includeGroupByRegex("com\\.android.*")
includeGroupByRegex("com\\.google.*")
includeGroupByRegex("androidx.*")
}
}
mavenCentral()
gradlePluginPortal()
}
}
plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version "1.0.0"
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.PREFER_SETTINGS)
repositories {
google()
mavenCentral()
maven { url = uri("https://devrepo.kakao.com/nexus/content/groups/public/") }
// Node.js distribution repository
exclusiveContent {
forRepository {
ivy("https://nodejs.org/dist/") {
name = "Node.js Distributions"
patternLayout {
artifact("v[revision]/[artifact](-v[revision]-[classifier]).[ext]")
}
metadataSources {
artifact()
}
content {
includeModule("org.nodejs", "node")
}
}
}
filter {
includeModule("org.nodejs", "node")
}
}
// Yarn distribution repository
exclusiveContent {
forRepository {
ivy("https://github.com/yarnpkg/yarn/releases/download") {
name = "Yarn Distributions"
patternLayout {
artifact("v[revision]/[artifact]-v[revision].[ext]")
}
metadataSources {
artifact()
}
content {
includeModule("com.yarnpkg", "yarn")
}
}
}
filter {
includeModule("com.yarnpkg", "yarn")
}
}
// Binaryen distribution repository for Kotlin/Wasm
exclusiveContent {
forRepository {
ivy("https://github.com/WebAssembly/binaryen/releases/download") {
name = "Binaryen Distributions"
patternLayout {
artifact(
"version_[revision]/[module]-version_[revision]-[classifier].[ext]",
)
}
metadataSources {
artifact()
}
}
}
filter {
includeModule("com.github.webassembly", "binaryen")
}
}
}
}
rootProject.name = "DMinus14"
include(":app")
include(":domain")
include(":data")
include(":feature:main:api")
include(":feature:main:impl")
include(":feature:login:api")
include(":feature:login:impl")
include(":core:permission")
include(":core:common")
include(":designsystem")
include(":catalog")
include(":catalog:annotations")
include(":catalog:processor")
include(":core:resources")
include(":core:crypto")