Skip to content

Commit 255ca2e

Browse files
committed
Fix description being empty in pom.xml
1 parent 03a6af1 commit 255ca2e

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

build.gradle.kts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,11 @@ subprojects {
106106

107107
pom {
108108
name.set(project.name)
109-
description.set(project.description)
109+
110+
val pomDescription = description
111+
afterEvaluate {
112+
pomDescription.set(project.description)
113+
}
110114

111115
url.set("https://github.com/bozaro/git-lfs-java")
112116

0 commit comments

Comments
 (0)