[jira] [Commented] (JENA-1476) Stop using javax.xml.bind.DatatypeConverter

2018-02-05 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/JENA-1476?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16352994#comment-16352994
 ] 

ASF GitHub Bot commented on JENA-1476:
--

Github user asfgit closed the pull request at:

https://github.com/apache/jena/pull/351


> Stop using javax.xml.bind.DatatypeConverter
> ---
>
> Key: JENA-1476
> URL: https://issues.apache.org/jira/browse/JENA-1476
> Project: Apache Jena
>  Issue Type: Task
>Affects Versions: Jena 3.6.0
>Reporter: Andy Seaborne
>Priority: Major
>
> {{javax.xml.bind}} is not available by default in Java9.
> Jena's use is only hex/base64 translation.
> commons-codec has the necessary code.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (JENA-1476) Stop using javax.xml.bind.DatatypeConverter

2018-02-05 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/JENA-1476?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16352992#comment-16352992
 ] 

ASF subversion and git services commented on JENA-1476:
---

Commit e032ed770419ac36de4f7703bf914ab5e7ba67fe in jena's branch 
refs/heads/master from [~andy.seaborne]
[ https://git-wip-us.apache.org/repos/asf?p=jena.git;h=e032ed7 ]

JENA-1476: Switch javax.xml.bind.DatatypeConverter to commons-codec


> Stop using javax.xml.bind.DatatypeConverter
> ---
>
> Key: JENA-1476
> URL: https://issues.apache.org/jira/browse/JENA-1476
> Project: Apache Jena
>  Issue Type: Task
>Affects Versions: Jena 3.6.0
>Reporter: Andy Seaborne
>Priority: Major
>
> {{javax.xml.bind}} is not available by default in Java9.
> Jena's use is only hex/base64 translation.
> commons-codec has the necessary code.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (JENA-1476) Stop using javax.xml.bind.DatatypeConverter

2018-02-05 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/JENA-1476?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16352993#comment-16352993
 ] 

ASF subversion and git services commented on JENA-1476:
---

Commit f1ed0e2b7530aae74194e0cc6cb2996a10b1d00f in jena's branch 
refs/heads/master from [~andy.seaborne]
[ https://git-wip-us.apache.org/repos/asf?p=jena.git;h=f1ed0e2 ]

JENA-1476: Merge commit 'refs/pull/351/head' of github.com:apache/jena

This closes #351.


> Stop using javax.xml.bind.DatatypeConverter
> ---
>
> Key: JENA-1476
> URL: https://issues.apache.org/jira/browse/JENA-1476
> Project: Apache Jena
>  Issue Type: Task
>Affects Versions: Jena 3.6.0
>Reporter: Andy Seaborne
>Priority: Major
>
> {{javax.xml.bind}} is not available by default in Java9.
> Jena's use is only hex/base64 translation.
> commons-codec has the necessary code.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (JENA-1476) Stop using javax.xml.bind.DatatypeConverter

2018-02-03 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/JENA-1476?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16351546#comment-16351546
 ] 

ASF GitHub Bot commented on JENA-1476:
--

Github user afs commented on the issue:

https://github.com/apache/jena/pull/351
  
The use by Jena is quite simple, string encoding for base64 and hex binary, 
and is covered by commons-codec.

This PR adds commons-codec as a dependency for jena-core - it was already a 
managed dependency, used in jena-text.


> Stop using javax.xml.bind.DatatypeConverter
> ---
>
> Key: JENA-1476
> URL: https://issues.apache.org/jira/browse/JENA-1476
> Project: Apache Jena
>  Issue Type: Task
>Affects Versions: Jena 3.6.0
>Reporter: Andy Seaborne
>Priority: Major
>
> {{javax.xml.bind}} is not available by default in Java9.
> Jena's use is only hex/base64 translation.
> commons-codec has the necessary code.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (JENA-1476) Stop using javax.xml.bind.DatatypeConverter

2018-02-03 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/JENA-1476?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16351545#comment-16351545
 ] 

ASF GitHub Bot commented on JENA-1476:
--

GitHub user afs opened a pull request:

https://github.com/apache/jena/pull/351

JENA-1476: Switch javax.xml.bind.DatatypeConverter to commons-codec



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/afs/jena remove-jaxb

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/jena/pull/351.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #351


commit e032ed770419ac36de4f7703bf914ab5e7ba67fe
Author: Andy Seaborne 
Date:   2018-02-03T15:50:25Z

JENA-1476: Switch javax.xml.bind.DatatypeConverter to commons-codec




> Stop using javax.xml.bind.DatatypeConverter
> ---
>
> Key: JENA-1476
> URL: https://issues.apache.org/jira/browse/JENA-1476
> Project: Apache Jena
>  Issue Type: Task
>Affects Versions: Jena 3.6.0
>Reporter: Andy Seaborne
>Priority: Major
>
> {{javax.xml.bind}} is not available by default in Java9.
> Jena's use is only hex/base64 translation.
> commons-codec has the necessary code.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (JENA-1476) Stop using javax.xml.bind.DatatypeConverter

2018-02-03 Thread Andy Seaborne (JIRA)

[ 
https://issues.apache.org/jira/browse/JENA-1476?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16351544#comment-16351544
 ] 

Andy Seaborne commented on JENA-1476:
-

The package `javax.xml.bind` is considered part of JavaEE and is not available 
by default as a module for JavaSE in Java9. It will be removed from JavaSE in 
Java11 ([JEP 320](http://openjdk.java.net/jeps/320).

> Stop using javax.xml.bind.DatatypeConverter
> ---
>
> Key: JENA-1476
> URL: https://issues.apache.org/jira/browse/JENA-1476
> Project: Apache Jena
>  Issue Type: Task
>Affects Versions: Jena 3.6.0
>Reporter: Andy Seaborne
>Priority: Major
>
> {{javax.xml.bind}} is not available by default in Java9.
> Jena's use is only hex/base64 translation.
> commons-codec has the necessary code.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)