mirror of https://github.com/sbt/sbt.git
11 lines
289 B
Scala
11 lines
289 B
Scala
|
|
/* sbt -- Simple Build Tool
|
||
|
|
* Copyright 2010 Mark Harrah
|
||
|
|
*/
|
||
|
|
package sbt
|
||
|
|
package inc
|
||
|
|
|
||
|
|
final case class Discovered(baseClasses: Set[String], annotations: Set[String], hasMain: Boolean, isModule: Boolean)
|
||
|
|
object Discovered
|
||
|
|
{
|
||
|
|
def empty = new Discovered(Set.empty, Set.empty, false, false)
|
||
|
|
}
|