Skip to content

Commit

Permalink
Fixes #43
Browse files Browse the repository at this point in the history
  • Loading branch information
DreierF committed Jan 3, 2022
1 parent b02b17d commit 8bfb4c0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ fun GPathResult.attr(name: String): String = get("@$name").text()
@Suppress("UNCHECKED_CAST")
fun GPathResult.getList(name: String) = getProperty(name) as Iterable<GPathResult>

private fun File.parseXml(): GPathResult = XmlSlurper().parse(this)
private fun File.parseXml(): GPathResult = XmlSlurper(false, false).parse(this)

fun GPathResult.parsePom(): PomContents {
fun GPathResult.parseId(parentGroup: String = "") =
Expand Down

0 comments on commit 8bfb4c0

Please sign in to comment.