No more "Unrecognized repository inter-project" from the sbt plugin

This commit is contained in:
Alexandre Archambault 2017-02-21 15:57:40 +01:00
parent 7914603f40
commit c131d6c856
1 changed files with 3 additions and 0 deletions

View File

@ -222,6 +222,9 @@ object FromSbt {
mavenRepositoryOpt(mavenCompatibleBase, log, authentication)
}
case raw: sbt.RawRepository if raw.name == "inter-project" => // sbt.RawRepository.equals just compares names anyway
None
case other =>
log.warn(s"Unrecognized repository ${other.name}, ignoring it")
None