Skip to content

Commit

Permalink
[GLT-4328] switch to OICR-GSI fork of JIRA client library (#248)
Browse files Browse the repository at this point in the history
  • Loading branch information
djcooke authored Dec 19, 2024
1 parent d3239b8 commit b2ae4ca
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
1 change: 1 addition & 0 deletions changes/fix_jira.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Error creating JIRA Service
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@

<dependencies>
<dependency>
<groupId>com.atlassian.jira</groupId>
<groupId>ca.on.oicr.gsi</groupId>
<artifactId>jira-rest-java-client-core</artifactId>
<version>5.2.4</version>
<version>6.0.2</version>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
Expand Down
13 changes: 13 additions & 0 deletions src/test/java/ca/on/oicr/gsi/dimsum/service/JiraServiceTest.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
package ca.on.oicr.gsi.dimsum.service;

import org.junit.jupiter.api.Test;

public class JiraServiceTest {

@Test
public void testCreate() {
// Construct the JiraService to ensure that runtime dependencies are satisfied
new JiraService("http://localhost/jira", "test", "test", null);
}

}

0 comments on commit b2ae4ca

Please sign in to comment.