-
Notifications
You must be signed in to change notification settings - Fork 177
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
45 lines (35 loc) · 1.24 KB
/
build.gradle.kts
File metadata and controls
45 lines (35 loc) · 1.24 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
import java.time.Duration
plugins {
id("otel.spotless-conventions")
id("idea")
id("io.github.gradle-nexus.publish-plugin")
}
apply(from = "version.gradle.kts")
nexusPublishing {
packageGroup.set("io.opentelemetry")
repositories {
// see https://central.sonatype.org/publish/publish-portal-ossrh-staging-api/#configuration
sonatype {
nexusUrl.set(uri("https://ossrh-staging-api.central.sonatype.com/service/local/"))
snapshotRepositoryUrl.set(uri("https://central.sonatype.com/repository/maven-snapshots/"))
username.set(System.getenv("SONATYPE_USER"))
password.set(System.getenv("SONATYPE_KEY"))
}
}
connectTimeout.set(Duration.ofMinutes(5))
clientTimeout.set(Duration.ofMinutes(5))
transitionCheckOptions {
// We have many artifacts so Maven Central takes a long time on its compliance checks. This sets
// the timeout for waiting for the repository to close to a comfortable 50 minutes.
maxRetries.set(300)
delayBetween.set(Duration.ofSeconds(10))
}
}
description = "OpenTelemetry Contrib libraries and utilities for the JVM"
if (project.findProperty("skipTests") as String? == "true") {
subprojects {
tasks.withType<Test>().configureEach {
enabled = false
}
}
}