forked from open-telemetry/opentelemetry-java-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
49 lines (41 loc) · 1.25 KB
/
build.gradle
File metadata and controls
49 lines (41 loc) · 1.25 KB
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
plugins {
id "com.diffplug.spotless"
id "com.github.johnrengelman.shadow" apply false
}
ext {
openTelemetryVersion = "1.14.0"
openTelemetryAlphaVersion = "1.14.0-alpha"
openTelemetryInstrumentationVersion = "1.14.0"
grpcVersion = '1.34.1'
protobufVersion = '3.11.4'
protocVersion = protobufVersion
}
println("Building against OpenTelemetry version: $openTelemetryVersion")
subprojects {
apply plugin: 'eclipse'
apply plugin: 'java'
apply plugin: 'java-library'
apply plugin: 'idea'
apply plugin: 'com.diffplug.spotless'
apply plugin: 'com.github.johnrengelman.shadow'
group = "io.opentelemetry"
version = "0.1.0-SNAPSHOT"
repositories {
mavenCentral()
maven {
// Add snapshot repository
url "https://oss.sonatype.org/content/repositories/snapshots"
}
}
dependencies {
implementation platform("io.opentelemetry:opentelemetry-bom:${openTelemetryVersion}")
implementation platform("io.opentelemetry:opentelemetry-bom-alpha:${openTelemetryAlphaVersion}")
implementation platform("io.grpc:grpc-bom:${grpcVersion}")
}
spotless {
java {
targetExclude '**/generated/**'
googleJavaFormat()
}
}
}