Skip to content

Commit c3ab467

Browse files
committed
resolved pom conflict
1 parent c5f59de commit c3ab467

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

build.gradle

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,9 @@ publishing {
137137
artifact javadocJar
138138

139139
pom.withXml {
140-
asNode().children().last() + pomConfig
140+
def root = asNode()
141+
root.appendNode 'description', 'Java implementation of BSP based CSG (Constructive Solid Geometry)'
142+
root.children().last() + pomConfig
141143
}
142144
}
143145
}

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
group = eu.mihosoft.vrl.jcsg
2-
version = 0.2
2+
version = 0.3.1

0 commit comments

Comments
 (0)