I want to debug com.atlassian.oauth.serviceprovider.internal.servlet.OAuthFilter. But it is showing Source Not Found for this filter. How to bring the source by adding dependency in pom.xml. Right now I have following entry in pom.xml
<dependency>
<groupId>com.atlassian.jira</groupId>
<artifactId>jira-api</artifactId>
<version>${jira.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.atlassian.jira</groupId>
<artifactId>jira-core</artifactId>
<version>${jira.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.atlassian.templaterenderer</groupId>
<artifactId>atlassian-template-renderer-api</artifactId>
<version>${template.renderer.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.atlassian.plugins.rest</groupId>
<artifactId>atlassian-rest-common</artifactId>
<version>3.4.6</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.atlassian.sal</groupId>
<artifactId>sal-api</artifactId>
<version>3.1.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.atlassian.plugin</groupId>
<artifactId>atlassian-spring-scanner-annotation</artifactId>
<version>${atlassian.spring.scanner.version}</version>
<scope>provided</scope>
</dependency>
with jira.version=7.7.1. What extra entry do I need to make to get the source code of OAuthFilter
Hello,
You should download the source code of Jira and then attach this source code in your IDE.
https://confluence.atlassian.com/jirakb/download-jira-source-code-800307235.html
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.