-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
33 lines (24 loc) · 945 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
name := """gundam-tryage-list"""
version := "1.0"
//resolvers ++= Seq(
// "Millhouse Bintray" at "http://dl.bintray.com/themillhousegroup/maven"
//)
scalaVersion := "2.12.10"
libraryDependencies ++= List(
// "org.apache.httpcomponents.client5" % "httpclient5" % "5.0",
"org.apache.poi" % "poi" % "4.1.2",
"org.apache.poi" % "poi-ooxml" % "4.1.2",
"info.henix" %% "ssoup" % "0.5",
"commons-io" % "commons-io" % "2.7",
"com.typesafe" % "config" % "1.4.0",
"org.typelevel" %% "cats-core" % "1.0.1",
"org.scalatest" %% "scalatest" % "3.1.2" % Test)
val http4sVersion = "1.0.0-M0+385-ae5377f0-SNAPSHOT"
// Only necessary for SNAPSHOT releases
resolvers += Resolver.sonatypeRepo("snapshots")
libraryDependencies ++= Seq(
"org.http4s" %% "http4s-dsl" % http4sVersion,
"org.http4s" %% "http4s-blaze-server" % http4sVersion,
"org.http4s" %% "http4s-blaze-client" % http4sVersion
)
scalacOptions += "-Ypartial-unification"