forked from DataDog/dd-trace-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
25 lines (19 loc) · 777 Bytes
/
build.gradle
File metadata and controls
25 lines (19 loc) · 777 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
plugins {
id "com.github.johnrengelman.shadow"
}
apply from: "$rootDir/gradle/java.gradle"
// We do not publish a separate jar, but having a version file is useful for checking if cws is included
apply from: "$rootDir/gradle/version.gradle"
excludedClassesCoverage += ['datadog.cws.erpc.*', 'datadog.cws.tls.*',]
dependencies {
implementation group: 'net.java.dev.jna', name: 'jna', version: '5.8.0'
implementation group: 'net.java.dev.jna', name: 'jna-platform', version: '5.8.0'
implementation project(':internal-api')
implementation project(':dd-trace-api')
testImplementation project(":dd-java-agent:testing")
}
shadowJar {
dependencies deps.excludeShared
// exclude this since it's available in the instrumentation jar
exclude 'com/sun/jna/**/*'
}