Every time I launch my app play resolves dependencies. Considering this happens every single launch takes a lot of time... There was a time I had problem with one lib that wasn't unavailable so the app didn't launch... Is there anyway to configure play/SBT to work like Maven? Download dependencies and use local instead resolve every launch?
相关问题
- PlayFramework: how to transform each element of a
- Could not import the newly generated play framewor
- Play Framework Unicode symbols in HTTP Header
- How to filter/disable a scalac option for all subp
- Unresolved dependencies path for SBT project in In
相关文章
- How do you run cucumber with Scala 2.11 and sbt 0.
- Setting up multiple test folders in a SBT project
- Testing request with CSRF Token in Play framework
- How to map an abstract collection with jpa?
- Run project with java options via sbt
- Build maven project as a part of SBT build
- play2 framework my template is not seen. : package
- What does `<<=` mean in SBT?
Yes, you can do this. Add
skip in update := true
in to the build.sbt file to stop dependencies resolution. My build.sbt looks likeYou can read more about dependency tuning in the typesafe sbt documentation: http://www.scala-sbt.org/release/docs/Dependency-Management-Flow.html
btw, documentation says:
I have exactly this behaviours, so I am not sure why do you have: