@@ -55,28 +55,28 @@ mavenPublishing {
55
55
coordinates(" io.github.kotlin-hands-on" , " fibonacci" , " 1.0.8" )
56
56
57
57
pom {
58
- name.set( " Fibonacci library" )
59
- description.set( " A description of what my library does. " )
60
- inceptionYear.set( " 2024" )
61
- url.set( " https://github.com/kotlin-hands-on/fibonacci/" )
58
+ name = " Fibonacci library"
59
+ description = " A mathematics calculation library. "
60
+ inceptionYear = " 2024"
61
+ url = " https://github.com/kotlin-hands-on/fibonacci/"
62
62
licenses {
63
63
license {
64
- name.set( " The Apache License, Version 2.0" )
65
- url.set( " http://www.apache.org/licenses/LICENSE-2.0.txt" )
66
- distribution.set( " http://www.apache.org/licenses/LICENSE-2.0.txt" )
64
+ name = " The Apache License, Version 2.0"
65
+ url = " http://www.apache.org/licenses/LICENSE-2.0.txt"
66
+ distribution = " http://www.apache.org/licenses/LICENSE-2.0.txt"
67
67
}
68
68
}
69
69
developers {
70
70
developer {
71
- id.set( " kotlin-hands-on" )
72
- name.set( " Kotlin Developer Advocate" )
73
- url.set( " https://github.com/kotlin-hands-on/" )
71
+ id = " kotlin-hands-on"
72
+ name = " Kotlin Developer Advocate"
73
+ url = " https://github.com/kotlin-hands-on/"
74
74
}
75
75
}
76
76
scm {
77
- url.set( " https://github.com/kotlin-hands-on/fibonacci/" )
78
- connection.set( " scm:git:git://github.com/kotlin-hands-on/fibonacci.git" )
79
- developerConnection
.set( " scm:git:ssh://[email protected] /kotlin-hands-on/fibonacci.git" )
77
+ url = " https://github.com/kotlin-hands-on/fibonacci/"
78
+ connection = " scm:git:git://github.com/kotlin-hands-on/fibonacci.git"
79
+ developerConnection
= " scm:git:ssh://[email protected] /kotlin-hands-on/fibonacci.git"
80
80
}
81
81
}
82
82
}
0 commit comments