Alexandre Archambault
Alexandre Archambault
I don't know if coursier is to blame here (it might just be sbt caching things too aggressively). Do you get the same stale version from the command-line, with a...
Yes, one can't pass actual checksums to `--checksum`, only checksum types (like `SHA-1` or `SHA-256`). There's no way to somehow pin checksums this way for now.
Keys are not pushed anymore with launchers for now. This was dropped since the switch to Mill, and needs to be added back. That said, I was a bit shared...
I generated a new key for signing artifacts uploaded on Maven Central. So this new key should be used when adding back support for signing artifacts uploaded to GitHub releases.
AFAIU, `/usr/libexec/java_home` is mostly for JVMs installed under `/Library/Java/JavaVirtualMachines`. It doesn't take into account `JAVA_HOME`, which is the env var we're using here to set the JVM. sdkman is [having...
@sbrunk I'm going to add support for reading `JAVA_OPTS` in bootstraps. (It should have been added long ago… Edit: done, https://github.com/coursier/coursier/pull/1118, should be included in the next coursier release) About...
@mpacer It's only used during installation. The `scala` directory (itself containing `kernel.json` in particular) is created in it, if this option is passed. Installation copies as is its options in...
Code like [this](https://github.com/lihaoyi/Ammonite/blob/6720d42ed503bc223068f567dc8fd54d9f9078da/amm/repl/src/test/scala/ammonite/session/ProjectTests.scala#L376-L382). Beware that unlike `import $profile`, it has to be run in a cell prior to the one loading the spark dependencies.
Ah, it'll only work when almond will be using the current Ammonite master… Replacing `getResolutionParams` by `resolutionParams` ought to work until then.
It should be possible to add them here via a submodule. `metadata` and `handmade-metadata` in [this directory of coursier](https://github.com/coursier/coursier/tree/f06127a62a5af9400bea287c93a53b3c881197bc/modules/tests) are added in coursier this way for example. In particular, that...