<atlassian-plugin key="${project.groupId}.${project.artifactId}" name="${project.name}">
When I use this type of reference in my atlassian-plugin.xml descriptor it does not read the values from pom.xml
What needs to be configured to get this to work?
Community moderators have prevented the ability to post new answers.
Resource Filtering needs to be enabled in your pom.xml:
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
If created your plugin using the Atlassian SDK, this should be set for you. (atlas-create-<product>-plugin)
In some cases you have to do it by hand, so I wrote a little guide once: http://confluence.atlassian.com/x/MwUpDg
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.