Dependencies for the below classes

Bhaskara Garnimitta July 6, 2016

Hi All,

I am working on to write Junit tests.

How to get those jar files?

ProjectManager.java

TemplateRenderer.java

LoginUriProvider.java

 UserManager.java

SearchService.java

 

Pom.xml

 

<dependency>
<groupId>com.atlassian.jira</groupId>
<artifactId>jira-api</artifactId>
<version>${jira.version}</version>
<scope>provided</scope>
</dependency>

 

bhaskara10@gmail.com

1 answer

0 votes
Petar Petrov (Appfire)
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
July 6, 2016

Without the packages it is difficult to say what you are looking for, but some of those are available in jira-api, others come from the SAL API and the template renderer API:

&lt;dependency&gt;
			&lt;groupId&gt;com.atlassian.sal&lt;/groupId&gt;
			&lt;artifactId&gt;sal-api&lt;/artifactId&gt;
			&lt;version&gt;${sal.api.version}&lt;/version&gt;
			&lt;scope&gt;provided&lt;/scope&gt;
		&lt;/dependency&gt;
		&lt;dependency&gt;
			&lt;groupId&gt;com.atlassian.templaterenderer&lt;/groupId&gt;
			&lt;artifactId&gt;atlassian-template-renderer-api&lt;/artifactId&gt;
			&lt;version&gt;${atlassian.templaterenderer.version}&lt;/version&gt;
			&lt;scope&gt;provided&lt;/scope&gt;
		&lt;/dependency&gt;

Suggest an answer

Log in or Sign up to answer