@@ -18,41 +18,41 @@ plugins {
18
18
}
19
19
20
20
plugins.withId(" com.hivemq.version-updater" ) {
21
- project.ext.set( " versionUpdaterFiles" , arrayOf(" README.adoc" ) )
21
+ project.ext[ " versionUpdaterFiles" ] = arrayOf(" README.adoc" )
22
22
}
23
23
24
24
group = " com.hivemq"
25
25
description = " SDK for the development of HiveMQ Kafka Extension customizations"
26
26
27
27
metadata {
28
- readableName.set( " HiveMQ Kafka Extension Customization SDK" )
28
+ readableName = " HiveMQ Kafka Extension Customization SDK"
29
29
organization {
30
- name.set( " HiveMQ GmbH" )
31
- url.set( " https://www.hivemq.com/" )
30
+ name = " HiveMQ GmbH"
31
+ url = " https://www.hivemq.com/"
32
32
}
33
33
license {
34
34
apache2()
35
35
}
36
36
developers {
37
37
register(" cschaebe" ) {
38
- fullName.set( " Christoph Schaebel" )
39
- email.set( " christoph.schaebel@hivemq.com" )
38
+ fullName = " Christoph Schaebel"
39
+ email = " christoph.schaebel@hivemq.com"
40
40
}
41
41
register(" lbrandl" ) {
42
- fullName.set( " Lukas Brandl" )
43
- email.set( " lukas.brandl@hivemq.com" )
42
+ fullName = " Lukas Brandl"
43
+ email = " lukas.brandl@hivemq.com"
44
44
}
45
45
register(" flimpoeck" ) {
46
- fullName.set( " Florian Limpoeck" )
47
- email.set( " florian.limpoeck@hivemq.com" )
46
+ fullName = " Florian Limpoeck"
47
+ email = " florian.limpoeck@hivemq.com"
48
48
}
49
49
register(" sauroter" ) {
50
- fullName.set( " Georg Held" )
51
- email.set( " georg.held@hivemq.com" )
50
+ fullName = " Georg Held"
51
+ email = " georg.held@hivemq.com"
52
52
}
53
53
register(" SgtSilvio" ) {
54
- fullName.set( " Silvio Giebl" )
55
- email.set( " silvio.giebl@hivemq.com" )
54
+ fullName = " Silvio Giebl"
55
+ email = " silvio.giebl@hivemq.com"
56
56
}
57
57
}
58
58
github {
@@ -73,7 +73,7 @@ dependencies {
73
73
74
74
java {
75
75
toolchain {
76
- languageVersion.set( JavaLanguageVersion .of(11 ) )
76
+ languageVersion = JavaLanguageVersion .of(11 )
77
77
}
78
78
withJavadocJar()
79
79
withSourcesJar()
0 commit comments