Difference between revisions of "Java8"

From BITPlan Wiki
Jump to navigation Jump to search
Line 10: Line 10:
 
* [https://travis-ci.org/WolfgangFahl/Mediawiki-Japi/builds/595988729?utm_medium=notification&utm_source=email Travis build suddenly fails]
 
* [https://travis-ci.org/WolfgangFahl/Mediawiki-Japi/builds/595988729?utm_medium=notification&utm_source=email Travis build suddenly fails]
 
=== Problem ===
 
=== Problem ===
Oracle decided to remove APIs
 
 
<source lang='bash'>
 
<source lang='bash'>
 
Mediawiki-Japi/src/main/java/com/bitplan/mediawiki/japi/api/Page.java:[34,33] package javax.xml.bind.annotation does not exist
 
Mediawiki-Japi/src/main/java/com/bitplan/mediawiki/japi/api/Page.java:[34,33] package javax.xml.bind.annotation does not exist
 
</source>
 
</source>
 +
=== Diagnosis ===
 +
* https://stackoverflow.com/questions/43574426/how-to-resolve-java-lang-noclassdeffounderror-javax-xml-bind-jaxbexception-in-j
 +
Oracle decided to remove APIs
  
 
=== Solution ===
 
=== Solution ===

Revision as of 15:42, 10 October 2019

Why Java 8 is not dead

  • Because Java 9 breaks things
  • Because Java 10 breaks more things
  • Because Java 11 breaks even more things
  • Because Java >=12 will surely break more of the stuff that has been working perfectly for years

And the cost/benefit relation of moving along Oracle's ideas seems not worthwile.

Examples

Mediawiki-Japi

Problem

Mediawiki-Japi/src/main/java/com/bitplan/mediawiki/japi/api/Page.java:[34,33] package javax.xml.bind.annotation does not exist

Diagnosis

Oracle decided to remove APIs

Solution

Do not use Oracle

diff --git a/.travis.yml b/.travis.yml
 # this is a java project using maven
 language: java
+# make sure things keep working see http://wiki.bitplan.com/index.php/Java8
+jdk: openjdk8