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

sbt.internal.inc.ClasspathOptionsUtil.scala Maven / Gradle / Ivy

There is a newer version: 1.2.1
Show newest version
/* sbt -- Simple Build Tool
 * Copyright 2009, 2010  Mark Harrah
 */
package sbt
package internal
package inc

import xsbti.compile.ClasspathOptions

object ClasspathOptionsUtil {
  def manual = new ClasspathOptions(false, false, false, true, false)
  def boot = new ClasspathOptions(true, false, false, true, true)
  def repl = auto
  def javac(compiler: Boolean) = new ClasspathOptions(false, compiler, false, false, false)
  def auto = new ClasspathOptions(true, true, true, true, true)
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy