File tree Expand file tree Collapse file tree 4 files changed +50
-36
lines changed Expand file tree Collapse file tree 4 files changed +50
-36
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ apply (from = " $rootDir /gradle/java.gradle" )
2
+
3
+ val excludedClassesBranchCoverage by extra(
4
+ listOf (
5
+ " datadog.remoteconfig.ConfigurationChangesListener.PollingHinterNoop"
6
+ )
7
+ )
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ plugins {
2
+ `java- library`
3
+ }
4
+
5
+ apply (from = " $rootDir /gradle/java.gradle" )
6
+
7
+ val minimumBranchCoverage by extra(0.6 )
8
+ val minimumInstructionCoverage by extra(0.8 )
9
+ val excludedClassesCoverage by extra(
10
+ listOf (
11
+ // not used yet
12
+ " datadog.remoteconfig.tuf.RemoteConfigRequest.ClientInfo.AgentInfo" ,
13
+ // only half the adapter interface used
14
+ " datadog.remoteconfig.tuf.InstantJsonAdapter" ,
15
+ // idem
16
+ " datadog.remoteconfig.tuf.RawJsonAdapter" ,
17
+ " datadog.remoteconfig.ExceptionHelper" ,
18
+ )
19
+ )
20
+ val excludedClassesBranchCoverage by extra(
21
+ listOf (
22
+ " datadog.remoteconfig.tuf.FeaturesConfig" ,
23
+ " datadog.remoteconfig.PollerRequestFactory" ,
24
+ )
25
+ )
26
+ val excludedClassesInstructionCoverage by extra(
27
+ listOf (
28
+ " datadog.remoteconfig.ConfigurationChangesListener.PollingHinterNoop" ,
29
+ )
30
+ )
31
+
32
+ dependencies {
33
+ api(project(" :remote-config:remote-config-api" ))
34
+
35
+ implementation(libs.slf4j)
36
+ implementation(libs.okhttp)
37
+ implementation(libs.moshi)
38
+ implementation(libs.bundles.cafe.crypto)
39
+
40
+ implementation(project(" :internal-api" ))
41
+
42
+ testImplementation(project(" :utils:test-utils" ))
43
+ }
You can’t perform that action at this time.
0 commit comments