forked from typelevel/typelevel.github.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
34 lines (24 loc) · 896 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
scalaVersion := "2.11.12"
name := "typelevel-blog-tut"
scalacOptions ++= Seq(
"-deprecation",
"-feature"
)
libraryDependencies ++= Seq(
"io.get-coursier" %% "coursier" % "1.0.0",
"io.get-coursier" %% "coursier-cache" % "1.0.0",
"com.chuusai" %% "shapeless" % "2.3.2",
"org.yaml" % "snakeyaml" % "1.19"
)
lazy val tutInput = SettingKey[File]("tutInput")
lazy val tutOutput = SettingKey[File]("tutOutput")
lazy val tutVersion = SettingKey[String]("tutVersion")
tutInput := (baseDirectory in ThisBuild).value / "posts"
tutOutput := (baseDirectory in ThisBuild).value / "_posts"
tutVersion := "0.6.2"
watchSources ++= (tutInput.value ** "*.md").get
cleanFiles += tutOutput.value
cleanFiles += (baseDirectory in ThisBuild).value / "_site"
enablePlugins(BuildInfoPlugin)
buildInfoKeys := Seq[BuildInfoKey](tutInput, tutOutput, tutVersion)
buildInfoPackage := "org.typelevel.blog"