This repository has been archived by the owner on Jan 29, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathbuild.gradle
52 lines (43 loc) · 1.56 KB
/
build.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.github.jengelman.gradle.plugins:shadow:5.1.0'
}
}
apply plugin: 'java'
apply plugin: 'com.github.johnrengelman.shadow'
group 'com.newrelic.opentracing'
version '0.2.0-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
mavenCentral()
maven {
// url = "https://oss.jfrog.org/artifactory/oss-snapshot-local"
url = "https://oss.sonatype.org/content/repositories/snapshots"
mavenContent {
snapshotsOnly()
}
}
maven {
url = "https://oss.sonatype.org/content/repositories/snapshots"
}
}
dependencies {
implementation('javax.annotation:javax.annotation-api:1.3.2')
// Open Telemetry
implementation('io.opentelemetry:opentelemetry-sdk:0.2.0')
implementation('io.opentelemetry:opentelemetry-proto:0.2.0')
implementation('io.opentelemetry:opentelemetry-opentracing-shim:0.2.0')
implementation('io.opentelemetry:opentelemetry-contrib-trace-utils:0.2.0')
// Open Tracing
implementation('io.opentracing:opentracing-api:0.33.0')
implementation('io.opentracing.contrib:opentracing-tracerresolver:0.1.8')
// New Relic Telemetry
implementation("com.newrelic.telemetry:telemetry-core:0.3.4")
implementation("com.newrelic.telemetry:telemetry-http-okhttp:0.3.4")
// TODO: replace this with the published version when available
implementation("com.newrelic.telemetry:opentelemetry-exporters-newrelic:0.2.0-SNAPSHOT")
testCompile group: 'junit', name: 'junit', version: '4.12'
}