Expand my Community achievements bar.

SOLVED

Eclipse/Maven configuration for AEM forms

Avatar

Level 4

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)

1 Accepted Solution

Avatar

Correct answer by
Level 10

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.

View solution in original post

2 Replies

Avatar

Correct answer by
Level 10

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.

Avatar

Level 4

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.