Github user matthiasblaesing commented on the issue:
https://github.com/apache/incubator-netbeans/pull/97
The external files directory does not directly correspond with installed binaries. They
are copied over and can be renamed when doing this. I had a look in libs.jaxb and would say,
with the download task modified, this changeset should cover the external binaries:
```patch
# This patch file was generated by NetBeans IDE
# It uses platform neutral UTF-8 encoding and \n newlines.
--- a/libs.jaxb/external/binaries-list
+++ b/libs.jaxb/external/binaries-list
@@ -14,7 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
-387BE740EAEF52B3F6E6EE2F140757E7632584CE jaxb-impl.jar
-F4DB465F207907A2406B0BF5C8FFEE22A5C3E4E3 jaxb1-impl.jar
-C3787DAB0DDFBD9E98086ED2F219859B0CB77EF7 jaxb-xjc.jar
-27FAE927B5B9AE53A5B0ED825575DD8217CE7042 jaxb-api-doc.zip
+387BE740EAEF52B3F6E6EE2F140757E7632584CE com.sun.xml.bind:jaxb-impl:2.2.5-2
+F4DB465F207907A2406B0BF5C8FFEE22A5C3E4E3 com.sun.xml.bind:jaxb1-impl:2.2.5-2
+C3787DAB0DDFBD9E98086ED2F219859B0CB77EF7 com.sun.xml.bind:jaxb-xjc:2.2.5-2
+DEA09C627DA5AA8FB0E6B1E39F85B2AE6AE9C3E7 javax.xml.bind:jaxb-api:2.2.5:javadoc
# This patch file was generated by NetBeans IDE
# It uses platform neutral UTF-8 encoding and \n newlines.
--- a/libs.jaxb/nbproject/project.properties
+++ b/libs.jaxb/nbproject/project.properties
@@ -26,11 +26,11 @@
# pack200 bug in JDK 7 (#7131266)
pack200.excludes=modules/ext/jaxb/jaxb-xjc.jar
-release.external/jaxb-impl.jar=modules/ext/jaxb/jaxb-impl.jar
-release.external/jaxb1-impl.jar=modules/ext/jaxb/jaxb1-impl.jar
-release.external/jaxb-xjc.jar=modules/ext/jaxb/jaxb-xjc.jar
+release.external/jaxb-impl-2.2.5-2.jar=modules/ext/jaxb/jaxb-impl.jar
+release.external/jaxb1-impl-2.2.5-2.jar=modules/ext/jaxb/jaxb1-impl.jar
+release.external/jaxb-xjc-2.2.5-2.jar=modules/ext/jaxb/jaxb-xjc.jar
# JAXB Javadoc
-release.external/jaxb-api-doc.zip=docs/jaxb-api-doc.zip
+release.external/jaxb-api-2.2.5-javadoc.jar=docs/jaxb-api-doc.zip
sigtest.gen.fail.on.error=false
```
---
|