Skip to content

Commit

Permalink
build > use = instead of .set()
Browse files Browse the repository at this point in the history
  • Loading branch information
SgtSilvio committed Jan 12, 2024
1 parent 30a946a commit db6a211
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -25,34 +25,34 @@ group = "com.hivemq"
description = "SDK for the development of HiveMQ extensions"

metadata {
readableName.set("HiveMQ Extension SDK")
readableName = "HiveMQ Extension SDK"
organization {
name.set("HiveMQ GmbH")
url.set("https://www.hivemq.com/")
name = "HiveMQ GmbH"
url = "https://www.hivemq.com/"
}
license {
apache2()
}
developers {
register("cschaebe") {
fullName.set("Christoph Schaebel")
email.set("christoph.schaebel@hivemq.com")
fullName = "Christoph Schaebel"
email = "christoph.schaebel@hivemq.com"
}
register("lbrandl") {
fullName.set("Lukas Brandl")
email.set("lukas.brandl@hivemq.com")
fullName = "Lukas Brandl"
email = "lukas.brandl@hivemq.com"
}
register("flimpoeck") {
fullName.set("Florian Limpoeck")
email.set("florian.limpoeck@hivemq.com")
fullName = "Florian Limpoeck"
email = "florian.limpoeck@hivemq.com"
}
register("sauroter") {
fullName.set("Georg Held")
email.set("georg.held@hivemq.com")
fullName = "Georg Held"
email = "georg.held@hivemq.com"
}
register("SgtSilvio") {
fullName.set("Silvio Giebl")
email.set("silvio.giebl@hivemq.com")
fullName = "Silvio Giebl"
email = "silvio.giebl@hivemq.com"
}
}
github {
Expand All @@ -73,7 +73,7 @@ dependencies {

java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(11))
languageVersion = JavaLanguageVersion.of(11)
}
withJavadocJar()
withSourcesJar()
Expand Down

0 comments on commit db6a211

Please sign in to comment.