I am currently thinking of adding a small part of JSR-310, javax.time.Duration to our library.
This currently works great.
But JSR-310 is planned to integrate in Java 8! When our Java 8 application javax.time.Duration , what happens if the standard library has a javax.time.Duration class and the same class sent with our jar file?
Will one of the classes be silently ignored? (Which one?) Will there be an error when the Java 8 VM tries to load a class from our library?
Are there any compatibility issues that I should be aware of?
source share