Eclipse/Maven configuration for AEM forms | Community
Skip to main content
New Participant
October 16, 2015
Solved

Eclipse/Maven configuration for AEM forms

  • October 16, 2015
  • 2 replies
  • 2518 views

Hi,

In my author i have a bundle "Assembler Service Bundlecom.adobe.aemfd.adobe-aemfd-assembler". This bundle is version 2.0.6. How to I make use of this bundle in Eclipse/maven? I tired various setting in the bundle/POM fiile but no result. My latest trial is this

     <dependency>

          <groupId>com.adobe.aemfd</groupId>
          <artifactId>adobe-aemfd-assembler</artifactId>
          <version>2.0.6</version>
          <scope>provided</scope>
      </dependency>

Going through the https://repo.adobe.com/nexus/content/groups/public/ I cannot fin the jar file. Using the "com.adobe.livecycle" connector is not working as the package does not deploy in the AEM server (AEM 6 SP2)

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by Lokesh_Shivalingaiah

Hi Eric,

If it is your customized bundle, then add this bundle in your maven repo (.m2 folder), else add this bundle in your project's classpath explicitly.

2 replies

Lokesh_Shivalingaiah
Lokesh_ShivalingaiahAccepted solution
New Participant
October 16, 2015

Hi Eric,

If it is your customized bundle, then add this bundle in your maven repo (.m2 folder), else add this bundle in your project's classpath explicitly.

New Participant
October 16, 2015

Thanks, I manage to create a package, export the jar file, and add the jar to my maven repo. Now the bundle deploy's succesfully.