-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.sbt
206 lines (148 loc) · 7.19 KB
/
build.sbt
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
//
// Copyright 2012 Damian Helme
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
name := """Game of Life"""
version := "0.1.0"
scalaVersion := "2.10.2"
organization := "org.rosettacode"
libraryDependencies += "org.scalatest" % "scalatest_2.10" % "1.9.1" % "test"
// if you have more than one main method, you can specify which is used when typing 'run' in sbt
// mainclass := Some("com.mycode.App")
resolvers ++= Seq("snapshots" at "http://oss.sonatype.org/content/repositories/snapshots",
"releases" at "http://oss.sonatype.org/content/repositories/releases"
)
scalacOptions ++= Seq("-unchecked", "-deprecation")
// seq(ScctPlugin.scctSettings: _*)
// seq(WebPlugin.webSettings: _*)
// seq(webSettings :_*)
// for jrebel
// jettyScanDirs := Nil
// scanDirectories in Compile := Nil
// https://groups.google.com/forum/?hl=en#!activity/liftweb/Um5ghzYMDUoJ/liftweb/DDTzzxRbCNU/qEo0lIbTv4kJ
// needed for javaMail 1.4.4
//resolvers += "Java.net Maven2 Repo" at "http://download.java.net/maven/2/"
// jettyConfFiles <<= jettyConfFiles(_.copy(env = Some(file(".") / "src" / "test" / "resources" / "jetty.xml" asFile)))
// needed to stop a clash between slf4j-log4j12 and logback-classic
// ivyXML := <dependencies>
// <dependency org="eu.medsea.mimeutil" name="mime-util" rev="2.1.3" >
// <exclude module="slf4j-log4j12" />
// </dependency>
// </dependencies>
// add compile dependencies on some dispatch modules
// libraryDependencies ++= Seq(
// "net.databinder" %% "dispatch-meetup" % "0.7.8",
// "net.databinder" %% "dispatch-twitter" % "0.7.8"
// )
// Set a dependency based partially on a val.
// {
// val libosmVersion = "2.5.2-RC1"
// libraryDependencies += "net.sf.travelingsales" % "osmlib" % libosmVersion from "http://downloads.sourceforge.net/project/travelingsales/libosm/"+libosmVersion+"/libosm-"+libosmVersion+".jar"
// }
// reduce the maximum number of errors shown by the Scala compiler
// maxErrors := 20
// increase the time between polling for file changes when using continuous execution
// pollInterval := 1000
// append several options to the list of options passed to the Java compiler
// javacOptions ++= Seq("-source", "1.5", "-target", "1.5")
// append -deprecation to the options passed to the Scala compiler
// scalacOptions += "-deprecation"
// define the statements initially evaluated when entering 'console', 'console-quick', or 'console-project'
// initialCommands := """
// import System.{currentTimeMillis => now}
// def time[T](f: => T): T = {
// val start = now
// try { f } finally { println("Elapsed: " + (now - start)/1000.0 + " s") }
// }
// """
// set the initial commands when entering 'console' only
// initialCommands in console := "import damianhelme._"
// set the main class for packaging the main jar
// 'run' will still auto-detect and prompt
// change Compile to Test to set it for the test jar
// mainClass in (Compile, packageBin) := Some("myproject.MyMain")
// set the main class for the main 'run' task
// change Compile to Test to set it for 'test:run'
// mainClass in (Compile, run) := Some("myproject.MyMain")
// add <base>/input to the files that '~' triggers on
// watchSources <+= baseDirectory map { _ / "input" }
// add a maven-style repository
// resolvers += "name" at "url"
// add a sequence of maven-style repositories
// resolvers ++= Seq("name" at "url")
// define the repository to publish to
// publishTo := Some("name" at "url")
// set Ivy logging to be at the highest level
// ivyLoggingLevel := UpdateLogging.Full
// disable updating dynamic revisions (including -SNAPSHOT versions)
// offline := true
// set the prompt (for this build) to include the project id.
// shellPrompt in ThisBuild := { state => Project.extract(state).currentRef.project + "> " }
// set the prompt (for the current project) to include the username
// shellPrompt := { state => System.getProperty("user.name") + "> " }
// disable printing timing information, but still print [success]
// showTiming := false
// disable printing a message indicating the success or failure of running a task
// showSuccess := false
// change the format used for printing task completion time
// timingFormat := {
// import java.text.DateFormat
// DateFormat.getDateTimeInstance(DateFormat.SHORT, DateFormat.SHORT)
// }
// disable using the Scala version in output paths and artifacts
// crossPaths := false
// fork a new JVM for 'run' and 'test:run'
// fork := true
// fork a new JVM for 'test:run', but not 'run'
// fork in Test := true
// add a JVM option to use when forking a JVM for 'run'
// javaOptions += "-Xmx2G"
// only use a single thread for building
// parallelExecution := false
// Execute tests in the current project serially
// Tests from other projects may still run concurrently.
// parallelExecution in Test := false
// set the location of the JDK to use for compiling Java code.
// if 'fork' is true, this is used for 'run' as well
// javaHome := Some(file("/usr/lib/jvm/sun-jdk-1.6"))
// Use Scala from a directory on the filesystem instead of retrieving from a repository
// scalaHome := Some(file("/home/user/scala/trunk/"))
// don't aggregate clean (See FullConfiguration for aggregation details)
// aggregate in clean := false
// only show warnings and errors on the screen for compilations.
// this applies to both test:compile and compile and is Info by default
// logLevel in compile := Level.Info
// only show warnings and errors on the screen for all tasks (the default is Info)
// individual tasks can then be more verbose using the previous setting
logLevel := Level.Info
// only store messages at info and above (the default is Debug)
// this is the logging level for replaying logging with 'last'
// persistLogLevel := Level.Debug
// only show 10 lines of stack traces
// traceLevel := 10
// only show stack traces up to the first sbt stack frame
// traceLevel := 0
// add SWT to the unmanaged classpath
// unmanagedJars in Compile += file("/usr/share/java/swt.jar")
// publish test jar, sources, and docs
// publishArtifact in Test := true
// disable publishing of main docs
// publishArtifact in (Compile, packageDoc) := false
// change the classifier for the docs artifact
// artifactClassifier in packageDoc := Some("doc")
// Copy all managed dependencies to <build-root>/lib_managed/
// This is essentially a project-local cache and is different
// from the lib_managed/ in sbt 0.7.x. There is only one
// lib_managed/ in the build root (not per-project).
// retrieveManaged := true