Migration Problems
You might encounter errors when you migrate ActiveMatrix BusinessWorks Plug-in Development Kit 6.2.1 or older version to 6.3.1, you can go over the listed scenarios for troubleshooting.
Scenarios | Reason/Workaround |
---|---|
The Runtime plug-in displays the following compilation errors: JAXBContext cannot be resolved JAXBElement cannot be resolved JAXBException cannot be resolved import javax.xml.bind cannot be resolved |
The javax.xml.bind package has been removed from Java 11, so add the following import package statement in your Runtime plug-in's MANIFEST.MF. javax.xml.bind;version="[2.0.0,3.0.0)", javax.xml.bind.annotation;version="[2.0.0,3.0.0)", |
The plug-in project displays the following compilation errors: Syntax error, annotations are only available if source level is 1.5 or greater '<>' operator is not allowed for source level below 1.7 |
|