
sbt.internal.librarymanagement.formats.NodeSeqFormat.scala Maven / Gradle / Ivy
package bleep.nosbt.internal.librarymanagement.formats
import sjsonnew.*
import scala.xml.*
trait NodeSeqFormat { self: BasicJsonProtocol =>
implicit lazy val NodeSeqFormat: JsonFormat[NodeSeq] = projectFormat[NodeSeq, String](
xml => {xml} .toString,
str => XML.loadString(str).child
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy