-
Notifications
You must be signed in to change notification settings - Fork 16
/
build.gradle
66 lines (56 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
buildscript {
repositories {
maven { url "https://plugins.gradle.org/m2/" }
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "org.jlleitschuh.gradle:ktlint-gradle:12.1.2"
}
}
plugins {
id "dev.projektor.publish" version "9.0.0"
id "com.atkinsondev.opentelemetry-build" version "2.2.0"
id 'com.github.psxpaul.execfork' version '0.2.2' apply false
}
projektor {
serverUrl = "https://projektorlive.herokuapp.com"
publishToken = System.getenv("PROJEKTOR_TOKEN") ?: project.findProperty('projektor_publish_token') ?: null
codeQualityReports = [fileTree(dir: ".", include: "**/build/reports/ktlint/**/*.txt")]
}
openTelemetryBuild {
endpoint = "https://api.honeycomb.io"
headers = [
"x-honeycomb-team": System.getenv("HONEYCOMB_API_KEY") ?: project.findProperty('honeycomb_api_key') ?: null,
"x-honeycomb-dataset": "otel-gradle"
]
}
allprojects {
buildscript {
repositories {
maven { url "https://plugins.gradle.org/m2/" }
mavenCentral()
}
}
repositories {
mavenCentral()
}
tasks.withType(Test) {
testLogging {
exceptionFormat = 'full'
}
reports {
junitXml {
outputPerTestCase = true
}
}
}
tasks.withType(JacocoReport) {
dependsOn(test)
}
plugins.withType(JacocoPlugin) {
jacoco {
toolVersion = "0.8.12"
}
}
}