tomdesair / tus-java-server

Library to receive tus v1.0.0 file uploads in a Java server environment
MIT License
128 stars 60 forks source link

JDK11 support #14

Closed nschwalbe closed 5 years ago

nschwalbe commented 5 years ago

In JDK11 the javax.xml.bind package was removed. You use the javax.xml.bind.DatatypeConverter for Base64 encoding. Maybe you can replace this with java.util.Base64 from Java 8 or other implementation?

nschwalbe commented 5 years ago

Thanks for merging!