-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.sbt
35 lines (21 loc) · 782 Bytes
/
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
name := "breakable"
organization := "com.manyangled"
version := "0.1.1"
scalaVersion := "2.11.8"
crossScalaVersions := Seq("2.10.6", "2.11.8", "2.12.1")
resolvers ++= Seq(
Resolver.sonatypeRepo("releases"),
Resolver.sonatypeRepo("snapshots")
)
libraryDependencies ++= Seq(
"org.scalatest" %% "scalatest" % "3.0.1" % Test
)
licenses += ("Apache-2.0", url("http://opensource.org/licenses/Apache-2.0"))
scalacOptions ++= Seq("-unchecked", "-deprecation", "-feature")
scalacOptions in (Compile, doc) ++= Seq("-doc-root-content", baseDirectory.value+"/root-doc.txt")
site.settings
site.includeScaladoc()
// Re-enable if/when we want to support gh-pages w/ jekyll
// site.jekyllSupport()
ghpages.settings
git.remoteRepo := "[email protected]:erikerlandson/breakable.git"