mirror of
https://github.com/fluencelabs/hackethberlin
synced 2025-04-24 17:02:18 +00:00
11 lines
381 B
Plaintext
11 lines
381 B
Plaintext
|
// use https://scastie.scala-lang.org/
|
||
|
scalacOptions ++= Seq(
|
||
|
"-deprecation",
|
||
|
"-encoding", "UTF-8",
|
||
|
"-feature",
|
||
|
"-unchecked"
|
||
|
)
|
||
|
resolvers += Resolver.bintrayRepo("fluencelabs", "maven")
|
||
|
libraryDependencies += "org.typelevel" %% "cats-core" % "1.2.0"
|
||
|
libraryDependencies += "one.fluence" %% "crotalinae" % "0.0.4"
|
||
|
libraryDependencies += "com.chuusai" %% "shapeless" % "2.3.3"
|