gb-jira
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.g2forge.gearbox</groupId>
<artifactId>gb-jira</artifactId>
<version>0.0.12</version>
</dependency><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>gb-jira</artifactId>
<parent>
<groupId>com.g2forge.gearbox</groupId>
<artifactId>gb-project</artifactId>
<version>0.0.12</version>
<relativePath>../gb-project/pom.xml</relativePath>
</parent>
<name>Gearbox Jira</name>
<description>A thin wrapper of helpers methods around the Atlassian Jira Java REST client, along with some helpful utilities.</description>
<repositories>
<repository>
<id>atlassian-public</id>
<url>https://m2proxy.atlassian.com/repository/public</url>
</repository>
<repository>
<id>atlassian-packages</id>
<url>https://packages.atlassian.com/maven-public/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>com.g2forge.alexandria</groupId>
<artifactId>ax-command</artifactId>
<version>${alexandria.version}</version>
</dependency>
<dependency>
<groupId>com.g2forge.alexandria</groupId>
<artifactId>ax-wizard</artifactId>
<version>${alexandria.version}</version>
</dependency>
<dependency>
<groupId>com.g2forge.alexandria</groupId>
<artifactId>ax-log</artifactId>
<version>${alexandria.version}</version>
</dependency>
<!-- Don't even ask about the black magic necessary to find these dependencies -->
<!-- ...and do be careful when updating versions. -->
<dependency>
<groupId>com.atlassian.jira</groupId>
<artifactId>jira-rest-java-client-core</artifactId>
<version>5.2.7</version>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>io.atlassian.fugue</groupId>
<artifactId>fugue</artifactId>
<version>5.0.0</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${jackson.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-yaml</artifactId>
<version>${jackson.version}</version>
</dependency>
</dependencies>
</project>