use ivyConfigurations for interDependencies instead of scope configurations

This commit is contained in:
Mark Harrah 2011-06-22 19:17:10 -04:00
parent dcd84a48ab
commit c2ea5746a6
1 changed files with 1 additions and 0 deletions

View File

@ -295,6 +295,7 @@ object Configurations
def defaultMavenConfigurations: Seq[Configuration] = Seq(Compile, Runtime, Test, Provided, Optional)
def defaultInternal: Seq[Configuration] = Seq(CompileInternal, RuntimeInternal, TestInternal)
def auxiliary: Seq[Configuration] = Seq(Sources, Docs, Pom)
def names(cs: Seq[Configuration]) = cs.map(_.name)
lazy val RuntimeInternal = optionalInternal(Runtime)
lazy val TestInternal = fullInternal(Test)