将revel与dep一起用于依赖项管理

I'm trying to create a production system with revel and go. I found dep as the version and dependency management tool.

Since this is going to be a production system, I wanted to lock down the versions I'm using, using dep. It seems to be working fine if I run the server in prod mode but fails with the error if i try to run in dev mode

CRIT 20:46:56 revel watcher.go:78: Watcher: Failed to stat watched path section=util path=/home/shaumux/go/mercury/src/bitbucket.org/dataemo/mercury/vendor/github.com/revel/revel/templates error="stat /home/shaumux/go/mercury/src/bitbucket.org/dataemo/mercury/vendor/github.com/revel/revel/templates: no such file or directory"

My Gopkg.toml looks like this

required = ["github.com/revel/cmd/revel"]

[[constraint]]
  name = "github.com/revel/modules"
  version = "0.19.0"

[[constraint]]
  name = "github.com/revel/revel"
  version = "0.19.1"

[[override]]
  branch = "master"
  name = "github.com/xeonx/timeago"

[[override]]
  branch = "master"
  name = "github.com/revel/log15"

[[override]]
  version = "0.19.0"
  name = "github.com/revel/cmd"

[prune]
  go-tests = true
  unused-packages = true