Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Another thing to work on is the atlassian-plugin.xml file or the add-on descriptor. Create an empty add-on descriptor, like this:

Code Block
languagexml
titleatlassian-plugin.xml
linenumberstrue
<atlassian-plugin key="com.mycompany.silexample"
                  name="SIL Example"
                  plugins-version="2">
    <plugin-info>
        <description>SIL Basic Example</description>
        <version>${version}</version>
        <vendor name="cPrime, Inc." url="https://www.cprime.com/" />
        <param name="plugin-icon">images/generic.png</param>
        <param name="plugin-logo">images/generic.png</param>
        <param name="vendor-icon">images/keplerLogo.png</param>
        <param name="vendor-logo">images/keplerLogo.png</param>
        <param name="atlassian-data-center-compatible">true</param>
    </plugin-info>
   
</atlassian-plugin>

...