Skip to content

Commit

Permalink
Restrict scijava repository to specific dependencies (#252)
Browse files Browse the repository at this point in the history
  • Loading branch information
labkey-tchad authored Oct 31, 2023
1 parent 8163c0a commit dca3469
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
12 changes: 7 additions & 5 deletions SequenceAnalysis/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,13 @@ import org.labkey.gradle.util.ExternalDependency
import java.util.regex.Matcher

repositories {
mavenCentral()
// Added for jhdf5 from FASTQC / sequence analysis module
maven {
url "https://maven.scijava.org/content/groups/public/"
}
mavenCentral()
maven {
url "https://maven.scijava.org/content/groups/public/"
content {
includeGroup "cisd" //jhdf5
}
}
}

configurations.all {
Expand Down
5 changes: 4 additions & 1 deletion jbrowse/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,12 @@ import org.labkey.gradle.util.BuildUtils;

repositories {
mavenCentral()
// Added for jhdf5 from FASTQC / sequence analysis module
maven {
url "https://maven.scijava.org/content/repositories/public/"
content {
// Transitive dependency from SequenceAnalysis
includeGroup "cisd" //jhdf5
}
}
}

Expand Down

0 comments on commit dca3469

Please sign in to comment.