mirror of https://github.com/sbt/sbt.git
10 lines
330 B
Scala
10 lines
330 B
Scala
/* sbt -- Simple Build Tool
|
|
* Copyright 2010 Mark Harrah
|
|
*/
|
|
package object sbt extends sbt.std.TaskExtra with sbt.Types with sbt.ProcessExtra with sbt.impl.DependencyBuilders with sbt.PathExtra
|
|
{
|
|
type File = java.io.File
|
|
implicit def maybeToOption[S](m: xsbti.Maybe[S]): Option[S] =
|
|
if(m.isDefined) Some(m.get) else None
|
|
}
|