Where to find and change project.description and other values?

I used atlas-create-jira-plugin to create a skeleton plugin. Inside the atlassian-plugin.xml, there is this section:

<plugin-info>
    <description>${project.description}</description>
    <version>${project.version}</version>
    <vendor name="${project.organization.name}" url="${project.organization.url}" />
    <param name="plugin-icon">images/pluginIcon.png</param>
    <param name="plugin-logo">images/pluginLogo.png</param>
</plugin-info>

I am not able to find a file in which project.description and other values can be modified.

I am new to JIRA. Thanks for any help!

1 Like

${project.xxxxxx} comes from the maven pom.xml file. You can either change the value there or place the values in the atlassian-plugin.xml

2 Likes

I used Eclipse and was unable to find any string named project.description in the project.

Thanks for your help!

Any time. :slight_smile: Would you mind checking the answer as the answer that answered the question if it did? That way the next person that comes after this will quickly be able to see the right answer. (I’m a strong believer in paying it forward :slight_smile: ) .

1 Like

daniel, I checked the “Solution” in your earlier post. Did I do it right?

Yepp. That worked! Future decks thank you :grin: