For some background our product was compiling using FlexMojos 4.0-RC1 and Adobe Flex version 4.6. I decided to go with the least moving parts approach, which meant I made the upgrade in two steps. First I upgraded the FlexMojos version to version 6.0.1 and then I upgraded to FlexMojos 7.0.1 and Apache Flex 4.13.
Up first was the upgrade to FlexMojos 6.0.1. This version of FlexMojos supports both Adobe and Apache SDK's, but due to difficulties in supporting two different group ids, it uses the com.adobe groupID for all types of artifacts. I followed details available on FlexMojos 6.0 wiki page and its child page specifically for migrating to FlexMojos 6.
- Upgrade to Maven 3.0.5 (required for FM6)
- Changed the FlexMojos version property in my parent pom file to 6.0.1
- Changed the group id for the FlexMojos plugin from org.sontaype.flexmojos to net.flexmojos.oss
- Update the playerglobal dependency
- Group ID = com.adobe.flash.framework
- Artifact ID = playerglobal
- Remove version that points to Flex SDK
- Update classifier tags to version
Next I updated my various pom files for FlexMojos 7.0.1 and Apache Flex 4.13. Here are the steps:
- Update the flexmojo.version property in the root pom to 7.0.1
- Update the flex sdk version property in the root pom to 4.13.0.20140701
- Updated the old groupID of com.adobe.flex to org.apache.flex for several dependencies. In my case there were some instances where the old group id was valid because I had some automation libraries that I still don't have artifacts for and also for some exclusions.
- Remove the license jar dependency.
- Updated the flexframework artifact name to framework and fixed the group id for it to org.apache.flex
- Updated the theme dependency so it doesn't have a classifier and instead of the type being css it is now swc.
- Updated the theme dependency's group id to org.apache.flex.framework.themes
- Updated all the Flex dependencies from the scope of "caching" to "rsl", because there aren't any swz files for Apache Flex libraries
- Updated the group id for all automation libraries to org.apache.flex.framework.automation
- Remove the "_rb" from the automation artifact names and added a new classifier of ".rb"
When loading the application in a browser I received the dreaded VerifyError 1053 "invalid override of the removeItem() method. As it turns out the third party library I was using had a removeItem() method on a class that extended from ListCollectionView AND in the same method was added to Apache Flex 4.10.
Of course I didn't just take the error message at its face value and spent a few days trying to figure out the problem. Once I did it was just a matter of downloading the source for the specific version of the third party library, changing the name of the method, rebuilding a "new" version and deploying it to my maven repository. Of course if I didn't have access to the source I would have been in trouble. After that the application behaved as it did before the upgrade.
Adobe Flex |Training|Job Support|Corporate|+91-741-626-7887 Flex 4 and LiveCycle Data Services|Adobe Product Training |AIR 2 and Flex 4 |Job Support at Layman Learning www.laymanlearning.com --- Send Enquiry --- hr@laymanlearning.com
ReplyDelete