Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion SequenceAnalysis/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import java.util.regex.Matcher
// }
//}

configurations.all {
configurations.configureEach {
resolutionStrategy {
force "org.glassfish.jaxb:jaxb-runtime:${jaxbVersion}"
force "org.freemarker:freemarker:2.3.35" // until picard version is updated to use this version or later
Expand Down
6 changes: 6 additions & 0 deletions jbrowse/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@ import org.labkey.gradle.util.BuildUtils;
// }
//}

configurations.configureEach {
resolutionStrategy {
force "org.freemarker:freemarker:2.3.35" // from SequenceAnalysis. Use until picard version is updated to use this version or later
}
}

dependencies {
apiImplementation "com.github.samtools:htsjdk:${htsjdkVersion}"
BuildUtils.addLabKeyDependency(project: project, config: "implementation", depProjectPath: ":server:modules:LabDevKitModules:LDK", depProjectConfig: "apiJarFile")
Expand Down