sbtopts 939 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. # ------------------------------------------------ #
  2. # The SBT Configuration file. #
  3. # ------------------------------------------------ #
  4. # Disable ANSI color codes
  5. #
  6. #-no-colors
  7. # Starts sbt even if the current directory contains no sbt project.
  8. #
  9. -sbt-create
  10. # Path to global settings/plugins directory (default: ~/.sbt)
  11. #
  12. #-sbt-dir /etc/sbt
  13. # Path to shared boot directory (default: ~/.sbt/boot in 0.11 series)
  14. #
  15. #-sbt-boot ~/.sbt/boot
  16. # Path to local Ivy repository (default: ~/.ivy2)
  17. #
  18. #-ivy ~/.ivy2
  19. # set memory options
  20. #
  21. #-mem <integer>
  22. # Use local caches for projects, no sharing.
  23. #
  24. #-no-share
  25. # Put SBT in offline mode.
  26. #
  27. #-offline
  28. # Sets the SBT version to use.
  29. #-sbt-version 0.11.3
  30. # Scala version (default: latest release)
  31. #
  32. #-scala-home <path>
  33. #-scala-version <version>
  34. # java version (default: java from PATH, currently $(java -version |& grep version))
  35. #
  36. #-java-home <path>