Questions tagged [coursier]

Use this tag for questions related to the coursier dependency fetcher/resolver and how it relates to, interacts with and differs from others like Maven and Ivy.

33 questions
0
votes
1 answer

sbt dependencies ignoring version

In my build.sbt files I'm stating that I want to use version 18.9 from a library: val finagleVersion = "18.9.0" lazy val commonDependencies = Seq( , "com.twitter" %% "finagle-core" % finagleVersion, but this seems to be ignored when…
dr jerry
  • 9,768
  • 24
  • 79
  • 122
0
votes
1 answer

Bazel sha256 checksum

I'm working on migrating our project to Bazel. WORKSPACE load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") RULES_JVM_EXTERNAL_TAG = "2.10" RULES_JVM_EXTERNAL_SHA =…
Michael Nolan
  • 25
  • 1
  • 6
0
votes
3 answers

How to pin the version of a SNAPSHOT dependency in an Ammonite script

Ammonite can download dependencies from Maven repositories. I'm using a SNAPSHOT dependency, and I'd like to use always the cached version, in order to avoid using possible untested newer versions. Is this possible? I know that Ammonite uses lately…
david.perez
  • 6,090
  • 4
  • 34
  • 57
1 2
3