-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbuild.sbt
17 lines (15 loc) · 848 Bytes
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
inThisBuild(List(
organization := "org.lyranthe.avias",
scalaOrganization := "org.typelevel",
version := "0.0.1-SNAPSHOT",
scalaVersion := "2.12.4-bin-typelevel-4",
scalacOptions ++= Seq("-Yinduction-heuristics", "-Xstrict-patmat-analysis", "-Xlint:strict-unsealed-patmat"),
//addCompilerPlugin("io.tryp" % "splain" % "0.2.7" cross CrossVersion.patch),
libraryDependencies += "io.monix" %% "minitest" % "2.1.0" % "test",
libraryDependencies += "io.monix" %% "minitest-laws" % "2.1.0" % "test",
testFrameworks += new TestFramework("minitest.runner.Framework")
))
enablePlugins(SphinxPlugin, SiteScaladocPlugin, GhpagesPlugin, ScalaUnidocPlugin)
siteSubdirName in ScalaUnidoc := "api"
addMappingsToSiteDir(mappings in (ScalaUnidoc, packageDoc), siteSubdirName in ScalaUnidoc)
git.remoteRepo := "[email protected]:fiadliel/avias.git"