forked from obsidian-java/obsidian
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
26 lines (13 loc) · 885 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
name := "obsidian"
version := "0.1.0"
sbtVersion in Global := "1.3.12"
resolvers += "Typesafe Repository" at "https://repo.typesafe.com/typesafe/releases/"
resolvers += "Maven Repository" at "https://mvnrepository.com/artifact/"
resolvers += "clojars" at "https://clojars.org/repo"
resolvers += "luzhuomi github repo" at "https://raw.githubusercontent.com/luzhuomi/mavenrepo/master/"
libraryDependencies += "org.scala-lang.modules" %% "scala-parser-combinators" % "1.1.2"
libraryDependencies += "org.scalactic" %% "scalactic" % "3.0.8"
libraryDependencies += "org.scalatest" %% "scalatest" % "3.0.8" % "test"
libraryDependencies += "org.typelevel" %% "cats-core" % "2.0.0"
libraryDependencies += "com.github.luzhuomi" %% "scalangj" % "0.1.5" // apache license
scalacOptions ++= Seq("-feature", "-deprecation", "-Yresolve-term-conflict:package", "-Ypartial-unification" )