Install Eclipse

Install the latest version of eclipse

Create your first project

Archetype is a Maven project templating toolkit. An archetype is defined as an original pattern or model from which all other things of the same kind are made. The name fits as we are trying to provide a system that provides a consistent means of generating Maven projects. Archetype helps authors create Maven project templates for users, and provides users with the means to generate parameterized versions of those project templates.
To create your first maven project, please follow the following steps:

  • Create a new folder called aemformsbundles in your C drive
  • Open a command prompt and navigate to c:\aemformsbundles
  • Run the following command in your command prompt
mvn -B org.apache.maven.plugins:maven-archetype-plugin:3.2.1:generate -D archetypeGroupId=com.adobe.aem -D archetypeArtifactId=aem-project-archetype -D archetypeVersion=36 -D appTitle="My Site" -D appId="mysite" -D groupId="com.mysite" -D aemVersion=6.5.13

On successful completion you should see a build success message in your command window

Create eclipse project from your maven project

  • Change your working directory to mysite
  • Execute mvn eclipse:eclipse from the command line. The command reads your pom file and creates Eclipse projects with correct metadata so that Eclipse understands project types, relationships, classpath, etc.

Import the project into eclipse

Launch Eclipse

Go to File -> Import and select Existing Maven Projects as shown here

data-source

Click Next

Select the c:\aemformsbundles\mysite by clicking the Browse button

data-source

NOTE
You may select to import the appropriate modules depending on your needs. Select and import the core module only, if you are only going to create Java code in your project.

Click Finish to start the import process

Project is imported into Eclipse and you see a number of mysite.xxxx folders

Expand the src/main/java under the mysite.core folder. This is the folder in which you are writing most of your code.

data-source

Include AEMFD Client SDK

You need to include the AEMFD client sdk in your project to take advantage of various services that come with AEM Forms. Please refer AEMFD Client SDK to include the appropriate client SDK in your Maven project. You have to include the AEM FD Client SDK in the dependencies section of pom.xml of the core project as shown below.

<dependency>
    <groupId>com.adobe.aemfd</groupId>
    <artifactId>aemfd-client-sdk</artifactId>
    <version>6.0.122</version>
</dependency>

To build your project, please follow the following steps:

  • Open command prompt window
  • Navigate to c:\aemformsbundles\mysite\core
  • Execute the command mvn clean install -PautoInstallBundle
    The above command builds and installs the bundle in the AEM server running on http://localhost:4502. The bundle is also available on the file system at
    C:\AEMFormsBundles\mysite\core\target and can be deployed using Felix web console
Previous pagePopulate form with Azure Blob
Next page2 - Create OSGi Service

Experience Manager