-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathbuild.gradle.kts
47 lines (38 loc) · 1.27 KB
/
build.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
import plugins.ConfigAndroidLibrary
import plugins.ConfigPublish
import utils.artifactIdProperty
import utils.artifactPrefix
import utils.commonPrefix
import utils.versionProperty
plugins {
id("com.android.library")
id("kotlin-android")
id("kotlin-parcelize")
}
apply<ConfigAndroidLibrary>()
apply<ConfigPublish>()
ext {
set(artifactIdProperty, "$artifactPrefix${commonPrefix}${project.name}")
set(versionProperty, Configurations.sdkVersionName)
}
android {
namespace = "com.splunk.sdk.otel"
}
dependencies {
api(platform(Dependencies.Otel.instrumentationBomAlpha))
compileOnly(Dependencies.Android.annotation)
implementation(project(":common:storage"))
api(Dependencies.Otel.sdk)
api(Dependencies.Otel.api)
api(Dependencies.Otel.exporterOtlpCommon)
api(Dependencies.Otel.exporterOtlp) {
exclude(group = "com.squareup.okhttp3", module = "okhttp")
}
api(Dependencies.Otel.semConv)
api(Dependencies.Otel.semConvIncubating)
implementation(Dependencies.SessionReplay.commonLogger)
implementation(Dependencies.SessionReplay.commonJob)
implementation(Dependencies.SessionReplay.commonHttp)
implementation(Dependencies.SessionReplay.commonStorage)
implementation(Dependencies.SessionReplay.commonUtils)
}