Developer Guide
The Developer Guide explains how to extend Scroll with your own plugins.
| To develop a Scroll plugins it is highly recommended to make yourself familiar with Confluence plugin development. To do so, we recommend the Confluence Development Hub. |
| If you come across any issues, please email support@k15t.com. |
Overview
This is a quick overview for how to implement a Scroll plugin:
- Create standard Confluence Plugin, as described in the Atlassian SDK Documentation. This requires the following steps:
- Download Atlassian SDK.
- Setup the Atlassian SDK (includes installation of Java 1.5 or Java 6).
- Create a Plugin-Skeleton using atlas-create-confluence-plugin.
- Create an Atlassian plugin descriptor (atlassian-plugin.xml) like this:
<atlassian-plugin key=....> : <resource type="scroll-plugin" name="My Scroll Plugin" location="scroll-plugin.xml" /> : </atlassian-plugin>
- Create the Scroll Plugin descriptor called scroll-plugin.xml and put it next to the atlassian-plugin.xml. More information about the Scroll Plugin descriptor.
- Deploy the plugin like a Confluence plugin (of course, you need to have Scroll installed, too)

Add Comment