com.autonomousapps.internal.utils.xml.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dependency-analysis-gradle-plugin Show documentation
Show all versions of dependency-analysis-gradle-plugin Show documentation
Analyzes dependency usage in Android and JVM projects
// Copyright (c) 2024. Tony Robalik.
// SPDX-License-Identifier: Apache-2.0
package com.autonomousapps.internal.utils
import org.w3c.dom.Document
import java.io.File
import java.nio.file.Path
import javax.xml.parsers.DocumentBuilderFactory
internal fun buildDocument(path: Path): Document = buildDocument(path.toFile())
internal fun buildDocument(file: File): Document = DocumentBuilderFactory.newInstance()
.newDocumentBuilder()
.parse(file).also {
it.documentElement.normalize()
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy