user5733033
user5733033

Reputation: 55

Upgrading to aem62 issue

Attempting to migrate from aem6.0SP3 to 6.2 throws an error while compiling our project:

missing requirement [ewcs.my-bundle [474](R 474.3)] osgi.wiring.package; (&(osgi.wiring.package=com.day.cq.commons)(version>=5.7.0)(!(version>=6.0.0)))
Unresolved requirements: [[ewcs.my-bundle [474](R 474.3)] osgi.wiring.package; (&(osgi.wiring.package=com.day.cq.commons)(version>=5.7.0)(!(version>=6.0.0)))]

We do not see the library referenced in our pom.xml even when we do dependency:tree, any suggestion?

Update: missing twitter4j v.3.0.5 but mvn repo does not have it

enter image description here

Upvotes: 0

Views: 239

Answers (1)

Imran Saeed
Imran Saeed

Reputation: 3444

Make sure you are using the latest ACE Commons package for 6.2. You can download the relevant version from:

https://repo.adobe.com/nexus/content/repositories/releases/com/adobe/aem/uber-jar/

Note that there is a new version of Uber-Jar for 6.2 SP1 so make sure you are using the correct version.

Twitterfj is not a part of Adobe public repo but if you really want it, you can download it from here:

https://github.com/Adobe-Consulting-Services/com.adobe.acs.bundles.twitter4j/releases/tag/com.adobe.acs.bundles.twitter4j-1.0.0

More information is available at:

http://adobe-consulting-services.github.io/acs-aem-commons/features/twitter.html

Upvotes: 1

Related Questions