com.atlassian.confluence.content.render.xhtml.migration.exceptions.UnknownMacroMigrationException: The macro 'next_previous_links' is unknown.

Step 1: Creating the Development Project

As you begin the process of developing the Student Management sample feature, the first step is to create the project structure for your development (using Intellij IDEA editor in Ubuntu 13.04).

  1. Create a maven project with the name student-manager. This will be the main project.
    • groupId - org.wso2.carbon
    • artifactId - student-manager
    • version - 4.2.0
    • packaging - pom
    • name - WSO2 Carbon - Student Manager

     If you are using an IDE to create the project, it will auto create the source folder. Since this project is a parent project, we can delete the src folder.

  2. Now, create 3 sub maven projects inside the main project:

    • student-manager-components
      • artifactId - student-manager-components
      • packaging - pom
      • name - WSO2 Carbon - Student Manager Components
    • student-manager-features
      • artifactId - student-manager-features
      • packaging - pom
      • name - WSO2 Carbon - Student Manager Features
    • student-manager-repository
      • artifactId - student-manager-repository
      • packaging - pom
      • name - WSO2 Carbon - Student Manager Repository

    If you are using an IDE to create the projects, it will auto create the source folders. Since these projects are sub parent projects, we can delete the src folders. When adding these projects, the parent project should be updated accordingly with <modules> and the current project with <parent> tags. 

Now, go to the next step to start developing the components of the feature.

com.atlassian.confluence.content.render.xhtml.migration.exceptions.UnknownMacroMigrationException: The macro 'next_previous_links2' is unknown.