{namespace JIRA.Templates.About} /** * @param pluginEntry an instance of PluginAndMaterials */ {template .renderModule}

{call .pluginInfo} {param entryKey: $pluginEntry /} {/call} {if $pluginEntry.entries} {call .pluginLicenses} {param entryValue: $pluginEntry.materials /} {/call} {/if} {call .pluginConclusion} {param entryKey: $pluginEntry /} {/call}

{/template} /** * @param entryKey entry key */ {template .pluginInfo}

{$entryKey.pluginName} v{$entryKey.pluginVersion}

{if $entryKey.introductionHtml}

{$entryKey.introductionHtml|noAutoescape}

{/if} {/template} /** * @param entryKey entry key */ {template .pluginConclusion} {if $entryKey.conclusionHtml}

{$entryKey.conclusionHtml|noAutoescape}

{/if} {/template} /** * @param entryValue entry Value */ {template .pluginLicenses}

{getText('aboutpage.plugin.copyright.lgpl')}

{/template} /** * @param material the bom material */ {template .materialInfo}
  • {$material.libraryName} {if $material.urlAndGav} ({$material.mavenInfo}) {elseif $material.urlNotGav} ({$material.url}) {elseif $material.gavNotUrl} ({$material.mavenInfo}) {/if}
  • {/template}