Has anyone else been able to make a JqlClauseBuilder? I think it's supposed to be in the com.atlassian.jira.jql but the documentation doesn't say what artifactId to use. Googling "atlassian jql maven" etc. returns nothing helpful.
pom.xml repos:
<repositories>
<repository>
<id>atlassian-public</id>
<url>https://maven.atlassian.com/repository/public</url>
<snapshots>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
<checksumPolicy>warn</checksumPolicy>
</snapshots>
<releases>
<enabled>true</enabled>
<checksumPolicy>warn</checksumPolicy>
</releases>
</repository>
</repositories>
pom.xml dependencies:
<dependencies>
<dependency>
<groupId>com.atlassian.jira</groupId>
<artifactId>jira-rest-java-client-core</artifactId>
<version>${jrjc.version}</version>
</dependency>
</dependencies>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.