From bf4143d10c3a06c7726eab3849f941e7e11a49fd Mon Sep 17 00:00:00 2001 From: labkey-susanh Date: Tue, 22 Sep 2020 14:55:54 -0700 Subject: [PATCH] Add missing dependencies on opencsv and httpmime that used to be leaking out of the labkey-client-api. Since both of these dependencies are included in the api module transitively, we compromise a bit and do not include them in the jars.txt for each individual module. --- genotyping/build.gradle | 1 + 1 file changed, 1 insertion(+) diff --git a/genotyping/build.gradle b/genotyping/build.gradle index c74a445..e45facb 100644 --- a/genotyping/build.gradle +++ b/genotyping/build.gradle @@ -3,6 +3,7 @@ import org.labkey.gradle.util.BuildUtils dependencies { external "com.github.samtools:htsjdk:${htsjdkVersion}" + implementation "net.sf.opencsv:opencsv:${opencsvVersion}" implementation "com.sun.mail:jakarta.mail:${javaMailVersion}" BuildUtils.addLabKeyDependency(project: project, config: "implementation", depProjectPath: BuildUtils.getPlatformModuleProjectPath(project.gradle, "assay"), depProjectConfig: "apiJarFile") BuildUtils.addLabKeyDependency(project: project, config: "jspImplementation", depProjectPath: BuildUtils.getPlatformModuleProjectPath(project.gradle, "assay"), depProjectConfig: "apiJarFile")