You can write something like
(managedClasspath in Compile).value
to get the managedClasspath value in the Compile configuration.
The type (managedClasspath in Compile) again sbt.TaskKey (because we are calling the in method with ConfigKey ).
However, there is no value method on SettingKey or TaskKey , and I cannot find any implicit class that provides such a method. So how does it exist? Is this some kind of magical voodoo macro?
source share