Skip to content
/ igv Public
forked from igvteam/igv

Commit

Permalink
Holding on to uio-bmi/crypt4gh#85 being resolved. @kjetilkl happy to …
Browse files Browse the repository at this point in the history
…help with the github actions workflow for maven if you need
  • Loading branch information
brainstorm committed Jul 21, 2023
1 parent fc4b955 commit aad10a6
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 1 deletion.
10 changes: 9 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,11 @@ buildscript {

repositories {
mavenCentral()
//
// Github package repos need tokens set to read:packages, not using until unauthenticated access is implemented.
// maven {
// url = uri("https://maven.pkg.github.com/uio-bmi/crypt4gh")
// }
}

sourceSets {
Expand Down Expand Up @@ -124,7 +129,10 @@ dependencies {
[group: 'software.amazon.awssdk', name: 'cognitoidentity', version: '2.16.7'],
[group: 'software.amazon.awssdk', name: 'sts', version: '2.16.7'],
[group: 'software.amazon.awssdk', name: 's3', version: '2.16.7'],
[group: 'software.amazon.awssdk', name: 'sso', version: '2.16.7']
[group: 'software.amazon.awssdk', name: 'sso', version: '2.16.7'],

// Crypt4GH
//[group: 'no.uio.ifi', name: 'crypt4gh', version: '2.4.7'],
)

testImplementation(
Expand Down
Binary file added lib/crypt4gh-2.4.7.jar
Binary file not shown.
3 changes: 3 additions & 0 deletions src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,7 @@
requires software.amazon.awssdk.http;
requires software.amazon.awssdk.utils;
requires com.fasterxml.jackson.core;

// Crypt4gh
requires no.uio.ifi.crypt4gh;
}

0 comments on commit aad10a6

Please sign in to comment.