Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
1.0-JSR-3
-
None
-
None
Description
MarkupBuilder can't output namespaces or tags with hyphens in them.
The fix should allow to use the quoted identifiers for that purpose:
def mkp = new groovy.xml.MarkupBuilder()
mkp."ns1:customer-description"{
this."last-name"("Laforge")
this."first-name"
}