-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
85 lines (78 loc) · 2.15 KB
/
build.gradle.kts
File metadata and controls
85 lines (78 loc) · 2.15 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
import io.freefair.gradle.plugins.lombok.LombokExtension
plugins {
alias(libs.plugins.release)
alias(libs.plugins.sonar)
alias(libs.plugins.sonatype)
alias(libs.plugins.lombok)
alias(libs.plugins.aggregate.javadoc)
}
allprojects {
group = "com.bakdata.kafka"
dependencies {
subprojects {
plugins.withId("java") {
javadoc(this@subprojects)
}
javadocClasspath("org.projectlombok:lombok:${LombokExtension.LOMBOK_VERSION}")
}
}
}
subprojects {
plugins.matching { it is JavaPlugin }.all {
apply(plugin = "java-test-fixtures")
apply(plugin = "io.freefair.lombok")
configure<JavaPluginExtension> {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
}
publication {
developers {
developer {
name.set("Lawrence Benson")
id.set("lawben")
}
developer {
name.set("Benjamin Feldmann")
id.set("BJennWare")
}
developer {
name.set("Ramin Gharib")
id.set("raminqaf")
}
developer {
name.set("Arvid Heise")
id.set("AHeise")
}
developer {
name.set("Victor Künstler")
id.set("VictorKuenstler")
}
developer {
name.set("Sven Lehmann")
id.set("SvenLehmann")
}
developer {
name.set("Torben Meyer")
id.set("torbsto")
}
developer {
name.set("Fabian Paul")
id.set("fapaul")
}
developer {
name.set("Yannick Roeder")
id.set("yannick-roeder")
}
developer {
name.set("Philipp Schirmer")
id.set("philipp94831")
}
}
}
}
// Build aggregated Javadoc. Not wired automatically in Gradle 9.3
tasks.named("build") {
finalizedBy(tasks.named("javadocJar"))
}