-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle
35 lines (31 loc) · 877 Bytes
/
settings.gradle
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
pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
}
}
plugins {
id('org.gradle.toolchains.foojay-resolver-convention') version '0.8.0'
id('com.autonomousapps.build-health') version '2.2.0'
id('org.jetbrains.kotlin.jvm') version '2.0.21' apply false
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
}
}
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
rootProject.name = 'github-workflow-otel'
include('apis:github')
include('apis:github:api')
include('apis:github:di')
include('apis:github:internal')
include('apis:otel')
include('apis:otel:api')
include('apis:otel:di')
include('apis:otel:internal')
include('apps:cli')
include('services:retrofit')
include('services:okhttp')
include('services:kotlinx-serialization')