Skip to content

Commit 7ad6d28

Browse files
committed
fix: missing description.
1 parent 4269e31 commit 7ad6d28

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

buildSrc/src/main/groovy/maven-conv.gradle

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,14 @@ def isReleaseVersion = !rootProject.version.endsWith("SNAPSHOT")
88
publishing {
99
publications {
1010
gumtreeDist(MavenPublication) {
11-
from(components.java)
11+
from components.java
1212

1313
pom {
1414
name = "GumTree ${project.name}"
15-
description = project.description
15+
afterEvaluate {
16+
description = project.description
17+
}
18+
1619
url = 'https://github.com/GumTreeDiff/gumtree/'
1720

1821
scm {

0 commit comments

Comments
 (0)