manash
manash

Reputation: 7106

Integrating JIRA to Maven: which URL?

I want to configure a maven project to use JIRA but I don't know which URL to use in the element. I precise that I use an on-demand version of JIRA so I have an URL like https://company.atlassian.net/browse/CDR.

Thanks

Upvotes: 2

Views: 3156

Answers (1)

Thomas Traude
Thomas Traude

Reputation: 850

Do you mean the <issueManagement> element in the pom.xml as described here: http://maven.apache.org/ref/3.0.3/maven-model/maven.html#class_issueManagement

For example:

<project>
...
    <issueManagement>
        <system>jira</system>
        <url>https://company.atlassian.net/browse/CDR</url>
    </issueManagement>
...
</project>

Upvotes: 4

Related Questions