Skip to content

Commit e019015

Browse files
authored
Merge pull request #4 from kotlin-hands-on/set_dsl
More changes set dsl
2 parents 177875f + 067a58c commit e019015

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

fibonacci/build.gradle.kts

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -55,28 +55,28 @@ mavenPublishing {
5555
coordinates("io.github.kotlin-hands-on", "fibonacci", "1.0.8")
5656

5757
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/"
6262
licenses {
6363
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"
6767
}
6868
}
6969
developers {
7070
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/"
7474
}
7575
}
7676
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"
8080
}
8181
}
8282
}

0 commit comments

Comments
 (0)