forked from open-telemetry/opentelemetry-java
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
48 lines (40 loc) · 1.2 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
plugins {
id "com.diffplug.spotless"
id "com.github.johnrengelman.shadow" apply false
}
ext {
openTelemetryVersion = "1.7.0"
openTelemetryAlphaVersion = "1.7.0-alpha"
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()
}
}
}