Skip to content

Commit b16b74b

Browse files
committed
build > use = instead of .set()
1 parent 3784c59 commit b16b74b

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

build.gradle.kts

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -18,41 +18,41 @@ plugins {
1818
}
1919

2020
plugins.withId("com.hivemq.version-updater") {
21-
project.ext.set("versionUpdaterFiles", arrayOf("README.adoc"))
21+
project.ext["versionUpdaterFiles"] = arrayOf("README.adoc")
2222
}
2323

2424
group = "com.hivemq"
2525
description = "SDK for the development of HiveMQ Kafka Extension customizations"
2626

2727
metadata {
28-
readableName.set("HiveMQ Kafka Extension Customization SDK")
28+
readableName = "HiveMQ Kafka Extension Customization SDK"
2929
organization {
30-
name.set("HiveMQ GmbH")
31-
url.set("https://www.hivemq.com/")
30+
name = "HiveMQ GmbH"
31+
url = "https://www.hivemq.com/"
3232
}
3333
license {
3434
apache2()
3535
}
3636
developers {
3737
register("cschaebe") {
38-
fullName.set("Christoph Schaebel")
39-
email.set("christoph.schaebel@hivemq.com")
38+
fullName = "Christoph Schaebel"
39+
email = "christoph.schaebel@hivemq.com"
4040
}
4141
register("lbrandl") {
42-
fullName.set("Lukas Brandl")
43-
email.set("lukas.brandl@hivemq.com")
42+
fullName = "Lukas Brandl"
43+
email = "lukas.brandl@hivemq.com"
4444
}
4545
register("flimpoeck") {
46-
fullName.set("Florian Limpoeck")
47-
email.set("florian.limpoeck@hivemq.com")
46+
fullName = "Florian Limpoeck"
47+
email = "florian.limpoeck@hivemq.com"
4848
}
4949
register("sauroter") {
50-
fullName.set("Georg Held")
51-
email.set("georg.held@hivemq.com")
50+
fullName = "Georg Held"
51+
email = "georg.held@hivemq.com"
5252
}
5353
register("SgtSilvio") {
54-
fullName.set("Silvio Giebl")
55-
email.set("silvio.giebl@hivemq.com")
54+
fullName = "Silvio Giebl"
55+
email = "silvio.giebl@hivemq.com"
5656
}
5757
}
5858
github {
@@ -73,7 +73,7 @@ dependencies {
7373

7474
java {
7575
toolchain {
76-
languageVersion.set(JavaLanguageVersion.of(11))
76+
languageVersion = JavaLanguageVersion.of(11)
7777
}
7878
withJavadocJar()
7979
withSourcesJar()

0 commit comments

Comments
 (0)