sbt / sbt-atmos

sbt plugin for running Typesafe Console in development
98 stars 11 forks source link

Determine trace dependencies via a task, rather than depending on #11

Closed jsuereth closed 11 years ago

jsuereth commented 11 years ago

the ordering of libraryDependencies.

So, what we do here is instead add to allDependencies, which is resolved/used after libraryDependencies is complete. If wanted to be more explicit, we could make a new task for "traceDependencies".

Note: This fixes the activator ordering of setting issues. We'd like to make sure this makes it into our 1.0 release. Once you've accepted this patch (or created an alternative solution), ping me so we can bump sbt-remote-control :)

Thanks @pvlugter !

pvlugter commented 11 years ago

Sweet. Just what it needed. Thanks, Josh!

Not sure why I didn't check for a task between libraryDependencies and the update.

jsuereth commented 11 years ago

Anytime man! I feel this is the first time I've been able to help you out before you fixed something :)