We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4269e31 commit 7ad6d28Copy full SHA for 7ad6d28
buildSrc/src/main/groovy/maven-conv.gradle
@@ -8,11 +8,14 @@ def isReleaseVersion = !rootProject.version.endsWith("SNAPSHOT")
8
publishing {
9
publications {
10
gumtreeDist(MavenPublication) {
11
- from(components.java)
+ from components.java
12
13
pom {
14
name = "GumTree ${project.name}"
15
- description = project.description
+ afterEvaluate {
16
+ description = project.description
17
+ }
18
+
19
url = 'https://github.com/GumTreeDiff/gumtree/'
20
21
scm {
0 commit comments