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

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

Mark Solution

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

해결됨

Is there a way we can import OOTB components into eclipse.

Avatar

Level 9

Hi All,

Currently in our project[i.e, in the eclipse setup], we have our custom components with no OOTB ones. Is there a way we can get OOTB ones from CRXDE into our eclipse.?

Any thoughts on this will be helpful.

1 채택된 해결책 개

Avatar

정확한 답변 작성자:
Level 9

You can also use VLT tool to directly export/checkout the OOTB component in your workspace

vlt --credentials admin:admin co http://localhost:4502/crx/server/jcr%3aroot/<PATH OF COMPONENT> <PATH OF ECLIPSE WORKSPACE>

원본 게시물의 솔루션 보기

3 답변 개

Avatar

Level 10

Hi,

Make sure you give the exact path in the project, filter.xml file. Like for example

<workspaceFilter version="1.0"> <filter root="/libs/foundation"> <include pattern="/libs/foundation/components/(.*)?" /> </filter> </workspaceFilter>

And after that, you need to build the project and do vault up from CRXDE Lite to eclipse. Then all the components will be available in eclipse.

Hope this helps!

Thanks,
Ratna Kumar.

Avatar

정확한 답변 작성자:
Level 9

You can also use VLT tool to directly export/checkout the OOTB component in your workspace

vlt --credentials admin:admin co http://localhost:4502/crx/server/jcr%3aroot/<PATH OF COMPONENT> <PATH OF ECLIPSE WORKSPACE>

Avatar

Level 9

Hi Hemant/Ratna,

Thank you for your replies.