-
Notifications
You must be signed in to change notification settings - Fork 331
Expand file tree
/
Copy pathbuild.gradle
More file actions
43 lines (33 loc) · 898 Bytes
/
build.gradle
File metadata and controls
43 lines (33 loc) · 898 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
35
36
37
38
39
40
41
42
43
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath group: 'org.jetbrains.kotlin', name: 'kotlin-gradle-plugin', version: libs.versions.kotlin.get()
}
}
plugins {
id 'com.gradleup.shadow'
id 'java-test-fixtures'
}
apply from: "$rootDir/gradle/java.gradle"
apply from: "$rootDir/gradle/version.gradle"
apply from: "$rootDir/gradle/test-with-kotlin.gradle"
minimumBranchCoverage = 0.0
minimumInstructionCoverage = 0.0
dependencies {
api libs.slf4j
implementation libs.jctools
implementation project(':communication')
implementation project(':components:json')
implementation project(':internal-api')
testImplementation project(":utils:test-utils")
testFixturesApi project(':dd-java-agent:testing')
testFixturesApi project(':utils:test-utils')
}
shadowJar {
dependencies deps.excludeShared
}
jar {
archiveClassifier = 'unbundled'
}