make provided intransitive, fixes #42

This commit is contained in:
Mark Harrah 2011-06-10 07:48:53 -04:00
parent ea07c941fb
commit dcc74da665
1 changed files with 3 additions and 3 deletions

View File

@ -312,11 +312,11 @@ object Configurations
lazy val Default = config("default")
lazy val Compile = config("compile")
lazy val IntegrationTest = config("it") extend(Runtime);
lazy val Provided = config("provided")
lazy val IntegrationTest = config("it") extend(Runtime)
lazy val Provided = config("provided") intransitive ;
lazy val Javadoc = config("javadoc")
lazy val Runtime = config("runtime") extend(Compile)
lazy val Test = config("test") extend(Runtime);
lazy val Test = config("test") extend(Runtime)
lazy val Sources = config("sources")
lazy val System = config("system")
lazy val Optional = config("optional")