Skip to content

Commit

Permalink
Revert "build > use = instead of .set()"
Browse files Browse the repository at this point in the history
This reverts commit db6a211.
  • Loading branch information
SgtSilvio committed Jan 12, 2024
1 parent db6a211 commit a152cc8
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 = "HiveMQ Extension SDK"
readableName.set("HiveMQ Extension SDK")
organization {
name = "HiveMQ GmbH"
url = "https://www.hivemq.com/"
name.set("HiveMQ GmbH")
url.set("https://www.hivemq.com/")
}
license {
apache2()
}
developers {
register("cschaebe") {
fullName = "Christoph Schaebel"
email = "[email protected]"
fullName.set("Christoph Schaebel")
email.set("[email protected]")
}
register("lbrandl") {
fullName = "Lukas Brandl"
email = "[email protected]"
fullName.set("Lukas Brandl")
email.set("[email protected]")
}
register("flimpoeck") {
fullName = "Florian Limpoeck"
email = "[email protected]"
fullName.set("Florian Limpoeck")
email.set("[email protected]")
}
register("sauroter") {
fullName = "Georg Held"
email = "[email protected]"
fullName.set("Georg Held")
email.set("[email protected]")
}
register("SgtSilvio") {
fullName = "Silvio Giebl"
email = "[email protected]"
fullName.set("Silvio Giebl")
email.set("[email protected]")
}
}
github {
Expand All @@ -73,7 +73,7 @@ dependencies {

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

0 comments on commit a152cc8

Please sign in to comment.