All Downloads are FREE. Search and download functionalities are using the official Maven repository.

xsbt.api.Discovered.scala Maven / Gradle / Ivy

/* sbt -- Simple Build Tool
 * Copyright 2010 Mark Harrah
 */
package xsbt.api

final case class Discovered(baseClasses: Set[String], annotations: Set[String], hasMain: Boolean, isModule: Boolean) {
  def isEmpty = baseClasses.isEmpty && annotations.isEmpty
}
object Discovered {
  def empty = new Discovered(Set.empty, Set.empty, false, false)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy