-
-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
54 lines (40 loc) · 1.32 KB
/
settings.gradle.kts
File metadata and controls
54 lines (40 loc) · 1.32 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
pluginManagement {
repositories {
gradlePluginPortal()
mavenCentral()
google()
maven {
url = uri("https://storage.googleapis.com/r8-releases/raw")
content { includeGroup("com.android.tools") }
}
}
}
dependencyResolutionManagement {
repositories {
mavenCentral()
google()
}
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
}
rootProject.name = ("sentry-android-gradle-plugin-composite-build")
include(":examples:android-gradle")
include(":examples:android-gradle-kts")
include(":examples:android-ndk")
include(":examples:android-instrumentation-sample")
include(":examples:android-room-lib")
include(":examples:spring-boot-sample")
include(":examples:multi-module-sample")
include(":examples:multi-module-sample:spring-boot-in-multi-module-sample")
include(":examples:multi-module-sample:spring-boot-in-multi-module-sample2")
includeBuild("plugin-build")
// this is needed so we can use kotlin-compiler-plugin directly in the sample app without publishing
includeBuild("sentry-kotlin-compiler-plugin") {
dependencySubstitution {
substitute(module("io.sentry:sentry-kotlin-compiler-plugin")).using(project(":"))
}
}
includeBuild("sentry-snapshots-runtime") {
dependencySubstitution {
substitute(module("io.sentry:sentry-snapshots-runtime")).using(project(":"))
}
}