-
Notifications
You must be signed in to change notification settings - Fork 9
/
build.gradle.kts
49 lines (43 loc) · 1.06 KB
/
build.gradle.kts
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.bakdata.release") version "1.4.0"
id("com.bakdata.sonar") version "1.4.0"
id("com.bakdata.sonatype") version "1.4.0"
id("io.freefair.lombok") version "8.4"
}
allprojects {
group = "com.bakdata.kafka"
tasks.withType<Test> {
maxParallelForks = 4
useJUnitPlatform()
}
repositories {
mavenCentral()
maven(url = "https://packages.confluent.io/maven/")
}
}
configure<com.bakdata.gradle.SonatypeSettings> {
developers {
developer {
name.set("Sven Lehmann")
id.set("SvenLehmann")
}
developer {
name.set("Torben Meyer")
id.set("torbsto")
}
developer {
name.set("Philipp Schirmer")
id.set("philipp94831")
}
}
}
subprojects {
apply(plugin = "java-library")
apply(plugin = "java-test-fixtures")
apply(plugin = "io.freefair.lombok")
configure<JavaPluginExtension> {
toolchain {
languageVersion = JavaLanguageVersion.of(11)
}
}
}