Skip to content

Commit 35696d5

Browse files
committed
Add opencsv as external dependency since it no longer comes through from labkey-api-client
1 parent 7ce0421 commit 35696d5

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

SequenceAnalysis/build.gradle

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,18 @@ dependencies {
116116
'Library for Base64 encoding. Used by FastQC'
117117
)
118118
)
119-
implementation "net.sf.opencsv:opencsv:${opencsvVersion}"
119+
BuildUtils.addExternalDependency(
120+
project,
121+
new ExternalDependency(
122+
"net.sf.opencsv:opencsv:${opencsvVersion}",
123+
'Open CSV',
124+
'Open CSV',
125+
'http://opencsv.sf.net',
126+
ExternalDependency.APACHE_2_LICENSE_NAME,
127+
ExternalDependency.APACHE_2_LICENSE_URL,
128+
'A simple library for reading and writing CSV in Java'
129+
)
130+
)
120131

121132
// picard brings in a version of servlet-api and a very old one at that, so we excluded it
122133
// Note: if changing this, we might need to match the htsjdk version set in gradle.properties

0 commit comments

Comments
 (0)