JDK-8053965 : Xerces update breaks profile build
  • Type: Bug
  • Component: xml
  • Sub-Component: jaxp
  • Affected Version: 9
  • Priority: P2
  • Status: Closed
  • Resolution: Fixed
  • Submitted: 2014-07-30
  • Updated: 2020-01-29
  • Resolved: 2014-07-30
The Version table provides details related to the release that this issue/RFE will be addressed.

Unresolved : Release in which this issue/RFE will be addressed.
Resolved: Release in which this issue/RFE has been resolved.
Fixed : Release in which this issue/RFE has been fixed. The release containing this fix may be available for download as an Early Access Release or a General Availability Release.

To download the current JDK release, click here.
JDK 9
9 b26Fixed
Related Reports
Relates :  
Relates :  
Description
8035467: Xerces Update: Move to Xalan based DOM L3 serializer. Deprecate Xerces' native serializer.

This breaks the profiles build:

org.apache.xml.serializer.dom3.DOMOutputImpl -> org.w3c.dom.ls.LSOutput (unknown type)
One or more unexpected references encountered
Comments
At Joe's suggestion, I tried this patch and "make profiles" built okay. diff --git a/src/com/sun/org/apache/xml/internal/serializer/dom3/DOMOutputImpl.java b/src/com/sun/org/apache/xml/internal/serializer/dom3/DOMOutputImpl.java --- a/src/com/sun/org/apache/xml/internal/serializer/dom3/DOMOutputImpl.java +++ b/src/com/sun/org/apache/xml/internal/serializer/dom3/DOMOutputImpl.java @@ -19,7 +19,7 @@ * $Id: $ */ -package org.apache.xml.serializer.dom3; +package com.sun.org.apache.xml.internal.serializer.dom3; import org.w3c.dom.ls.LSOutput;
30-07-2014