forked from aws-observability/aws-otel-playground
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
55 lines (48 loc) · 1.87 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
53
54
55
plugins {
id 'java'
id 'idea'
id 'eclipse'
id "io.spring.dependency-management" version "1.0.6.RELEASE"
id 'org.springframework.boot' version '2.2.1.RELEASE'
}
test {
useJUnitPlatform()
}
bootJar {
archiveBaseName = 'scorekeep-api'
archiveVersion = '1.0.0'
}
repositories {
mavenCentral()
maven {
url 'https://aws.oss.sonatype.org/content/repositories/snapshots/'
}
}
sourceCompatibility = 1.8
targetCompatibility = 1.8
dependencies {
implementation(platform("com.amazonaws:aws-xray-recorder-sdk-bom:2.4.0"))
implementation(platform("com.amazonaws:aws-java-sdk-bom:1.11.673"))
implementation(platform("com.fasterxml.jackson:jackson-bom:2.10.0"))
implementation(platform("org.junit:junit-bom:5.5.2"))
implementation("org.springframework.boot:spring-boot-starter-web")
implementation("com.amazonaws:aws-java-sdk-dynamodb")
implementation("com.amazonaws:aws-java-sdk-sns")
implementation("com.amazonaws:aws-xray-recorder-sdk-core")
implementation("com.amazonaws:aws-xray-recorder-sdk-aws-sdk")
implementation("com.amazonaws:aws-xray-recorder-sdk-aws-sdk-instrumentor")
implementation("com.amazonaws:aws-xray-recorder-sdk-metrics")
implementation("com.amazonaws:aws-xray-recorder-sdk-slf4j")
implementation("com.fasterxml.jackson.core:jackson-databind")
implementation("com.amazonaws:aws-xray-sdk-opentelemetry:0.1.0-SNAPSHOT")
implementation("io.opentelemetry:opentelemetry-opentracing-shim:0.2.0")
implementation("io.opentracing.contrib:opentracing-apache-httpclient:0.2.0")
implementation("io.opentracing:opentracing-mock:0.33.0")
testImplementation("org.springframework.boot:spring-boot-starter-test")
testImplementation("org.junit.jupiter:junit-jupiter-api")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine")
}
wrapper {
gradleVersion = '6.0'
}
defaultTasks 'build'