Esta conversa foi bloqueada devido à inatividade. Crie uma nova publicação.
Nível 1
Nível 2
Faça login na Comunidade
Faça logon para exibir todas as medalhas
Esta conversa foi bloqueada devido à inatividade. Crie uma nova publicação.
Hi,
While following helpx article:
Developing your first Experience Manager 6.3 Components
after importing the package into aem 6.3 instance. Getting below error in the OSGI Bundle.
getting org.apache.sling.models.annotations,version=[1.5,2) -- Cannot be resolved
Attaching the screenshot as well.
Does aem needs some other version than what is available in pom.xml. Pom.xml has below dependency being used:
<dependency>
<groupId>biz.aQute.bnd</groupId>
<artifactId>annotation</artifactId>
<version>2.4.0</version>
<scope>provided</scope>
</dependency>
Thanks,
Neha
Solucionado! Ir para a Solução.
Hi,
Yes Jorg is absolutely correct. I have re-tested the article and AEM 6.3 comes with the version 1.4.0 in Sling models annotation. Below is the screenshot for the same.
Hope this helps!
~Ratna.
Visualizações
respostas
Total de curtidas
Visualizações
respostas
Total de curtidas
Did you follow the article exactly - we tested this and never encountered this issue? Did you use Lazybones to setup project?
Visualizações
respostas
Total de curtidas
This also bring up a great point - we will also add this artilce to our YouTube channel so community members can see all steps in action.
Visualizações
respostas
Total de curtidas
Hi,
AEM 6.3 comes with org.apache.sling.models.annotations in version 1.4.0. (exported by Bundle Sling Models API version 1.3.2). Your project obviously compiles against a newer version of the Sling Models bundle. Please check your dependencies.
Jörg
Hi,
Yes Jorg is absolutely correct. I have re-tested the article and AEM 6.3 comes with the version 1.4.0 in Sling models annotation. Below is the screenshot for the same.
Hope this helps!
~Ratna.
Visualizações
respostas
Total de curtidas
Thanks all for update.
Issue got resolved by updating dependency for:
<dependency>
<groupId>org.apache.sling</groupId>
<artifactId>org.apache.sling.models.api</artifactId>
<version>1.3.2</version>
</dependency>
in pom.xml. Earlier I had placed version 1.3.4 which was causing issue.
Visualizações
Curtida
respostas
Visualizações
Curtida
respostas