Skip to content

Commit

Permalink
Switch transitive dependencies from runtime to compile
Browse files Browse the repository at this point in the history
  • Loading branch information
kshakir committed Nov 16, 2023
1 parent 7c65e3c commit a3d2ab0
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ buildscript {
}

plugins {
id "java"
id 'java-library'
id 'maven-publish'
id 'signing'
id 'jacoco'
Expand Down Expand Up @@ -61,22 +61,22 @@ ensureBuildPrerequisites(buildPrerequisitesMessage)

final htsjdkVersion = System.getProperty('htsjdk.version', '4.0.2')
dependencies {
implementation('com.intel.gkl:gkl:0.8.11') {
api('com.intel.gkl:gkl:0.8.11') {
exclude module: 'htsjdk'
}
implementation 'org.broadinstitute:gatk-native-bindings:1.0.0' //this should be redundant when GKL is updated past 0.8.11

implementation 'com.google.guava:guava:32.1.1-jre'
implementation 'org.apache.commons:commons-math3:3.6.1'
implementation 'org.apache.commons:commons-collections4:4.4'
implementation 'com.github.samtools:htsjdk:' + htsjdkVersion
implementation 'org.broadinstitute:barclay:5.0.0'
implementation 'org.apache.logging.log4j:log4j-api:2.20.0'
implementation 'org.apache.logging.log4j:log4j-core:2.20.0'
implementation 'org.openjdk.nashorn:nashorn-core:15.4'
implementation 'org.apache.commons:commons-lang3:3.12.0'
implementation 'com.google.cloud:google-cloud-nio:0.127.0'
implementation 'commons-io:commons-io:2.11.0'
api 'org.broadinstitute:gatk-native-bindings:1.0.0' //this should be redundant when GKL is updated past 0.8.11

api 'com.google.guava:guava:32.1.1-jre'
api 'org.apache.commons:commons-math3:3.6.1'
api 'org.apache.commons:commons-collections4:4.4'
api 'com.github.samtools:htsjdk:' + htsjdkVersion
api 'org.broadinstitute:barclay:5.0.0'
api 'org.apache.logging.log4j:log4j-api:2.20.0'
api 'org.apache.logging.log4j:log4j-core:2.20.0'
api 'org.openjdk.nashorn:nashorn-core:15.4'
api 'org.apache.commons:commons-lang3:3.12.0'
api 'com.google.cloud:google-cloud-nio:0.127.0'
api 'commons-io:commons-io:2.11.0'

testImplementation 'org.testng:testng:7.7.0'
}
Expand Down

0 comments on commit a3d2ab0

Please sign in to comment.