Skip to content

Commit b3b1131

Browse files
authored
Merge pull request #43 from slonopotamus/pom-empty-description
Fix description being empty in pom.xml
2 parents 03a6af1 + 255ca2e commit b3b1131

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)