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

Adding a New Project

To add a new project to the new project wizard, you need to decide the invocation point for the plug-in. Ideally, the option to create a new mediator project should be listed under File > New in Eclipse. There is a built-in extension point in Eclipse to add an entry to this menu. To implement this, add the following to the plugin.xml file of your plug-in:

<extension point="org.eclipse.ui.newWizards">
		<wizard name="Mediator Project" 
category="org.wso2.developerstudio.eclipse.capp.project/org.wso2.developerstudio.eclipse.extensions/org.wso2.developerstudio.eclipse.extensions.project.types"
class="org.wso2.developerstudio.eclipse.artifact.mediator.ui.wizard.CustomMediatorCreationWizard"
			wizardManifest="project_wizard.xml"
			id="org.wso2.developerstudio.eclipse.artifact.newmediatorartifact"
			project="true" icon="icons/new-mediator-16x16.png">
			<description>Mediator Project</description>
		</wizard>
</extension>

A new entry is added in the new project creation dialog box in Eclipse as shown below.

To understand more about the in-built Eclipse extension points, see the CDT Extension Points section in the Eclipse documentation.

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