-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsbtopts
48 lines (36 loc) · 923 Bytes
/
sbtopts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# ------------------------------------------------ #
# The SBT Configuration file. #
# ------------------------------------------------ #
# Disable ANSI color codes
#
#-no-colors
# Starts sbt even if the current directory contains no sbt project.
#
#-sbt-create
# Path to global settings/plugins directory (default: ~/.sbt)
#
-sbt-dir /opt/sbt/1.0
# Path to shared boot directory (default: ~/.sbt/boot in 0.11 series)
#
-sbt-boot /opt/sbt/boot
# Path to local Ivy repository (default: ~/.ivy2)
#
-ivy /opt/ivy
# set memory options
#
-mem 4096
# Use local caches for projects, no sharing.
#
#-no-share
# Put SBT in offline mode.
#
#-offline
# Sets the SBT version to use.
#-sbt-version 0.11.3
# Scala version (default: latest release)
#
#-scala-home <path>
#-scala-version <version>
# java version (default: java from PATH, currently $(java -version |& grep version))
#
#-java-home <path>