How to run sbt Revolver in test scope? -
in akka project we're using sbt revolver plugin run application. during development useful if possible run application in test scope log- , application configuration loaded helps during development.
however, running 'sbt test:re-start' not seems use test classpath , therefore not run correct application , not use correct configuration files.
looking @ revolver page looks plugin creates it's own scope. know how able use test scope running revolver plugin?
try configure fullclasspath setting of revolver , add test classpath it:
fullclasspath in test in restart <<= classpaths.concatdistinct(fullclasspath in test, fullclasspath in runtime)
Comments
Post a Comment