Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Incorporate build.gradle changes from gvs #8249

Merged
merged 1 commit into from
Mar 21, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ final hadoopVersion = System.getProperty('hadoop.version', '3.3.1')
final disqVersion = System.getProperty('disq.version','0.3.6')
final genomicsdbVersion = System.getProperty('genomicsdb.version','1.4.4')
final bigQueryVersion = System.getProperty('bigQuery.version', '2.9.0')
final bigQueryStorageVersion = System.getProperty('bigQueryStorage.version', '2.9.1')
final guavaVersion = System.getProperty('guava.version', '31.0.1-jre')
final log4j2Version = System.getProperty('log4j2Version', '2.17.1')
final testNGVersion = '7.0.0'
Expand Down Expand Up @@ -252,7 +253,7 @@ dependencies {
implementation(googleCloudNioDependency)

implementation 'com.google.cloud:google-cloud-bigquery:' + bigQueryVersion
implementation 'com.google.cloud:google-cloud-bigquerystorage:2.9.1'
implementation 'com.google.cloud:google-cloud-bigquerystorage:' + bigQueryStorageVersion

implementation "gov.nist.math.jama:gov.nist.math.jama:1.1.1"

Expand Down Expand Up @@ -323,6 +324,7 @@ dependencies {
implementation('org.apache.hadoop:hadoop-client:' + hadoopVersion) // should be a 'provided' dependency
implementation('com.github.jsr203hadoop:jsr203hadoop:1.0.3')

implementation('org.apache.orc:orc:1.6.5')
implementation('de.javakaffee:kryo-serializers:0.45') {
exclude module: 'kryo' // use Spark's version
}
Expand All @@ -348,7 +350,7 @@ dependencies {

// Required for COSMIC Funcotator data source:
implementation 'org.xerial:sqlite-jdbc:3.36.0.3'

// natural sort
implementation('net.grey-panther:natural-comparator:1.1')
implementation('com.fasterxml.jackson.module:jackson-module-scala_2.12:2.9.8')
Expand Down Expand Up @@ -615,6 +617,7 @@ task collectBundleIntoDir(type: Copy) {

task bundle(type: Zip) {
dependsOn collectBundleIntoDir
zip64 true

archiveBaseName = project.name + "-" + project.version
destinationDirectory = file("$buildDir")
Expand Down