Hi,
I like to update the default values of some properties in the atlassian-plugin.xml
Those are my properties in the atlassian-plugin.xml:
<properties>
<property>
<key>periodName</key>
<name>portlet.chart.field.periodname.name</name>
<description>portlet.chart.field.periodname.description</description>
<type>select</type>
<default>weekly</default>
<values>
<value>
<key>daily</key>
<value>portlet.chart.field.periodname.daily</value>
</value>
<value>
<key>weekly</key>
<value>portlet.chart.field.periodname.weekly</value>
</value>
<value>
<key>monthly</key>
<value>portlet.chart.field.periodname.monthly</value>
</value>
<value>
<key>quarterly</key>
<value>portlet.chart.field.periodname.quarterly</value>
</value>
<value>
<key>yearly</key>
<value>portlet.chart.field.periodname.yearly</value>
</value>
</values>
</property>
<property>
<key>periodsprevious</key>
<name>myName</name>
<description>myDescription</description>
<type>long</type>
<default>52</default>
</property>
</properties>
I changed the default values from “daily” to “weekly” and from “30” to “52”.
After running “atlas-clean && atlas-package” and installing the plugin, the default values “daily” and “30” are still set in the report. What am I missing? Does Jira cache the data from atlassian-plugin.xml?
Thanks in advance.