2012-01-29 20:36:27 +01:00
package sbt
import java.io.File
object BasicKeys
{
2012-03-26 02:35:09 +02:00
val historyPath = AttributeKey [ Option [ File ] ] ( "history" , "The location where command line history is persisted." , 40 )
val shellPrompt = AttributeKey [ State => String ] ( "shell-prompt" , "The function that constructs the command prompt from the current build state." , 10000 )
val watch = AttributeKey [ Watched ] ( "watch" , "Continuous execution configuration." , 1000 )
2012-06-23 04:11:24 +02:00
private [ sbt ] val interactive = AttributeKey [ Boolean ] ( "interactive" , "True if commands are currently being entered from an interactive environment." , 10 )
2012-08-20 21:55:51 +02:00
private [ sbt ] val classLoaderCache = AttributeKey [ classpath . ClassLoaderCache ] ( "class-loader-cache" , "Caches class loaders based on the classpath entries and last modified times." , 10 )
2012-01-29 20:36:27 +01:00
}