Skip to content

Commit 1b7d84b

Browse files
committed
Fix missing dereference.
1 parent d7cf198 commit 1b7d84b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gradle/build-logic/src/main/kotlin/conventions.publish.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ publishing.publications.create<MavenPublication>(project.name) {
4848

4949
group = "io.github.jadarma.aockt"
5050
artifactId = project.name
51-
version = project.buildVersion.toString()
51+
version = project.buildVersion.get().toString()
5252

5353
pom {
5454
name.set("Advent of Code Kotlin")

0 commit comments

Comments
 (0)