내 커뮤니티 업적 표시줄을 확대합니다.

Submissions are now open for the 2026 Adobe Experience Maker Awards.

Mark Solution

활동이 없어 이 대화는 잠겼습니다. 새 게시물을 작성해 주세요.

해결됨

POM entries for Sightly package

Avatar

Level 1

I don't find "com.adobe.cq.sightly.WCMUse" package entry in adobe and also in Maven Repository , can someone please help me about finding pom entries for this package

Note :

I can use crxde light to import "com.adobe.cq.sightly.WCMUse" and build a package, but I don't want that option, I want to import this package in eclipse

Thanks

Raja

1 채택된 해결책 개

Avatar

정확한 답변 작성자:
Employee

Hi Reinhard,

Have a look at following blog post: http://experiencedelivers.adobe.com/cemblog/en/experiencedelivers/2014/05/aem6-maven-dependencies.ht...

With AEM6 there is just one big Maven dependency that you need to add to your project, and you are good to go!

<dependency> <groupid>com.adobe.aem</groupid> <artifactid>aem-api</artifactid> <version>6.0.0.1</version> <scope>provided</scope> </dependency>

Following urls might also be useful:

원본 게시물의 솔루션 보기

3 답변 개

Avatar

Level 8

Take a look at this article: http://helpx.adobe.com/experience-manager/kb/HowToUseCQ5AsMavenRepository.html

It basically sets up your instance of AEM as a maven repository.  I've tried it with 6 this morning and it works just fine.

To find what your Maven entries are, navigate to: http://localhost:4502/system/console/depfinder and do a search for the class.  So for example, if you search for com.adobe.cq.sightly.WCMUse you'll see the result and in the far right column will be the maven dependency listing.

Just to note, for Sightly you'll need to following 2 dependencies:

<dependency>

            <groupId>com.adobe.granite</groupId>

            <artifactId>com.adobe.granite.sightly.engine</artifactId>

            <version>1.1.52</version>

            <scope>provided</scope>

        </dependency>

        <dependency>

            <groupId>com.adobe.cq.sightly</groupId>

            <artifactId>cq-wcm-sightly-extension</artifactId>

            <version>1.1.18</version>

            <scope>provided</scope>

        </dependency>

Avatar

Level 3

Hi,

I also need the the sightly and all other AEM 6.0 maven artifacts for developing. Where can I find them?

 

regards

Reinhard

Avatar

정확한 답변 작성자:
Employee

Hi Reinhard,

Have a look at following blog post: http://experiencedelivers.adobe.com/cemblog/en/experiencedelivers/2014/05/aem6-maven-dependencies.ht...

With AEM6 there is just one big Maven dependency that you need to add to your project, and you are good to go!

<dependency> <groupid>com.adobe.aem</groupid> <artifactid>aem-api</artifactid> <version>6.0.0.1</version> <scope>provided</scope> </dependency>

Following urls might also be useful: