mirror of
https://github.com/sbt/sbt.git
synced 2026-09-05 09:15:06 +02:00
make provided intransitive, fixes #42
This commit is contained in:
@@ -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")
|
||||
|
||||
Reference in New Issue
Block a user