We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab8dee8 commit 99279f5Copy full SHA for 99279f5
1 file changed
SequenceAnalysis/build.gradle
@@ -116,7 +116,18 @@ dependencies {
116
'Library for Base64 encoding. Used by FastQC'
117
)
118
119
- implementation "net.sf.opencsv:opencsv:${opencsvVersion}"
+ BuildUtils.addExternalDependency(
120
+ project,
121
+ new ExternalDependency(
122
+ "net.sf.opencsv:opencsv:${opencsvVersion}",
123
+ 'Open CSV',
124
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
131
132
// picard brings in a version of servlet-api and a very old one at that, so we excluded it
133
// Note: if changing this, we might need to match the htsjdk version set in gradle.properties
0 commit comments