I have a Play 2.3 Scala project that works great when launched using the activator launch command. However, if I try to run it in IntelliJ 13 from the Run / Debug configuration option, there is a problem with resolving snapshot dependencies.
According to the logs, the following repositories were checked for dependency checking:
[warn] module not found: org.package#my-dep;1.0-SNAPSHOT [warn] ==== local: tried [warn] C:\Users\MyUser\.ivy2\local\org.package\my-dep\1.0-SNAPSHOT\ivys\ivy.xml [warn] ==== public: tried [warn] http:
Dependencies are in my ~ / .ivy2 / cache directory. I also have other dependencies that are not marked as snapshots, and it seems like IntelliJ has no problem finding them. This applies only to snapshots.
Update
It seems that IDEA is ignoring my ~ / .sbt / repositories file, where the snapshot repository is defined and uses the default SBT plugin configuration.
Is it possible to configure IDEA to use its custom repository definition?
source share