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 b02b17d commit 8bfb4c0Copy full SHA for 8bfb4c0
plugins/license-gather-plugin/src/main/kotlin/com/github/vlsi/gradle/license/PomLicenseLoader.kt
@@ -108,7 +108,7 @@ fun GPathResult.attr(name: String): String = get("@$name").text()
108
@Suppress("UNCHECKED_CAST")
109
fun GPathResult.getList(name: String) = getProperty(name) as Iterable<GPathResult>
110
111
-private fun File.parseXml(): GPathResult = XmlSlurper().parse(this)
+private fun File.parseXml(): GPathResult = XmlSlurper(false, false).parse(this)
112
113
fun GPathResult.parsePom(): PomContents {
114
fun GPathResult.parseId(parentGroup: String = "") =
0 commit comments