I am trying to use in my Scala
project Java
library which is on Maven Central
. While resolving this dependency, SBT
appends Scala version
to the repository url which obviously does not exist in such a format. Can I somehow disable appending Scala version for this specific artifact?
Asked
Active
Viewed 1,909 times
8

mkorszun
- 4,461
- 6
- 28
- 43
1 Answers
21
Yes, use %
instead of %%
before the artifact specifier for your dependency. The %%
notation indicates that the library is dependent on the Scala runtime version, yours is not.

Brian Topping
- 3,235
- 28
- 33
-
It's before the artifact specifier, not the version specifier. – Dale Wijnand Apr 27 '15 at 19:24
-
Thanks, but I still could not find it `unresolved dependency: com.yahoo.util#myProject;0.16.0-SNAPSHOT: not found` , what's missing? and what is `;` doing? – daydreamer Jun 28 '15 at 08:07