I get the following warning whenever I start my Scala application:
WARN - imported `SVNProperties\' is permanently hidden by definition of object SVNProperties in packag
If the warning comes from importing a class with the same name, you can always use import renaming.
package domain case class Company (...
package models import domain.{Company => _Company} object Company extends SkinnyCRUDMapper[_Company] {