-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
34 lines (32 loc) · 857 Bytes
/
Copy pathsettings.gradle.kts
File metadata and controls
34 lines (32 loc) · 857 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
33
34
/*
* Copyright: (c) 2023-2024, Pavel Novikov <mail@pavel.dev>
* GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
*/
dependencyResolutionManagement {
repositories {
google()
mavenCentral()
maven("https://jitpack.io")
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
}
}
pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
}
}
rootProject.name = "gitlab-report"
include(":model")
include(":model-stubs")
include(":client:shared")
include(":client:cli")
include(":client:desktop")
include("local-model")
include("remote-model")
include("report:common")
findProject(":report:common")
include(":report:console")
include(":git")